-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
43 lines (43 loc) · 900 Bytes
/
style.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
body {
background-color: black;
width: 100vw;
height: 100vh;
margin: auto;
text-align: center;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
section {
span {
color: gray;
font-size: 2em;
}
button, select {
margin-top: 1em;
background-color: orange;
color: fff;
border: 0;
border-radius: 5px;
padding: 5px;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-weight: bold;
}
button {
&#dumai {
background-color: lightgreen;
&:hover {
background-color: green;
}
}
&#shut-up {
background-color: lightcoral;
&:hover {
background-color: red;
}
}
}
.dropdown-content {
min-width: 300px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
}
}