-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
101 lines (84 loc) · 1.42 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
body {
font-family: 'Poppins', sans-serif;
display: flex;
justify-content: center;
}
#container {
width: 450px;
height: 402px;
border: 2px solid black;
border-radius: 10px;
display: flex;
flex-direction: column;
}
#img-container {
width: 450px;
height: 180px;
}
#ping-pong {
width: 450px;
height: 200px;
}
#title-container {
width: 450px;
height: 25px;
}
#content-container {
margin-top: 21px;
padding-left: 5px;
}
p {
margin-top: 1px;
}
label {
font-weight: 900;
font-size: 1.2em;
}
#title-text {
margin-bottom: 0;
margin-top: 22px;
border-bottom: 1px solid black;
padding-left: 5px;
}
#player1-btn, #player2-btn, #reset-btn {
color: white;
width: 150px;
height: 45px;
border: 0;
border-radius: 5px;
margin-top: 15px;
margin-right: 1px;
}
#player1-btn {
margin-left: 3px;
background-color: #4bb897;
border-radius: 5px 5px 5px 8px;
margin-left: 2px;
}
#player2-btn {
background-color: #3d8bfd;
}
#reset-btn {
background-color: #d64553;
margin-right: 1px;
border-radius: 5px 5px 8px;
}
.score-player {
font-weight: 600;
font-size: 1.8em;
color: grey;
}
.score-player:nth-of-type(2) {
font-size: 1.5em;
}
.winning {
color: #4dd4ac;
}
.loser {
color: #e35d6a;
}
#button-container {
display: flex;
justify-content: space-between;
margin-top: 0px;
}