-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
52 lines (43 loc) · 830 Bytes
/
main.css
File metadata and controls
52 lines (43 loc) · 830 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
a {
-moz-outline:none;
text-decoration: none;
}
a:link { color: #80B4FF; }
a:visited { color: #80B4FF; }
a:hover { color: #FFB4FF; }
a:active { color: #80FFFF; }
blink {
-webkit-animation: blink 1s step-end infinite;
animation: blink 1s step-end infinite;
}
@-webkit-keyframes blink {
67% { opacity: 0 }
}
@keyframes blink {
67% { opacity: 0 }
}
body {
background: black;
background-image: url("img/wood.jpg");
border: 0px;
color: white;
height: 100%;
margin: 0px;
padding: 0px;
}
html { height: 100%; }
div#main { margin: 5% 20% 0% 20%; }
div#header {
font-family: Courier, monospace;
font-size: 3em;
padding-left: 5px;
}
div#terminal {
background: black;
border: 1px solid white;
font-size: 1em;
padding: 5px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
}