-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrpg.css
48 lines (40 loc) · 843 Bytes
/
rpg.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
body {
background-color: #5dabf4;
margin-top: 36vh;
}
#text {
background-color: black;
color: white;
padding: 10px;
}
#game {
max-width: 500px;
max-height: 400px;
background-color: lightgray;
color: white;
margin: 0 auto;
padding: 10px;
border: 2px solid black;
box-shadow: -webkit-box-shadow: 1px 1px 107px 7px rgba(0,0,0,0.75);
-moz-box-shadow: 1px 1px 107px 7px rgba(0,0,0,0.75);
box-shadow: 1px 1px 107px 7px rgba(0,0,0,0.75);;
}
#controls {
border: 1px black solid;
padding: 5px;
}
#stats {
border: 1px black solid;
color: black;
padding: 5px;
}
#monsterStats {
display: none;
border: 1px black solid;
color: white;
padding: 5px;
background-color: red;
}
.stat {
padding-right: 10px;
}