-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
91 lines (85 loc) · 1.55 KB
/
Copy pathstyle.css
File metadata and controls
91 lines (85 loc) · 1.55 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
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
body {
height: 100vh;
}
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
body {
height: 100vh;
background: linear-gradient(#000000 50%, #07e387 50%);
}
.scoreboard {
background-color: #1e1e21;
width: min(90%, 34em);
position: absolute;
transform: translate(-50%, -50%);
left: 50%;
top: 50%;
padding: 3em;
border-radius: 0.5em;
display: grid;
grid-template-columns: 2fr 1fr 2fr;
align-items: center;
}
.team {
text-align: center;
background-color: #353638;
padding: 2em;
border-radius: 0.5em;
}
button {
cursor: pointer;
}
#reset-btn {
background-color: transparent;
border: 3px solid #07e387;
color: #07e387;
height: 5em;
width: 5em;
margin: auto;
border-radius: 0.5em;
}
.team h2 {
color: #07e387;
}
.team p {
color: #ffffff;
font-size: 3.75em;
}
.btn-container {
width: 100%;
display: flex;
justify-content: space-between;
}
.team button {
background-color: #07e387;
border: none;
outline: none;
padding: 0.3em 0.7em;
border-radius: 0.3em;
font-weight: 600;
font-size: 1.3em;
}
#top-half {
background-color: #353638;
width: 100vw;
height: 50vh;
}
#settings-icon {
margin-top: 35vh;
margin-left: 49vw;
cursor: pointer;
}
#settings-content {
display: block;
text-align: center;
margin-bottom: 1000px;
}
svg {
background-color: rgb(39, 119, 84);
border-radius: 5px;
padding: 1px 1px;
}