1
1
@use ' src/app/variables' ;
2
- $hovering-color : #7FCC8F ;
3
- $span-color : #47B660 ;
4
- $heroImage-change-width : 1280px ;
5
- $header-change-width : 1200px ;
6
- $background-color : #F1F1F1 ;
7
2
8
3
/* heroImageとヘッダーのpadding調整 */
9
- @media (min-width : $heroImage-change-width ) {
4
+ @media (min-width : variables . $heroImage-change-width ) {
10
5
.heroImage {
11
6
height : 60vh ;
12
7
}
13
8
}
14
9
15
- @media (max-width : $heroImage-change-width ) {
10
+ @media (max-width : variables . $heroImage-change-width ) {
16
11
.heroImage {
17
12
height : 100% ;
18
13
}
19
14
}
20
15
21
- @media (max-width : $header-change-width ) {
16
+ @media (max-width : variables . $header-change-width ) {
22
17
.main {
23
18
padding-top : 64px ;
24
19
}
25
20
}
26
21
27
- @media (min-width : $header-change-width ) {
22
+ @media (min-width : variables . $header-change-width ) {
28
23
.main {
29
24
padding-top : 72px ;
30
25
}
@@ -42,7 +37,7 @@ $background-color: #F1F1F1;
42
37
43
38
.contentTitle {
44
39
margin : 20px ;
45
- font-size : 1.25 rem ; // 20px
40
+ font-size : 1.5 rem ; // 24px
46
41
}
47
42
48
43
.aboutText {
@@ -211,21 +206,21 @@ $background-color: #F1F1F1;
211
206
212
207
.main {
213
208
flex-direction : column ;
214
- background-color : $background-color ;
209
+ background-color : variables . $background-color ;
215
210
}
216
211
217
212
.container {
218
213
display : flex ;
219
214
flex-direction : column ;
220
- background-color : $background-color ;
215
+ background-color : variables . $background-color ;
221
216
}
222
217
223
218
.hero {
224
219
align-items : center ;
225
220
justify-content : center ;
226
221
display : flex ;
227
222
flex-direction : column ;
228
- background-color : $background-color ;
223
+ background-color : variables . $background-color ;
229
224
}
230
225
231
226
.breadcrumb {
@@ -311,15 +306,15 @@ $background-color: #F1F1F1;
311
306
}
312
307
313
308
.breadcrumbLink :hover {
314
- color : $hovering-color ;
309
+ color : variables . $hovering-color ;
315
310
}
316
311
317
312
.bold {
318
313
font-weight : bold ;
319
314
}
320
315
321
316
.span {
322
- color : $span-color ;
317
+ color : variables . $span-color ;
323
318
}
324
319
325
320
.news {
0 commit comments