-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
159 lines (157 loc) · 3.46 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
html {
background-color: #ffffff;
background-repeat: repeat-y;
-webkit-background-size: 100% auto;
-moz-background-size: 100% auto;
-o-background-size: 100% auto;
background-size: 100% auto;
background-attachment: fixed;
background-position: 0 0;
margin: 0;
padding: 0;
height: 100%;
}
body {
margin: 0;
padding: 10px;
height: 100%;
background: rgba(255,255,255,0.4);
font-family: Helvetica, Arial, sans-serif;
}
h1,
h2 {
position: relative;
z-index: 1;
margin: 0;
padding: 0;
font-weight: bold;
}
h1 {
font-size: 64px;
color: #ffffff;
text-shadow: 0 0 5px rgba(0,0,0,0.5);
padding: 0 10px;
}
h2 {
font-size: 32px;
}
a:link,
a:visited {
color: #000000;
font-weight: bold;
text-decoration: none;
}
a:hover,
a:active {
text-decoration: underline;
}
#tabs {
position: relative;
z-index: 1;
margin: 0 10px 10px;
background: #dddddd;
-webkit-border-radius: 7px;
-webkit-border-top-left-radius: 0;
-moz-border-radius: 7px;
-moz-border-radius-topleft: 0;
border-radius: 0 7px 7px 7px;
-webkit-box-shadow: 0 0 5px rgba(0,0,0,0.5);
-moz-box-shadow: 0 0 5px rgba(0,0,0,0.5);
box-shadow: 0 0 5px rgba(0,0,0,0.5);
}
#tabs .tab {
padding: 20px;
background: #ffffff;
display: none;
}
#tabs .selected.tab {
display: block;
-webkit-border-radius: 7px;
-moz-border-radius: 7px;
border-radius: 7px;
}
#tabs .tab#league {
-webkit-border-top-left-radius: 0;
-moz-border-radius-topleft: 0;
border-radius-top-left: 0;
}
#tabNav {
position: relative;
z-index: 2;
overflow: hidden;
list-style: none;
margin: 0;
padding: 10px 10px 0;
}
#tabNav li {
list-style: none;
margin: 0;
padding: 0;
float: left;
margin-right: 3px;
box-shadow: 0 0 5px rgba(0,0,0,0.5);
-moz-box-shadow: 0 0 5px rgba(0,0,0,0.5);
-webkit-box-shadow: 0 0 5px rgba(0,0,0,0.5);
-webkit-border-top-left-radius: 7px;
-webkit-border-top-right-radius: 7px;
-moz-border-radius-topleft: 7px;
-moz-border-radius-topright: 7px;
border-radius: 7px 7px 0 0;
}
#tabNav li a {
display: block;
font-weight: normal;
font-size: 1.2em;
background: #dddddd;
color: #333333;
-webkit-border-top-left-radius: 7px;
-webkit-border-top-right-radius: 7px;
-moz-border-radius-topleft: 7px;
-moz-border-radius-topright: 7px;
border-radius: 7px 7px 0 0;
padding: 10px 20px 7px;
box-shadow: inset 0 -5px 5px rgba(0,0,0,0.2);
-moz-box-shadow: inset 0 -5px 5px rgba(0,0,0,0.2);
-webkit-box-shadow: inset 0 -5px 5px rgba(0,0,0,0.2);
}
#tabNav li a:hover {
background: #eeeeee;
color: #111111;
text-decoration: none;
-webkit-transition: 0.05s linear;
transition: 0.05s linear;
}
#tabNav li.selected a {
background: #ffffff;
color: #000000;
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
}
table.google-visualization-table-table,
#log_chart,
table#history {
width: 100%;
}
#log_chart iframe {
display: block;
margin: 0 auto;
}
img#cam {
background-color: #b0b0b0;
display: block;
margin: 0 auto;
width: 640px;
height: 480px;
}
img#bgcam {
width: 100%;
height: 100%;
background: url(http://10.180.255.227:8080/?action=snapshot) repeat 50% 0;
background-size: 100% auto;
position: absolute;
top: 0;
left: 0;
z-index: 0;
-webkit-filter: blur(10px) sepia(0.6);
}