-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
52 lines (47 loc) · 886 Bytes
/
main.css
File metadata and controls
52 lines (47 loc) · 886 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
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
font-family: 'Roboto', sans-serif;
background-color: whitesmoke;
}
/* center main */
main {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
}
.answers {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 20px;
}
.answers a {
display: block;
width: 100%;
max-width: 300px;
padding: 10px;
margin: 5px;
border: 1px solid #ccc;
border-radius: 5px;
text-align: center;
text-decoration: none;
color: #333;
background-color: #fff;
transition: background-color 0.3s;
}
.answers a:hover {
background-color: #333;
color: #fff;
}
p {
margin: 0;
padding: 0;
font-size: 1.6em;
text-align: center;
}