-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
106 lines (81 loc) · 1.53 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
102
103
104
105
106
@import 'font.css';
@import 'value.css';
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
/* Body styles */
body,
html {
font-family: 'Happiness Sans', sans-serif;
font-weight: 600;
}
body {
display: flex;
justify-content: center;
padding: 50px 15px;
background-color: var(--background-color);
color: var(--text-color);
}
/* Button styles */
button {
display: inline-block;
padding: 5px 10px;
cursor: pointer;
border: solid var(--border-width) var(--button-color);
background-color: transparent;
color: var(--button-color);
font-family: inherit;
font-size: 1rem;
font-weight: bold;
}
button.warning {
--button-color: var(--red);
}
button:hover {
background-color: var(--button-color);
color: var(--background-color);
}
/* Main styles */
.main-container {
display: flex;
gap: 30px;
flex-direction: column;
width: 100%;
max-width: 500px;
text-align: center;
}
.vertical-container {
display: flex;
gap: var(--container-gap);
flex-direction: column;
}
#button-container {
display: flex;
gap: var(--container-gap);
justify-content: center;
}
/* Pick result styles */
#result-container {
gap: 12px;
align-items: center;
}
.pick-result {
display: flex;
gap: 7px;
justify-content: center;
width: 100%;
}
.pick-result > span {
display: grid;
place-items: center;
width: 40px;
height: 40px;
background-color: var(--color);
color: var(--text-color);
border-radius: 100%;
font-size: 1.2rem;
font-variant-numeric: proportional-nums;
font-weight: 900;
}