-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
50 lines (43 loc) · 922 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
body {
margin: 0;
padding: 0;
background-color: black;
}
#main {
/* Canvas is inline by default, causing a height offset due to
* vertical-align: baseline; */
display: block;
margin: 0;
padding: 0;
}
#footer {
position: absolute;
bottom: 0;
width: 500px;
margin-left: -250px;
left: 50%;
text-align: center;
padding: 15px;
}
a {
color: #E61D5F;
font-weight: bold;
}
.glow {
color: #ffffff;
font-family: Courier, "Courier New", monospace;
font-size: 12px;
padding: 7px;
opacity: 0.4;
background-color: rgba(25, 25, 25, 0);
border-radius: 5px;
-webkit-transition: all 0.5s linear;
-moz-transition: all 0.5s linear;
-o-transition: all 0.5s linear;
transition: all 0.5s linear;
transition-property: opacity, background-color;
}
.glow:hover {
opacity: 1;
background-color: rgba(25, 25, 25, 1);
}