-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.scss
More file actions
71 lines (57 loc) · 1.18 KB
/
style.scss
File metadata and controls
71 lines (57 loc) · 1.18 KB
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
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap');
html {
box-sizing: border-box;
}
*,
*::before,
*::after {
box-sizing: inherit;
}
:root {
--background-color: whitesmoke;
--text-color: #373F47;
--border-style: #373F47 1px solid;
--link-color: rgba(0, 0, 0, 0.781);
}
a {
color: var(--link-color);
&:hover {
color: rgba(66, 66, 66, 0.575);
text-decoration: underline;
}
}
.body {
background-color: var(--background-color);
color: var(--text-color);
width: 100%;
min-width: 736px;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
min-height: 100vh;
text-align: center;
font-family: "Open Sans", sans-serif;
}
.button {
border: none;
border-radius: 20px;
padding: 10px;
margin: 10px;
background: rgba(184, 184, 184, 0.664);
font-family: "Open Sans", sans-serif;
font-size: 14px;
}
.list {
padding: 4px;
border: var(--border-style);
border-radius: 20px;
&__details {
margin: 2px;
padding: 12px;
text-align: left;
list-style: none;
}
}
li::before {
content: '🗂'; }