-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
60 lines (54 loc) · 1019 Bytes
/
styles.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
body {
background-color: #f6f5f5;
font-family:sans-serif
}
#game {
background-color: #ffffff;
border-radius:10px;
box-shadow: 0 0 10px 2px rgba(0,0,0,0.1);
margin: 30px auto 0;
max-height: 400px;
max-width: 500px;
padding:10px;
}
#text {
background-color: #eeeeee;
border-radius:10px;
color: #5c5c51;
margin-top:10px;
padding: 10px;
}
#controls {
margin-top:10px;
}
#stats {
background-color: #eeeeee;
border:2px solid #373730;
border-radius:10px;
color: #373730;
padding: 10px;
}
#monsterStats {
background-color: #c70d0d;
border-radius:10px;
color: #ffffff;
display: none;
margin-top:10px;
padding: 10px;
}
.stat {
padding-right: 10px;
}
button {
background-color: #dad4a6;
background-image: linear-gradient(#ece9d2, #dad4a6);
border: 3px solid #c4be95;
border-radius:10px;
color: #0a0a23;
cursor: pointer;
padding:5px 10px;
}
button:hover, button:active {
background-color: #dad4a6;
background-image: linear-gradient(#f3f2e4, #e1dcb7);
}