質問編集履歴

1

sass 更新しました

2020/10/27 06:38

投稿

cheetoi
cheetoi

スコア10

test CHANGED
File without changes
test CHANGED
@@ -24,7 +24,7 @@
24
24
 
25
25
 
26
26
 
27
- ```ここに言語を入力
27
+ ```html
28
28
 
29
29
  <!DOCTYPE html>
30
30
 
@@ -81,3 +81,167 @@
81
81
  </html>
82
82
 
83
83
  ```
84
+
85
+
86
+
87
+ ```sass
88
+
89
+ .movie {
90
+
91
+ position: relative;
92
+
93
+ // width: 100%;
94
+
95
+ height: 800px;
96
+
97
+
98
+
99
+
100
+
101
+ &__wrap {
102
+
103
+ position: absolute;
104
+
105
+ width: 500px;
106
+
107
+ height: 250px;
108
+
109
+ top: 35%;
110
+
111
+ left: 10%;
112
+
113
+ z-index: 3;
114
+
115
+ color: #fff;
116
+
117
+
118
+
119
+ h1 {
120
+
121
+ font-weight: bold;
122
+
123
+ font-size: 45px;
124
+
125
+ }
126
+
127
+ a {
128
+
129
+ text-decoration-color: #fff;
130
+
131
+
132
+
133
+ }
134
+
135
+ }
136
+
137
+
138
+
139
+ &__btn{
140
+
141
+ position: absolute;
142
+
143
+ color: #fff;
144
+
145
+ border: 2px solid #fff;
146
+
147
+ background-color: rgba(0, 0, 0, 0);
148
+
149
+ width: 115px;
150
+
151
+ height: 48px;
152
+
153
+ bottom: 4%;
154
+
155
+ right: 4%;
156
+
157
+ padding: 0;
158
+
159
+ // pointer-events: none;
160
+
161
+ display: flex;
162
+
163
+ justify-content: space-evenly;
164
+
165
+ align-items: center;
166
+
167
+
168
+
169
+ &__text {
170
+
171
+ margin: 0;
172
+
173
+ }
174
+
175
+ }
176
+
177
+ }
178
+
179
+
180
+
181
+
182
+
183
+ .hd-input {
184
+
185
+ padding: 0;
186
+
187
+
188
+
189
+ &__button {
190
+
191
+ position: absolute;
192
+
193
+ right: 0;
194
+
195
+ top: 4%;
196
+
197
+ right: 2%;
198
+
199
+ font-size: 14px;
200
+
201
+ z-index: 3;
202
+
203
+ }
204
+
205
+ }
206
+
207
+
208
+
209
+ .btn {
210
+
211
+ white-space: normal;
212
+
213
+ }
214
+
215
+
216
+
217
+ .navbar-light .navbar-nav .nav-link {
218
+
219
+ color: #fff;
220
+
221
+ font-size: 14px;
222
+
223
+ font-weight: lighter;
224
+
225
+
226
+
227
+ }
228
+
229
+
230
+
231
+ .hd-nav ul li {
232
+
233
+ border-bottom: hidden;
234
+
235
+ &:hover {
236
+
237
+ color: #fff;
238
+
239
+ border-bottom: 2px solid #fff;
240
+
241
+ margin: 0 auto;
242
+
243
+ }
244
+
245
+
246
+
247
+ ```