-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
80 lines (69 loc) · 1.17 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
background-color: seagreen;
font-family: cursive;
background-image: url("icons8-talking-48.png");
background-size: cover;
}
section {
margin: 9rem 5rem;
padding: 15px;
display: grid;
place-content: center;
line-height: 1rem;
background-color: aliceblue;
}
section header {
background-color: navajowhite;
padding: 10px;
text-align: center;
}
select,
label,
input,
textarea {
display: block;
width: 40vw;
}
select {
padding: 10px;
margin: 5px 0;
}
input,
button {
cursor: pointer;
}
textarea {
font-family: Arial, Helvetica, sans-serif;
padding: 10px;
}
div.btns {
display: flex;
justify-content: space-evenly;
align-items: center;
gap: 5px;
padding-top: 5px;
}
button {
width: 20vw;
display: inline-block;
padding: 5px 10px;
background-color: navajowhite;
font-style: italic;
font-weight: bold;
}
button:hover {
opacity: 0.9;
}
footer {
background-color: aqua;
display: flex;
justify-content: space-around;
align-items: center;
padding: 1rem;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}