-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
99 lines (89 loc) · 1.85 KB
/
styles.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
* {
margin: 0;
padding: 0;
}
body {
height: 100vh;
display: flex;
justify-content: center;
background-color: #d5f3eb;
font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}
.container {
width: 60vw;
display: flex;
flex-direction: column-reverse;
justify-content: center;
align-items: center;
gap: 40px;
}
#choices {
display: flex;
gap: 20px;
}
button {
appearance: none;
background-color: #fafbfc;
border: 1px solid rgba(27, 31, 35, 0.15);
border-radius: 6px;
box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
box-sizing: border-box;
color: #24292e;
cursor: pointer;
display: inline-block;
font-size: 14px;
font-weight: 500;
line-height: 20px;
list-style: none;
padding: 6px 16px;
position: relative;
transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
vertical-align: middle;
white-space: nowrap;
word-wrap: break-word;
}
button:hover {
background-color: #f3f4f6;
text-decoration: none;
transition-duration: 0.1s;
}
button:disabled {
background-color: #fafbfc;
border-color: rgba(27, 31, 35, 0.15);
color: #959da5;
cursor: default;
}
button:active {
background-color: #edeff2;
box-shadow: rgba(225, 228, 232, 0.2) 0 1px 0 inset;
transition: none 0s;
}
button:focus {
outline: 1px transparent;
}
button:before {
display: none;
}
button:-webkit-details-marker {
display: none;
}
#result-container {
min-width: 50%;
padding: 20px;
display: flex;
flex-direction: column;
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
background-color: #fafbfc;
gap: 10px;
}
#result {
text-align: center;
font-size: 1.3em;
margin-bottom: 20px;
}
#result-container h1 {
text-align: center;
}