-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.scss
65 lines (63 loc) · 1.28 KB
/
main.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
@import './variables';
@import './mixins';
@import './buttons';
@import './grid';
@import '../styles/cards/cards';
.react-rater-star {
font-size: 1rem;
&.is-active,
&.will-be-active {
color: $accent!important;
}
}
.intro {
background-color: $section-bg-color;
padding: 1rem 0 0.125rem;
line-height: 40px;
@include md {
padding: 2rem 0 .5rem;
line-height: 40px;
}
.container {
text-align: left;
margin-bottom: 2rem;
padding-right: 20px;
@include md {
padding-right: 620px;
}
}
&__heading {
font-family: $sans-font;
font-size: 1.75rem;
font-weight: 700;
line-height: 35px;
@include md {
font-size: 2.5rem;
line-height: 44px;
}
}
&__text {
a {
color: $accent;
&:hover {
text-decoration: underline;
}
}
}
&__ctas {
display: inline-flex;
flex-direction: column;
@include md {
display: inline-block;
}
a {
margin-right: .75rem;
margin-top: .5rem;
}
@include md {
}
}
.accent {
color: $accent;
}
}