-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathstyles.module.scss
More file actions
146 lines (123 loc) · 2.34 KB
/
styles.module.scss
File metadata and controls
146 lines (123 loc) · 2.34 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
.homepagePartnersSegment {
overflow: hidden;
padding: 3.125rem 0;
position: relative;
@media only screen and (min-width: 996px) {
padding: 5.5rem 0;
--ifm-spacing-horizontal: 0.4rem;
}
}
.header {
@media only screen and (min-width: 996px) {
margin-bottom: 3rem;
}
h2 {
@media only screen and (min-width: 996px) {
padding-right: 6.25rem;
}
}
}
.partnerList {
display: flex;
flex-wrap: wrap;
gap: 1rem;
}
.card {
flex-basis: 100%;
&:not(:last-child) {
margin-bottom: 1rem;
@media only screen and (min-width: 996px) {
margin-bottom: 0;
}
}
@media only screen and (min-width: 996px) {
flex-basis: 48%;
}
}
.cardTitle {
margin: var(--ifm-heading-margin-top) 0 var(--ifm-heading-margin-bottom) 0;
h3 {
margin-bottom: 0;
margin-right: 0.625rem;
display: inline;
}
svg {
color: var(--c-white);
transition: left 0.2s ease-in-out;
position: relative;
}
}
.featureImage {
display: block;
margin-left: auto;
color: var(--c-eleven-o-clock);
margin-top: auto;
}
.cardLink {
position: relative;
z-index: 200;
display: flex;
flex-wrap: wrap;
height: 100%;
border-radius: 18px;
padding: 2rem 1.9rem;
transition: transform 0.2s ease-in-out;
transform: translateY(0);
align-content: flex-start;
flex-direction: column;
background: linear-gradient(
63.65deg,
#b7c2ea 2.88%,
#a5afd9 15.55%,
#a5afd9 23.26%,
#b7c2ea 43.34%
);
&:hover {
text-decoration: none;
color: var(--c-eleven-o-clock);
transform: translateY(-2px);
box-shadow: 1px 8px 15px var(--c-black);
span {
&:after {
border-bottom-color: var(--c-eleven-o-clock);
}
}
svg {
left: 4px;
}
}
span {
position: relative;
&:after {
border-bottom: 3px solid transparent;
content: "";
left: 0;
bottom: 0;
position: absolute;
right: 0;
transition: border-bottom-color 0.2s ease;
}
}
}
.animationIcon {
height: auto;
width: 50px;
display: block;
margin-left: auto;
margin-top: auto;
svg {
width: auto;
}
}
/*** JA specific styles ****/
.cardHeader {
&.ja {
font-weight: 600;
line-height: 1.13;
letter-spacing: -0.02em;
font-size: 1.5rem;
@media only screen and (min-width: 996px) {
font-size: 1.8rem;
}
}
}