質問編集履歴
2
CSS修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -72,12 +72,6 @@
|
|
72
72
|
|
73
73
|
flex-direction: column;
|
74
74
|
|
75
|
-
/*-----
|
76
|
-
|
77
|
-
display: block;
|
78
|
-
|
79
|
-
-----*/
|
80
|
-
|
81
75
|
}
|
82
76
|
|
83
77
|
|
1
CSS追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -54,6 +54,34 @@
|
|
54
54
|
|
55
55
|
```CSS
|
56
56
|
|
57
|
+
div.container_justcontinue {
|
58
|
+
|
59
|
+
width: 1366px;
|
60
|
+
|
61
|
+
height: 455px;
|
62
|
+
|
63
|
+
background-image: url("images/tim-bogdanov-4uojMEdcwI8-unsplash.png");
|
64
|
+
|
65
|
+
background-size: cover;
|
66
|
+
|
67
|
+
background-position: center;
|
68
|
+
|
69
|
+
display: flex;
|
70
|
+
|
71
|
+
justify-content: center;
|
72
|
+
|
73
|
+
flex-direction: column;
|
74
|
+
|
75
|
+
/*-----
|
76
|
+
|
77
|
+
display: block;
|
78
|
+
|
79
|
+
-----*/
|
80
|
+
|
81
|
+
}
|
82
|
+
|
83
|
+
|
84
|
+
|
57
85
|
h2.justcontinue_title {
|
58
86
|
|
59
87
|
color: white;
|
@@ -68,6 +96,56 @@
|
|
68
96
|
|
69
97
|
|
70
98
|
|
99
|
+
}
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
p.justcontinue_text {
|
104
|
+
|
105
|
+
color: white;
|
106
|
+
|
107
|
+
font-size: 16px;
|
108
|
+
|
109
|
+
font-weight: bold;
|
110
|
+
|
111
|
+
text-align: center;
|
112
|
+
|
113
|
+
|
114
|
+
|
115
|
+
}
|
116
|
+
|
117
|
+
|
118
|
+
|
119
|
+
.btn {
|
120
|
+
|
121
|
+
width: 210px;
|
122
|
+
|
123
|
+
height: 54px;
|
124
|
+
|
125
|
+
border-radius: 5px;
|
126
|
+
|
127
|
+
background-color: #83032A;
|
128
|
+
|
129
|
+
color: white;
|
130
|
+
|
131
|
+
line-height: 54px;
|
132
|
+
|
133
|
+
font-size: 16px;
|
134
|
+
|
135
|
+
font-weight: bold;
|
136
|
+
|
137
|
+
margin-top: 48px;
|
138
|
+
|
139
|
+
text-align: center;
|
140
|
+
|
141
|
+
margin-left: auto;
|
142
|
+
|
143
|
+
margin-right: auto;
|
144
|
+
|
145
|
+
}
|
146
|
+
|
147
|
+
|
148
|
+
|
71
149
|
```
|
72
150
|
|
73
151
|
|