-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
116 lines (83 loc) · 1.93 KB
/
style.css
File metadata and controls
116 lines (83 loc) · 1.93 KB
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
*, ::before, ::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: "DIN 2014 Narrow", serif;
background-color: rgba(0,0,0,0.04);
}
/* Title */
h1 {
text-align: center;
padding: 20px 0;
}
/* InputQuestion */
.inputQuestion {
width: 30%;
padding: 20px 2%;
background-color: white;
border : 1px solid white;
border-radius: 8px;
box-shadow: 3px 3px 5px #dbdbdb;
margin-top: 20px;
margin-left: auto;
margin-right: auto;
}
.inputQuestionTitle {
font-size: 22px;
}
.labelResponse {
white-space: pre;
}
/* Button */
#enterButton {
width: 30%;
margin: 20px 35%;
padding: 10px 0;
background-color: white;
border : 1px solid white;
border-radius: 8px;
box-shadow: 3px 3px 5px #dbdbdb;
}
/* ResultBox */
#resultBox {
width: 30%;
padding-top: 20px;
padding-bottom: 20px;
background-color: white;
border : 1px solid white;
border-radius: 8px;
box-shadow: 3px 3px 5px #dbdbdb;
text-align: center;
margin-left: auto;
margin-right: auto;
}
#resultComment {
font-size: 24px;
}
#resultNote {
font-size: 32px;
}
.goodResponse {
width: 30%;
padding: 20px 2%;
background-color: #b5d989;
border : 1px solid #b5d989;
border-radius: 8px;
box-shadow: 3px 3px 5px #dbdbdb;
margin-top: 20px;
margin-left: auto;
margin-right: auto;
}
.badResponse {
width: 30%;
padding: 20px 2%;
background-color: #de9a9a;
border : 1px solid #de9a9a;
border-radius: 8px;
box-shadow: 3px 3px 5px #dbdbdb;
margin-top: 20px;
margin-left: auto;
margin-right: auto;
}