-
Notifications
You must be signed in to change notification settings - Fork 0
/
game.css
85 lines (67 loc) · 1003 Bytes
/
game.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
html {
font-family: de-walpergens-pica, serif;
text-align: center;
}
html, body {
height: 100%;
padding: 0;
margin: 0;
background-color: #484848;
}
header, main, footer, aside {
position: fixed;
}
header, footer {
width: 100%;
height: 10%;
color: #B8B8B8 ;
}
main {
top: 10%;
}
aside {
width: 20%;
color: #B8B8B8;
}
aside#help {
left: 0;
top: 10%;
height: 80%;
}
aside#health {
left: 0;
top: 47%;
height: 80%;
}
aside#inventory {
right: 0;
top: 10%;
height: 80%;
}
main {
width: 60%;
left: 20%;
text-align: center;
}
output {
display: block;
margin: 25px;
height: 65%;
padding: 5%;
border: 7px groove black;
border-radius: 0.2em;
background-color: gray;
}
output, input {
font-size: 200%;
font-family: de-walpergens-pica, serif;
border: 3px groove black;
border-radius: 0.2em;
background-color: gray;
}
main > section {
margin: 2em;
}
footer {
top: 96%;
}