-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
191 lines (164 loc) · 2.48 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
* {
box-sizing: border-box;
}
body {
background-image: url(./img/vintage-paper-7-1560x2355.jpg);
}
/* 題名 */
.top {
width: 80%;
margin: 80px auto;
}
.top h1 {
font-size: 60px;;
text-align: center;
}
/* 初期画面のスタートボタン */
.start {
width: 80%;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.start button {
margin: 50px;
width: 200px;
height: 100px;
}
/* 問題、選択肢、ボタンのブロック */
.quizMain {
display: none;
}
/* 問題 */
.question {
width: 80%;
margin: 30px auto;
}
.question h2 {
text-align: center;
}
/* 選択肢3つ */
.answer {
width: 60%;
margin: 20px auto;
display: flex;
flex-direction: column;
justify-content: center;
}
.answer p {
font-size: 20px;
}
/* ボタン3つ */
.btn {
width: 80%;
margin: 0 auto;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.btn button {
margin: 5px;
width: 200px;
border-radius: 3px;
}
/* 正誤のimg画像 */
.jadge {
display: flex;
justify-content: center;
}
.jadge img {
width: 250px;
height: 250px;
}
#circle {
display: none;
}
#cross {
display: none;
}
/* result表示 */
.result {
text-align: center;
display: none;
}
.result button {
font-size: 24px;
margin: 50px;
width: 200px;
height: 100px;
}
/* ミュート機能 */
.mute {
position: absolute;
bottom: 50px;
right: 50px;
}
.mute button {
font-size: 30px;
border: none;
background-color: rgba(0,0,0, 0);
}
.fa-volume-xmark {
display: none;
}
/* カウントダウンタイマー */
.timer {
text-align: center;
margin: 30px;
font-size: 24px;
}
/* クイズ一覧ボタン */
.page {
display: flex;
justify-content: center;
}
.pageBack {
margin: 50px 0;
display: none;
}
/* クイズ一覧 */
.quizlist {
width: 80%;
margin: 50px auto;
display: none;
}
.quizlist h2, .quizlist h3 {
text-align: center;
}
.form {
display: flex;
flex-direction: column;
border-bottom: 1px solid gray;
}
.form label, .form input, .form select {
margin: 5px;
}
.form select {
width: 50px;
}
.form button {
margin: 5px 0 15px 0;
}
.box {
margin-top: 5px;
border-top: 1px solid gray;
padding: 10px;
}
/* 削除機能 */
.remove {
padding: 10px;
border-top: 1px solid gray;
}
.remove input {
margin-top: 15px;
text-align: center;
width: 70px;
}
/* デフォルトぼたん */
.default label {
color: red;
text-shadow: 0 1px gray;
}