-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathledstrip.css
69 lines (58 loc) · 981 Bytes
/
ledstrip.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
body {
background-color: #333;
color: #aaa;
}
br {
content: " ";
clear: both;
}
form {
display: block;
margin: 1em;
}
a,a:link {
color: #77f;
}
a:visited {
color: #88c;
}
li {
margin-bottom: 0.25em;
}
.ledstrip {
display: block;
float: left;
height: 16px;
border: 1px solid #888;
background-color: #444;
clear: right;
margin: 1em 1em;
}
.ledstrip.ring .WS2812-led {
position: absolute;
}
.ledstrip:after {
float: none;
display: block;
clear: both;
}
.ledlight, .WS2812-led {
display: block;
width: 10px;
height: 10px;
float: left;
border: 1px solid #666;
background-color: #000;
margin: 2px;
}
.diffuse {
/* old IE version */
filter:progid:DXImageTransform.Microsoft.Blur(pixelradius=2);
/* Chrome, Safari, and friends */
-webkit-filter: blur(5px) brightness(200%);
/* Standard, Firefox, IE Edge with option enabled */
filter: blur(5px) brightness(200%);
}
#output {
margin-top: 1em;
}