This repository has been archived by the owner on Jun 5, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
executable file
·131 lines (131 loc) · 2.9 KB
/
stylesheet.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
@font-face {
font-family: Comfortaa;
src: url(Comfortaa-Regular.woff);
src: url(Comfortaa-Regular.ttf) !important;
}
html {
-moz-text-size-adjust:100%;
-webkit-text-size-adjust:100%;
-ms-text-size-adjust:100%;
}
body {
background:#1d1f21 none;
color:#c5c8c6;
font-family:Comfortaa;
font-size:140%;
text-align:center;
margin-left:0;
margin-right:0;
margin-top:10px;
padding-left:5px;
padding-right:5px;
}
.wrapper {
width:94%;
max-width:720px;
background-color:#282a2e;
border:1px solid #282a2e;
margin:auto;
padding:5px 2%;
box-shadow:0px 0px 10px #121415;
border-radius: 10px;
}
.title {
background-color:#303237;
border:1px solid #282a2e;
padding:5px;
font-weight:bold;
border-radius: 5px;
}
.control {
border:1px solid #282a2e;
font-size:120%;
background:#303237 none;
color:#5F89AC;
font-family:Comfortaa;
padding:5px;
padding-right:8px;
margin:10px;
display: inline-block;
box-shadow:0px 0px 2px #121415;
border-radius: 5px;
}
.control:active {
background-color:#35373d;
box-shadow:0px 0px 13px #121415;
color:#81a2be;
}
.dimrange {
border:1px solid #282a2e;
background:#303237;
padding: 0 3px 0 3px;
margin: -5px 10px 0 -5px;
display: inline-block;
box-shadow:0px 0px 2px #121415;
border-radius: 5px;
height: 30px;
vertical-align: middle;
}
.dimrange::-moz-range-thumb {
border:1px solid #282a2e;
height: 20px;
width: 10px;
border-radius: 20px;
}
.dimrange::-moz-range-track {
background:#303237;
border-radius: 10px;
height: 5px;
border: 1px solid #c5c8c6;
}
.sensors {
font-size:95%;
margin: 5px 10px 5px 10px;
}
.circlegreen {
border-radius: 50%;
width: 15px;
height: 15px;
background-image: -moz-radial-gradient(45px 45px 45deg, circle cover, white 40%, green 100%);
background-image: -webkit-radial-gradient(45px 45px, circle cover, white, green);
background-image: radial-gradient(45px 45px 45deg, circle cover, white 40%, green 100%);
display: inline-block;
vertical-align: middle;
}
.circlered {
border-radius: 50%;
width: 15px;
height: 15px;
background-image: -moz-radial-gradient(45px 45px 45deg, circle cover, white 40%, red 100%);
background-image: -webkit-radial-gradient(45px 45px, circle cover, white, red);
background-image: radial-gradient(45px 45px 45deg, circle cover, white 40%, red 100%);
display: inline-block;
vertical-align: middle;
}
.circleorange {
border-radius: 50%;
width: 15px;
height: 15px;
background-image: -moz-radial-gradient(45px 45px 45deg, circle cover, white 40%, orange 100%);
background-image: -webkit-radial-gradient(45px 45px, circle cover, white, orange);
background-image: radial-gradient(45px 45px 45deg, circle cover, white 40%, orange 100%);
display: inline-block;
vertical-align: middle;
}
#alert {
background:#303c37 none;
border:1px solid #282a2e;
padding:5px;
font-size:100%;
font-weight:bold;
border-radius: 5px;
}
hr {
border:none;
border-top:5px solid #1d1f21;
height:0;
}
img {
border:0;
vertical-align: middle;
}