-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
62 lines (51 loc) · 1006 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
@import url('https://fonts.googleapis.com/css2?family=Golos+Text:[email protected]&family=Merriweather:wght@400;700&display=swap');
:root {
--white: #fff;
--red: #f54932;
--text-color: #313131;
--link-color: #3057a2;
--accent-font: "Merriweather", serif;
--default-font: "Golos Text", sans-serif;
}
@mixin breakpoint {
@media (min-width: 1366px) {
@content;
}
}
@mixin list-reset {
margin: 0;
padding: 0;
list-style-type: none;
text-indent: 0;
}
.body {
font: 16px var(--default-font);
font-optical-sizing: auto;
color: var(--text-color);
margin: 0;
}
.container {
margin: 0 auto;
width: 336px;
@include breakpoint{ width: 1222px }
}
.stroke {
text-decoration: line-through;
text-decoration-color: red;
}
.link {
color: var(--link-color);
text-decoration: none;
}
.reset {
all: unset;
}
@import "h1";
@import "h2";
@import "button";
@import "header";
@import "marquee";
@import "table";
@import "welcome";
@import "participants";
@import "footer";