-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.scss
73 lines (65 loc) · 1.24 KB
/
styles.scss
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
html {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
Roboto, "Helvetica Neue", Arial, sans-serif;
line-height: 1.5;
font-size: 105%;
}
body {
background-color: whitesmoke;
text-align: center;
margin: 2rem 1rem;
}
a {
color: inherit;
text-underline-position: under;
}
button {
font: inherit;
color: inherit;
box-shadow: 0 0.05rem 0.1rem rgba(0, 0, 0, 0.2);
border: 1px solid rgba(0, 0, 0, 0.1);
padding: 0.5rem 1rem;
background-color: #fff;
border-radius: 2rem;
&.active--true, &.active--false {
margin-bottom: 5rem;
}
&.active--false {
background-color: darkslateblue;
color: #fff;
}
&.mine--false {
display: none !important;
}
}
footer button {
border: none;
padding: 0.25rem 0.5rem;
margin-right: 1rem;
}
section {
margin: 5rem 0 1rem 0;
}
p {
font-size: 200%;
margin: 0 auto;
max-width: 500px;
}
select {
font: inherit;
background-color: #fff;
color: inherit;
height: 2rem;
margin-left: 0.5rem;
display: inline-block;
border: 1px solid rgba(0, 0, 0, 0.25);
}
@media (prefers-color-scheme: dark) {
body {
background-color: rgb(10, 10, 10);
color: rgba(255, 255, 255, 0.9);
}
button, select {
background-color: rgba(255, 255, 255, 0.1);
}
}