-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
51 lines (46 loc) · 802 Bytes
/
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
@font-face {
font-family: 'Dodger';
src: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/442915/good_times_rg.ttf") format("woff");
font-weight: normal;
font-style: normal;
}
body {
background: #0C2032;
}
#starfield {
top: 0;
width: 100%;
height: 100%;
position: absolute;
margin: 0;
overflow: hidden;
z-index: -1;
}
.star {
background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/442915/star_copy.png");
background-size: cover;
background-position: center;
z-index: -1;
position: absolute;
opacity: 1;
}
.star.s6 {
width: 20px;
height: 20px;
}
.star.s4 {
width: 40px;
height: 40px;
}
.star.s2 {
width: 60px;
height: 60px;
}
#wrapper {
position: relative;
}
html, body, #wrapper {
height: 100%;
min-height: 100%;
overflow: hidden;
}