質問編集履歴
1
SCSSからCSSに変更
title
CHANGED
File without changes
|
body
CHANGED
@@ -10,14 +10,14 @@
|
|
10
10
|
</section>
|
11
11
|
```
|
12
12
|
|
13
|
-
```
|
13
|
+
```CSS
|
14
|
-
#works{
|
14
|
+
#works {
|
15
15
|
position: relative;
|
16
|
-
|
16
|
+
overflow: hidden;
|
17
|
-
|
17
|
+
margin: 10% 0;
|
18
|
-
|
18
|
+
padding: 80px 0;
|
19
|
-
|
19
|
+
}
|
20
|
-
:before {
|
20
|
+
#works :before {
|
21
21
|
content: '';
|
22
22
|
position: absolute;
|
23
23
|
top: 0;
|
@@ -34,8 +34,7 @@
|
|
34
34
|
transform: rotate(3deg);
|
35
35
|
z-index: -1;
|
36
36
|
}
|
37
|
-
|
38
|
-
:after {
|
37
|
+
#works :after {
|
39
38
|
content: '';
|
40
39
|
position: absolute;
|
41
40
|
top: 0;
|
@@ -52,8 +51,8 @@
|
|
52
51
|
transform: rotate(-3deg);
|
53
52
|
z-index: -2;
|
54
53
|
}
|
55
|
-
|
54
|
+
|
56
|
-
.works-slide{
|
55
|
+
.works-slide {
|
57
56
|
box-sizing: border-box;
|
58
57
|
width: 100%;
|
59
58
|
max-width: 1170px;
|