forked from simonsablowski/beatemup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscreen.css
92 lines (75 loc) · 1.2 KB
/
screen.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
* {
margin: 0;
padding: 0;
}
html {
background-color: rgb(25, 25, 25);
min-height: 100%;
position: relative;
}
body {
font-family: arial, helvetica, clean, sans-serif;
font-size: 14px;
line-height: 1;
margin: 0 0 166px;
}
a {
outline-style: none;
text-decoration: none;
}
h1, h2, h3 {
font-size: 100%;
font-weight: normal;
}
img {
border: 0 none;
}
li {
list-style: none;
}
#header {
background-color: rgb(50, 50, 50);
height: 82px;
}
#title, #help, #body, #disclaimer, #copyright {
margin: 0 auto;
width: 800px;
}
#title {
color: rgb(255, 255, 255);
font-size: 200%;
font-weight: bold;
padding: 15px 80px 0;
}
#help {
color: rgb(200, 200, 200);
padding: 10px 80px 15px;
}
#body {
padding: 20px 80px;
}
#footer {
background-color: rgb(50, 50, 50);
bottom: 0;
height: 166px;
position: absolute;
width: 100%;
}
#disclaimer {
color: rgb(200, 200, 200);
line-height: 2.0;
padding: 5px 80px 0;
}
#disclaimer a {
color: rgb(150, 150, 150);
}
#screenshot {
display: none;
}
#copyright {
color: rgb(200, 200, 200);
padding: 10px 80px 15px;
}
#copyright a {
color: rgb(150, 150, 150);
}