-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquiz.css
More file actions
80 lines (69 loc) · 1.18 KB
/
Copy pathquiz.css
File metadata and controls
80 lines (69 loc) · 1.18 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
*{
margin: 0;
padding: 0;
font-family: monospace;
font-size: 1rem;
}
body{
background-color: rgb(38, 38, 38);
margin: auto;
}
h1{
margin: 10px 4px;
font-size: 3.5rem;
color: rgb(91, 208, 247);
text-align: center;
}
#container{
position: absolute;
left: 16%;
top: 12%;
display: flex;
}
#form{
background-color: rgb(255, 255, 255);
margin: 10px 22px;
padding: 0px 2px;
height: 559px;
width: 600px;
border-radius: 18px;
box-shadow: 19px 18px 22px rgb(19, 9, 156);
text-align: center;
}
#form .input{
margin: 12px 2px;
}
#form .input p{
margin: 5px 7px;
}
#form .input input{
margin: 3px 2px;
}
#result{
position: absolute;
text-align: center;
left: 35%;
width: 180px;
margin: 5px ;
border: solid 4px black;
border-radius: 12px;
}
#result:hover{
background-color: Grey;
color: white;
border: solid 4px rgb(0, 0, 0);
}
#name{
text-align: center;
width: 180px;
margin: 5px ;
border: solid 4px black;
border-radius: 12px;
}
#submit{
text-align: center;
width: 180px;
margin: 5px ;
border: solid 4px black;
border-radius: 12px;
}