-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
87 lines (71 loc) · 1.33 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
body {
font-family: sans-serif;
color: #fff;
}
p{
text-align: center;
margin-bottom: 15px;
padding-bottom: 5px;
}
h1{
text-align: center;
margin: 0px;
padding: 0px;
}
.container{
height: 450px;
width: 600px;
background-color: #1A76F1;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
border-radius: 20px;
display: flex;
margin: 250px auto;
}
#test-container {
max-width: 800px;
margin: 0 auto;
justify-content: center;
align-self: center;
}
form {
width: 500px;
margin: 0 auto;
padding: 20px;
/* background-color: #fff; */
/* border: 1px solid #ccc; */
border-radius: 5px;
text-align: center;
}
input {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
margin-bottom: 10px;
}
button {
background-color: #fff;
color: #1A76F1;
padding: 10px;
border: 1px solid #fff;
border-radius: 5px;
cursor: pointer;
}
input:focus {
border-color: #000;
}
button:hover {
background-color: #333;
color: #fff;
}
#questions {
padding: 0;
}
#submit-button {
margin-top: 30px;
}
#results-container {
background-color: aquamarine;
max-width: 500px;
margin: 0 auto;
}