-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
132 lines (115 loc) · 2.89 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
/************************************************
Style sheet for Camera Display
*************************************************/
#footer {
/*position: absolute;*/
bottom: 0;
width: 100%;
border-top: 1px solid black;
font-size: 12px;
padding:5px;
}
* {
font-family: 'Segoe UI';
}
html, body{
background: linear-gradient(rgb(177, 224, 252),#55aaff);
}
h1{
font-size:35px;
color:#CF0000;
text-shadow:3px 3px 10px lightgrey;
}
h2{
font-size:20px;
}
.container1{
width:98%;
padding-left:10px;
padding-right:10px;
padding-top:0px;
}
.Lside_buttons{
position:absolute;
left:5%;
top:20%;
width:150px;
}
.Rside_buttons{
position:absolute;
right:5%;
top:20%;
width:150px;
}
li > a{
color:#990000;
}
p > a {
color:#990000;
}
p > a:hover {
color: #990000;
}
td{
width:33.33%;
}
img.camera{
width:100%;
margin-left: auto;
margin-right: auto;
box-shadow: 10px 10px 5px #888888;
}
video{
vertical-align:top;
display:block;
border:5px solid;
}
input{width:100%;}
input.unselected {
cursor: pointer;
-moz-box-shadow: inset 0px 1px 0px 0px #bee2f9;
-webkit-box-shadow: inset 0px 1px 0px 0px #bee2f9;
box-shadow: inset 0px 1px 0px 0px #bee2f9;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #63b8ee), color-stop(1, #468ccf) );
background: -moz-linear-gradient( center top, #63b8ee 5%, #468ccf 100% );
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#63b8ee', endColorstr='#468ccf');
background-color: #63b8ee;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
border: 1px solid #3866a3;
color: #14396a;
font-size: large;
font-weight: bold;
padding: 6px 20px;
margin: 10px 5px;
text-decoration: none;
height:70px;
}
input.selected{
cursor: pointer;
-moz-box-shadow: inset 0px 1px 0px 0px #bee2f9;
-webkit-box-shadow: inset 0px 1px 0px 0px #bee2f9;
box-shadow: inset 0px 1px 0px 0px #bee2f9;
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #14396a), color-stop(1, #468ccf) );
background: -moz-linear-gradient( center top, #63b8ee 5%, #468ccf 100% );
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#63b8ee', endColorstr='#468ccf');
background-color: #14396a;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
border: 1px solid #3866a3;
font-size: large;
font-weight: bold;
padding: 6px 20px;
margin: 10px 5px;
text-decoration: none;
height:70px;
color:#bee2f9;
}
input:hover {
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #468ccf), color-stop(1, #63b8ee) );
background: -moz-linear-gradient( center top, #468ccf 5%, #63b8ee 100% );
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#468ccf', endColorstr='#63b8ee');
background-color: #468ccf;
}