-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path100-projects-014-sample-quiz1.css
More file actions
57 lines (49 loc) · 940 Bytes
/
100-projects-014-sample-quiz1.css
File metadata and controls
57 lines (49 loc) · 940 Bytes
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
body {
background-color: #333444;
}
.page-wrapper {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
background-color: #333444;
height: 100vh;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 350px;
height: 420px;
border: 12px black solid;
border-radius: 40px;
box-shadow: -29px 30px 0 rgba(0, 225, 225, 1.4);
background-color: black;
}
h1 {
font-size: 36px;
color: rgba(0, 225, 225, 1);
}
p {
font-size: 18px;
color: white;
}
input {
height: 20px;
width: 230px;
border-radius: 6px;
}
input[type='submit'] {
margin-top: 12px;
height: 30px;
width: 240px;
background-color: #e1e1ff;
}
input[type='submit']:hover {
background-color: rgba(0, 225, 225, 1);
}
p[id='score'] {
font-size: 26px;
color: rgba(0, 225, 225, 1);
}