-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathstyles.module.scss
More file actions
112 lines (94 loc) · 1.96 KB
/
styles.module.scss
File metadata and controls
112 lines (94 loc) · 1.96 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
.features {
--ifm-heading-margin-bottom: 2rem;
display: flex;
align-items: center;
padding: 4.375rem 0;
width: 100%;
@media only screen and (min-width: 996px) {
padding-top: 6.25rem;
}
.featuredList {
display: flex;
flex-direction: column;
@media only screen and (min-width: 996px) {
flex-direction: row;
justify-content: space-between;
}
}
.card {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
@media only screen and (min-width: 996px) {
align-items: flex-start;
width: 30%;
padding: 0 var(--ifm-spacing-horizontal);
}
&:first-child {
.featureImage {
@media only screen and (min-width: 996px) {
margin-bottom: 2.5rem;
}
}
}
&:nth-child(2) {
.featureImage {
@media only screen and (min-width: 996px) {
margin-bottom: 3.3125rem;
}
}
}
&:last-child {
.featureImage {
@media only screen and (min-width: 996px) {
max-width: 40%;
}
}
}
&:not(:last-child) {
&:after {
content: "";
display: block;
width: 100%;
height: 2px;
background-color: var(--c-eleven-o-clock);
margin: 0 auto;
opacity: 0.25;
margin: 2rem 0;
@media only screen and (min-width: 996px) {
height: 0;
margin: 0;
}
}
}
}
.featureImage {
height: auto;
width: 100%;
max-width: 8.125rem;
margin-bottom: 0.9375rem;
@media only screen and (min-width: 996px) {
max-width: 50%;
}
}
.featureAnimation {
height: auto;
width: 100%;
max-width: 8.125rem;
@media only screen and (min-width: 996px) {
max-width: 50%;
}
}
@media only screen and (min-width: 996px) {
--ifm-spacing-horizontal: 0.4rem;
}
}
.header {
margin-bottom: 3.125rem;
&.ja {
h2 {
font-size: 4.2vw;
}
}
}