-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (50 loc) · 877 Bytes
/
style.css
File metadata and controls
58 lines (50 loc) · 877 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
58
body {
background-color: rgb(18, 165, 185);
}
* {
font-family: Arial;
font-size: 20px;
}
button {
margin-bottom: 20px;
padding: 10px 15px;
}
h1 {
font-size: 30px;
font-weight: 700;
text-shadow: 3px 3px 5px rgba(36, 36, 36, 0.767);
color: white;
}
#answer {
background-color: white;
width: 180px;
height: 40px;
padding: 1px 2px;
text-align: center;
padding-top: 16px;
}
.page {
display: flex;
flex-direction: column;
align-items: center;
background-color: rgba(75, 75, 95, 0.85);
width: 500px;
margin: 0 auto;
padding: 30px 10px;
}
.boxes {
display: flex;
justify-content: space-around;
width: 300px;
margin-bottom: 20px;
align-items: center;
}
.boxes span {
font-weight: 700;
color: white;
}
.input {
width: 100px;
height: 40px;
padding: 1px 5px;
}