-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguide.scss
More file actions
59 lines (48 loc) · 1009 Bytes
/
Copy pathguide.scss
File metadata and controls
59 lines (48 loc) · 1009 Bytes
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
.tcs-guide{
background-color: $light-blue-25;
&__title{
color: $blue;
}
&__subtitle{
// TODO
font-family: $lora-italic;
font-size: 18px;
font-style: italic;
}
&__cards-container{
.row{
margin-right: -10px;
margin-left: -10px;
> div{
padding-right: 10px;
padding-left: 10px;
}
}
}
&__card{
background-color: $light-blue-50;
margin-right: 10px;
margin-top: 10px;
margin-bottom: 10px;
padding-top: 15px;
padding-bottom: 15px;
}
&__card-icon{
width: 24px;
display: block;
margin-bottom: 10px;
}
&__card-text{
font-family: $lora-reg;
color: $blue;
margin-bottom: 0;
}
}
@include media-breakpoint-up(md) {
.tcs-guide{
&__title{
text-align: center;
font-size: 38px;
}
}
}