-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (61 loc) · 1.13 KB
/
style.css
File metadata and controls
61 lines (61 loc) · 1.13 KB
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
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
html{
font-size: 14px;
}
body{
background-color: #0a0a23;
color: #0a0a23;
cursor:default;
}
.game-container{
margin: 10% auto 0 auto;
background-color: white;
padding: 10px;
max-width: 500px;
max-height: 400px;
}
.stats{
border:1px solid #0a0a23;
display: flex;
align-items: center;
justify-content: flex-start;
padding-left: 10px;
font-size: 1.25rem;
}
.strong{
font-weight: 700;
}
.controls{
column-gap: 10px;
border:1px solid #0a0a23;
padding: 5px 0 5px 7px;
}
button{
background-image: linear-gradient(#fecc4c, #ffac33);
border: 1px solid #ffac33;
padding: 3px 7px;
border-radius: 3px;
cursor:pointer;
}
.monster-stats{
display: none;
background-color: #c70d0d;
color: white;
border:1px solid #0a0a23;
padding-left: 10px;
font-size: 1.25rem;
}
.stat {
padding-right: 20px;
}
.text{
background-color: #0a0a23;
color: white;
border:1px solid #0a0a23;
padding: 8px 10px;
font-size: 1.125rem;
}