質問編集履歴
1
css書き足しました
title
CHANGED
File without changes
|
body
CHANGED
@@ -33,7 +33,13 @@
|
|
33
33
|
</body>
|
34
34
|
```
|
35
35
|
```css
|
36
|
+
.mainVisual__slide--item img {
|
37
|
+
width: 100%;
|
38
|
+
height: 100vh;
|
39
|
+
}
|
40
|
+
|
36
41
|
.slanting:before {
|
42
|
+
overflow: hidden;
|
37
43
|
content: '';
|
38
44
|
position: absolute;
|
39
45
|
top: 100%;
|
@@ -49,4 +55,19 @@
|
|
49
55
|
transform: rotate(-7deg);
|
50
56
|
z-index: 100;
|
51
57
|
}
|
58
|
+
.triangle {
|
59
|
+
width: 0;
|
60
|
+
height: 0;
|
61
|
+
border: 20px solid transparent;
|
62
|
+
border-top: 20px solid #127749;
|
63
|
+
position: absolute;
|
64
|
+
top: 93%;
|
65
|
+
left: 47%;
|
66
|
+
right: 0;
|
67
|
+
bottom: 0;
|
68
|
+
z-index: 200;
|
69
|
+
}
|
70
|
+
.subContants__wrap {
|
71
|
+
position: absolute;
|
72
|
+
}
|
52
73
|
```
|