-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlead.css
70 lines (62 loc) · 1.06 KB
/
lead.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
:root {
--bgLight: #242424;
--bg: #191919;
--gold: #d4b982;
}
* {
font-size: 20px;
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: var(--bg);
color: white;
font-family: Montserrat, sans-serif;
}
.centered {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
border: 2px solid rgba(128, 128, 128, 0.205);
border-radius: 1rem;
overflow: hidden;
box-shadow: rgba(58, 58, 61, 0.2) 0px 7px 29px 0px;
min-width: 10rem;
margin: 0 2rem;
width: 40rem;
}
.top {
background: var(--bgLight);
display: flex;
flex-direction: column;
gap: 1rem;
padding: 1rem 2rem;
align-items: center;
box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.top h1 {
color: var(--gold);
font-weight: bold;
font-size: 1.5rem;
}
.top span {
font-style: italic;
}
.scores {
width: 100%;
padding: 2rem 0;
display: flex;
flex-direction: column;
gap: 1rem;
justify-content: center;
align-items: center;
}
.user-score {
color: var(--gold);
font-weight: bold;
font-style: oblique;
}