-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy path_content.scss
65 lines (53 loc) · 961 Bytes
/
_content.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
@use "variables";
.main-content {
padding: 50px 0;
font-size: 1rem;
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: variables.$font-weight-semi-bold;
color: variables.$color-text;
}
h3 {
padding: 10px 15px;
margin-right: -15px;
margin-left: -15px;
color: white;
background-color: variables.$color-primary;
}
.section-headline {
margin-top: 0;
font-size: 2rem;
font-weight: variables.$font-weight-semi-bold;
}
p {
margin: 0 0 variables.$spacing-paragraph;
}
@media (min-width: variables.$bp-tablet) {
padding: 130px 0;
.section-headline {
border-bottom: none;
}
h3 {
padding: 10px 40px;
margin-right: -40px;
margin-left: -40px;
}
.intro {
text-align: center;
}
}
}
a {
font-weight: variables.$font-weight-semi-bold;
color: variables.$color-link;
}
.text-end {
text-align: end;
}
.text-center {
text-align: center;
}