-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscreen.css
More file actions
53 lines (40 loc) · 629 Bytes
/
screen.css
File metadata and controls
53 lines (40 loc) · 629 Bytes
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
body {
position: relative;
width: 1170px;
margin: 0 auto;
background-color: #202020;
}
.lights {
position: absolute;
width: 100%;
height: 120px;
left: 0;
top: 0;
z-index: 100;
}
.strand {
position: absolute;
}
.light {
position: absolute;
width: 2px;
height: 2px;
background-color: transparent;
-webkit-border-radius: 2px;
border-radius: 2px;
opacity: 0;
}
.light.lit {
background-color: #fff;
box-shadow: 0 0 3px 2px;
opacity: 1;
}
.intro {
padding-top: 200px;
text-align: center;
font-family: 'Roboto Slab', serif;
font-size: 20px;
}
.intro a {
color: #4488ff;
}