-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_types.scss
64 lines (56 loc) · 1.26 KB
/
_types.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
.types {
display: inline-block;
text-align: left;
max-width: 100%;
padding: 0 8px;
h1 {
color: #7D8A96;
font-size: 32px;
text-transform: uppercase;
border-bottom: 1px solid rgba(0, 0 , 0,0.3);
display: inline-block;
margin: 42px 0 10px;
@media(min-width: 768px) {
font-size: 40px;
}
}
section {
max-width: 100%;
}
p {
margin: 0;
padding-left: 0;
}
h1 + h2 {
margin-top: 0px;
}
.type {
max-width: 660px;
display: flex;
flex-flow: row wrap;
&__col {
padding-left: 22px;
flex: 1 0 15%;
h3 {
width: initial;
padding: 0;
margin: 0;
}
@media(min-width: 600px) {
padding-right: 22px;
flex: 1 0 15%;
font-size: 20px;
}
}
}
.legend {
margin: 20px auto 0;
display: inline-block;
padding: 10px 20px;
font-size: 24px;
background: #FDF6E3;
border-radius: 4px;
box-shadow: 0 4px 6px rgba(50,50,93,.11),
0 1px 3px rgba(0, 0, 0,.08);
}
}