forked from engine12/mjpg-streamer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
192 lines (157 loc) · 5.04 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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
/* andreas07 - an open source xhtml/css website layout by Andreas Viklund - http://andreasviklund.com . Free to use for any purpose as long as the proper credits are given for the original design work.
Version: 1.1, November 28, 2005 */
/**************** Page and tag styles ****************/
body
{margin:0; padding:0; color:#303030; background:#fafafa url(bodybg.gif) top left repeat-y; font:76% Verdana,Tahoma,sans-serif;}
ul
{list-style:circle; margin:15px 0 20px 0; font-size:0.9em;}
li
{margin:0 0 8px 25px;}
a
{color:#d85d5d; font-weight:bold; text-decoration:none;}
a:hover
{color:#505050; text-decoration:underline;}
img
{float:left; margin:0 15px 15px 0; padding:1px; background:#ffffff; border:1px solid #d0d0d0;}
a img
{border-color:#d85d5d;}
a img:hover
{background:#d85d5d; border-color:#d85d5d;}
/**************** Sidebar area styles ****************/
#sidebar
{position:absolute; top:0; left:0; width:220px; height:100%; overflow:auto; background:#e0e0e0 url(sidebarbg.gif) top right repeat-y; text-align:right;}
body > #sidebar
{position:fixed;}
#sidebar h1
{margin:20px 18px 0 5px; color:#d85d5d; font-size:1.6em; letter-spacing:-2px; text-align:right;}
#sidebar h2, #sidebar h3
{margin:0 20px 18px 5px; color:#808080; font-size:1.1em; font-weight:bold; letter-spacing:-1px; text-align:right;}
#sidebar h3
{margin:20px 18px 4px 5px; color:#606060;}
#sidebar p
{margin:0 20px 18px 5px; color:#606060; font-size:0.8em;}
#sidebar a
{color:#808080}
/**************** Navigation menu styles ****************/
#menu a
{display:block; width:202px; padding:5px 18px 5px 0; color:#606060; background:#e0e0e0 url(sidebarbg.gif) top right repeat-y; font-size:1.8em; font-weight:normal; text-decoration:none; letter-spacing:-2px;}
#menu a:hover
{color:#303030; background:#f0f0f0 url(sidebarbg.gif) top right repeat-y;}
#menu a.active
{padding:5px 18px 5px 0; background:#fafafa; border-top:2px solid #c0c0c0; border-bottom:2px solid #c0c0c0;}
#menu a.active:hover
{color:#505050; background:#fafafa;}
/**************** Content area styles ****************/
#content
{width:520px; margin:0 0 0 240px; padding:20px 0; background:#fafafa;}
#content p
{margin:0 0 20px 0; line-height:1.5em;}
#content h1
{margin:0; color:#d85d5d; font-size:4em; letter-spacing:-5px; text-align:center;}
#content h2
{margin:0; color:#808080; font-weight:normal; font-size:2.5em; letter-spacing:-2px; text-align:center;}
#content h3
{clear:both; margin:30px 0 10px 0; color:#d85d5d; font-weight:normal; font-size: 2em; letter-spacing:-2px;}
#streamimage {
width:520px; height: 390px;
}
#xform {
text-align:right;
margin:0 !important;
}
#streamwrap {
height:350px
}
#streamwrap.rotated {
height:450px
}
p.xform-p {
height:5px;
margin-bottom:0 !important;
}
p.xform-p.rotated {
height:50px;
margin-bottom:20px !important;
}
/*
CSS3 transformations: rotate, flip, mirror
*/
img.x-rotated-0 {}
img.x-rotated-90 {
-moz-transform: rotate(90deg);
-webkit-transform: rotate(90deg);
}
img.x-rotated-180 {
-moz-transform: rotate(180deg);
-webkit-transform: rotate(180deg);
}
img.x-rotated-270 {
-moz-transform: rotate(270deg);
-webkit-transform: rotate(270deg);
}
img.x-mirrored-rotated-0 {
-moz-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
}
img.x-mirrored-rotated-90 {
-moz-transform: rotate(90deg) scaleX(-1);
-webkit-transform: rotate(90deg) scaleX(-1);
}
img.x-mirrored-rotated-180 {
-moz-transform: rotate(180deg) scaleX(-1);
-webkit-transform: rotate(180deg) scaleX(-1);
}
img.x-mirrored-rotated-270 {
-moz-transform: rotate(270deg) scaleX(-1);
-webkit-transform: rotate(270deg) scaleX(-1);
}
img.x-flipped-rotated-0 {
-moz-transform: scaleY(-1);
-webkit-transform: scaleY(-1);
}
img.x-flipped-rotated-90 {
-moz-transform: rotate(90deg) scaleY(-1);
-webkit-transform: rotate(90deg) scaleY(-1);
}
img.x-flipped-rotated-180 {
-moz-transform: rotate(180deg) scaleY(-1);
-webkit-transform: rotate(180deg) scaleY(-1);
}
img.x-flipped-rotated-270 {
-moz-transform: rotate(270deg) scaleY(-1);
-webkit-transform: rotate(270deg) scaleY(-1);
}
img.x-flipped-mirrored-rotated-0 {
-moz-transform: scale(-1,-1);
-webkit-transform: scale(-1,-1);
}
img.x-flipped-mirrored-rotated-90 {
-moz-transform: rotate(90deg) scale(-1,-1);
-webkit-transform: rotate(90deg) scale(-1,-1);
}
img.x-flipped-mirrored-rotated-180 {
-moz-transform: rotate(180deg) scale(-1,-1);
-webkit-transform: rotate(180deg) scale(-1,-1);
}
img.x-flipped-mirrored-rotated-270 {
-moz-transform: rotate(270deg) scale(-1,-1);
-webkit-transform: rotate(270deg) scale(-1,-1);
}
.btnface {
height:30px;
width:30px;
}
#rotate .btnface {
background:url("rotateicons.png") no-repeat scroll 7px 50% transparent;
}
#flip .btnface {
background:url("rotateicons.png") no-repeat scroll -65px 50% transparent;
}
#mirror .btnface {
background:url("rotateicons.png") no-repeat scroll -30px 50% transparent;
}
/* averages */
#fN {
position: relative;
top: 5px;
}