-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
146 lines (123 loc) · 2.23 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
@import url('https://fonts.googleapis.com/css?family=Lato:300,400');
body {
font-family: 'Lato', sans-serif;
}
h1#main-header-title{
margin-top: 20px;
margin-bottom: 10px;
font-family: 'Lato', sans-serif;
text-align: center;
font-weight: 300;
font-size: 3em;
color: #CCC;
}
h2 {
font-family: 'Lato', sans-serif;
font-weight: 300;
font-size: 2em;
color: #666;
text-align: center;
margin-top: 50px;
}
header{
background-color: #333;
padding: 20px 0px;
margin-bottom: 30px;
}
header .logo{
height:100%;
width:100%;
display: flex;
align-items: center;
justify-content: center;
}
header .desc{
margin-top: 0px;
text-align: center;
font-family: 'Lato', sans-serif;
font-weight: 300;
font-size: 1.3em;
color: #BBB;
}
.calm-bg{
background: #efefef; /* For browsers that do not support gradients */
/*background-image: url('pattern-bg.png'); */
background-repeat: repeat;
}
#color-list{
margin-top: 20px;
}
#color-list .color,
#device-list .device {
cursor: pointer;
}
#color-list .color .image{
padding: 20px 20px 0px 20px;
}
#device-list .device .image {
padding: 30px 30px 0px 30px;
}
#color-list .color .content p,
#device-list .device .content p {
text-align: center;
font-family: 'Lato', sans-serif;
margin-bottom:0px;
}
#color-list .color .content p.title{
color: #666;
font-size: 1em;
}
#device-list .device .content p.title {
color: #999;
font-size: 1.3em;
}
#device-list .device .content p.desc {
margin-top: 6px;
color: #777;
font-size: 1em;
}
#mcu-config{
padding-top: 10px;
width: 50%;
margin: 0 auto;
}
#mcu-config input,
#mcu-config button {
width: 100%;
border: 1px solid white;
font-family: 'Lato', sans-serif;
border-radius: 0px;
padding: 6px 8px;
}
#mcu-config input{
color: #EEE;
background-color: transparent;
height: 3em;
font-size: 1em;
}
#mcu-config button {
color: #333;
background-color: #EEE;
height: 2em;
cursor: pointer;
}
footer p{
font-family: 'Lato', sans-serif;
padding: 20px 0px;
color: #888;
text-align: center;
}
footer p a{
color: #33bb77;
text-decoration: none;
}
.flat{
border-radius: 0px !important;
}
#effects-list .item{
border-radius: 0px !important;
border-bottom: 2px solid #fff;
}
#effects-list .item.active{
border-bottom: 2px solid #33bb77;
}