-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
53 lines (51 loc) · 1.03 KB
/
style.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
.scores {
width: 101px;
background-color: #bbb;
border-radius: 10px;
padding-bottom: 5px;
}
.scores label {
font-size: 8px;
font-weight: bold;
}
.scores ul {
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
height: 100%;
}
.scores ul li {
height: 80px;
width: 70px;
background-color: white;
border: 1px solid black;
text-align: center;
display: flex;
flex-direction: column;
border-radius: 10px;
padding-bottom: 10px;
}
.scores ul li input {
width: 100%;
padding: 0;
border: 0;
}
.scores ul li div.score input {
text-align: center;
font-size: 40px;
padding: 2px 0px 0px 0px;
background: white;
}
.scores ul li div.modifier {
margin-top: 3px;
}
.scores ul li div.modifier input {
background: white;
width: 30px;
height: 20px;
border: 1px inset black;
border-radius: 20px;
margin: -1px;
text-align: center;
}