-
Notifications
You must be signed in to change notification settings - Fork 0
/
quizEnglish.css
70 lines (62 loc) · 1.97 KB
/
quizEnglish.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
.quizDisplay{
height: 100px;
width: 500px;
border: 3px solid rgb(50, 231, 255);
margin-left: auto;
margin-right: auto;
}
.startButton{
display: block; /* 要素をボックス化 */
/* ボタンのサイズを調整(paddingでボタンサイズを調節、widthを入れることでボタンを中央にセッティング可能) */
padding:10px 0;
width: 60px;
/* ボタンとテキストを中央にセット */
margin: 0 auto;
text-align:center;
/* 諸々の設定 */
color: #000;
text-decoration: none;
background: #ccc;
border-radius: 5px ;
/* display: none; */
cursor: default; /* マウスホバー時、通常時の矢印(➚)の形にする */
}
.EnglishWord{
/* ボタンのサイズを調整(paddingでボタンサイズを調節、widthを入れることでボタンを中央にセッティング可能) */
padding-top: 5px;
padding-bottom: 5px;
width: 300px;
/* ボタンとテキストを中央にセット */
margin: 0 auto;
text-align:center;
/* display: none; */
}
.insert{
padding: 10px 120px;
width: 160px;
margin: 0 auto;
/* display: none; */
}
.judge{
/* ボタンのサイズを調整(paddingでボタンサイズを調節、widthを入れることでボタンを中央にセッティング可能) */
padding-top: 5px;
padding-bottom: 5px;
width: 200px;
/* ボタンとテキストを中央にセット */
margin: 0 auto;
text-align:center;
/* display: none; */
}
.answer{
/* ボタンのサイズを調整(paddingでボタンサイズを調節、widthを入れることでボタンを中央にセッティング可能) */
padding-top: 5px;
padding-bottom: 5px;
width: 120px;
/* ボタンとテキストを中央にセット */
margin: 0 auto;
text-align:center;
display:none;
}
.is-active{
display:block;
}