-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (51 loc) · 1.05 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
@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&display=swap');
:root{
--primary-color:#ffe135;
}
/* styling applied directly on html elements */
body{
font-family: 'Comic Neue', cursive;
margin: 0;
}
main{
max-width: 150vh;
margin: auto;
margin-top: 4.7vh;
margin-bottom: 4.7vh;
font-family: 'Comic Neue', cursive;
}
textarea{
max-width: 80%;
max-height: 20vh;
display: block;
padding: 1rem;
margin: auto;
}
textarea[placeholder]{
font-family: 'Comic Neue', cursive;
}
button{
margin: auto;
display: block;
margin-top: 1rem;
margin-bottom: 1rem;
background-color: var(--primary-color);
border-radius: 1.2rem;
font-family: 'Comic Neue', cursive;
font-weight: bolder;
padding: 1vh 12vh;
}
nav, footer{
background-color: var(--primary-color);
padding: 1rem;
text-align: center;
}
.footer-header h2{
margin-top: 0px;
margin-bottom: 1rem;
}
.footer-para{
max-width: 80vh;
text-align: center;
margin: auto;
}