-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
76 lines (62 loc) · 1.11 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
.fullApp {
display: flex;
flex-direction: column;
text-align: left;
width: 532.44px;
margin: 0 auto;
box-shadow: 0 0 10px 4px rgba(131, 131, 131, 0.349);
}
img {
height: 355px;
}
.mainImage, .title, .mainText {
border-top: 0;
border-right: 1px solid grey;
border-bottom: 1px solid grey;
border-left: 1px solid grey;
padding: 0;
margin: 0;
}
.mainText, .title {
padding: 1em;
}
label {
font-weight: bold;
}
h1, h2, h3, h4 {
padding: 0;
margin: 0;
}
.buttons {
display: flex;
flex-direction: row;
}
#playerOneIncrease, #playerTwoIncrease, #reset {
flex: 1;
padding: 1em;
text-align: center;
}
#playerOneIncrease {
background-color: rgb(1, 194, 104);
color: white;
}
#playerTwoIncrease {
background-color: rgb(33, 69, 230);
color: white;
}
.buttons {
pointer-events: auto;
}
#reset {
background-color: rgb(230, 33, 33);
color: white;
}
.green {
color: green;
}
.red {
color: red;
}
.disabled {
pointer-events: none;
}