-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
54 lines (47 loc) · 871 Bytes
/
Copy pathstyles.css
File metadata and controls
54 lines (47 loc) · 871 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
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-family:COSMIC SANS MS;
background-color: #0f0f0f;
color: white;
}
h1,p {
margin-bottom: 50px;
text-align: center;
color: WHITE;
}
#question {
font-size: 24px;
margin-bottom: 15px;
text-decoration-color: white;
}
input{
margin: 20px;
padding: 20px;
font-size: 18px;
width: 200px;
text-align: center;
margin-bottom: 20px;
}
button {
margin-top: 20px;
padding: 10px 20px;
font-size: 18px;
background-color: #df55a1;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #8f4a70;
}
#score {
margin-top: 20px;
font-size: 20px;
}
#message {
font-size: 20px ;
}