-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
62 lines (54 loc) · 1.04 KB
/
style.css
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
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
min-height: 100vh;
background-color: antiquewhite;
font-family: 'Lato', sans-serif;
display: flex;
justify-content: center;
align-items: center;
}
.container {
width: 480px;
max-width: 90%;
text-align: center;
background-color: lightcyan;
border-radius: 10px;
padding: 1rem;
}
h3 {
line-height: 1.6;
font-size: 1.1rem;
}
textarea {
margin: 1rem 0;
border: 1px solid #888;
border-radius: 5px;
outline: none;
padding: 1rem;
height: 100px;
width: 400px;
max-width: 90%;
}
.choices {
display: flex;
justify-content: space-evenly;
flex-wrap: wrap;
}
.choice {
font-size: 0.75rem;
font-weight: 600;
width: fit-content;
background-color: mediumaquamarine;
border-radius: 10px;
padding: 0.5rem;
margin: 10px;
}
.choices .highlight {
color: #fff;
background-color: rgb(0, 1, 87);
}