質問編集履歴
4
画像を追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -22,7 +22,7 @@
|
|
22
22
|
|
23
23
|
追記画像
|
24
24
|
|
25
|
-
|
25
|
+
![イメージ説明](1b74b18fcb99666845dcb789648fd615.png)
|
26
26
|
|
27
27
|
|
28
28
|
|
3
画像を追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -17,6 +17,12 @@
|
|
17
17
|
でもまず、熊のポジションをうまく移動させたいのですが、上記のような状態です。
|
18
18
|
|
19
19
|
お手数ですがよろしくお願いします。
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
追記画像
|
24
|
+
|
25
|
+
|
20
26
|
|
21
27
|
|
22
28
|
|
2
画像の追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -5,6 +5,10 @@
|
|
5
5
|
position:absolute;でbottom:-13px;にしてあげると上手く行くかと思いましたが、
|
6
6
|
|
7
7
|
これをするとテキストが左に来てしまったり、熊がセクションの上の壁を突き抜けてしまいます。
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
![イメージ説明](14f0662d66aa3b4ab4619a527c0cc338.png)
|
8
12
|
|
9
13
|
|
10
14
|
|
1
sass→cssに変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -48,55 +48,69 @@
|
|
48
48
|
|
49
49
|
height: auto;
|
50
50
|
|
51
|
-
// min-height: 600px;
|
52
|
-
|
53
51
|
background-color: skyblue;
|
54
52
|
|
55
53
|
padding-top: 30px;
|
56
54
|
|
57
|
-
|
55
|
+
}
|
58
56
|
|
59
|
-
max-width: 1080px;
|
60
57
|
|
61
|
-
margin: 0 auto;
|
62
58
|
|
63
|
-
|
59
|
+
.profile-mv-wrap {
|
64
60
|
|
65
|
-
|
61
|
+
max-width: 1080px;
|
66
62
|
|
67
|
-
|
63
|
+
margin: 0 auto;
|
68
64
|
|
69
|
-
|
65
|
+
position: relative;
|
70
66
|
|
71
|
-
|
67
|
+
display: -webkit-box;
|
72
68
|
|
73
|
-
|
69
|
+
display: -ms-flexbox;
|
74
70
|
|
75
|
-
|
71
|
+
display: flex;
|
76
72
|
|
77
|
-
|
73
|
+
}
|
78
74
|
|
79
|
-
&-right {
|
80
75
|
|
81
|
-
display: flex;
|
82
76
|
|
83
|
-
|
77
|
+
.profile-mv-wrap-left img {
|
84
78
|
|
85
|
-
|
79
|
+
position: absolute;
|
86
80
|
|
87
|
-
|
81
|
+
bottom: -20px;
|
88
82
|
|
89
|
-
|
83
|
+
}
|
90
84
|
|
91
|
-
text-align: center;
|
92
85
|
|
93
|
-
color: white;
|
94
86
|
|
95
|
-
|
87
|
+
.profile-mv-wrap-right {
|
96
88
|
|
97
|
-
|
89
|
+
display: -webkit-box;
|
98
90
|
|
91
|
+
display: -ms-flexbox;
|
92
|
+
|
93
|
+
display: flex;
|
94
|
+
|
95
|
+
-webkit-box-align: center;
|
96
|
+
|
97
|
+
-ms-flex-align: center;
|
98
|
+
|
99
|
+
align-items: center;
|
100
|
+
|
99
|
-
|
101
|
+
}
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
.profile-mv-wrap-right h1 {
|
106
|
+
|
107
|
+
font-size: 56px;
|
108
|
+
|
109
|
+
font-weight: bold;
|
110
|
+
|
111
|
+
text-align: center;
|
112
|
+
|
113
|
+
color: white;
|
100
114
|
|
101
115
|
}
|
102
116
|
|