-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
79 lines (69 loc) · 1.38 KB
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Andika+New+Basic:ital,wght@1,400;1,700&display=swap');
:root {
--primary-color: #FDD835;
}
body {
font-family: 'Andika New Basic', sans-serif;
box-sizing: border-box;
display: block;
margin: 0;
text-align: center;
}
div {
display: block;
}
/** Navigation **/
nav {
background-color: var(--primary-color);
text-align: center;
display: block;
}
.navigation {
font-size: 2rem;
padding: 1rem;
}
textarea {
text-align: start;
font-family: 'Andika New Basic', sans-serif;
max-width: 600px;
margin: auto;
/* box-sizing: border-box; */
display: block;
width: 100%;
min-height: 20vh;
margin-top: 2rem;
font-size: large;
}
button {
background-color: var(--primary-color);
font-family: 'Andika New Basic', sans-serif;
border: none;
margin: 1rem 0rem;
padding: 1rem 2rem;
font-size: large;
}
#output {
max-width: 600px;
margin: auto;
box-sizing: border-box;
width: 100%;
border: 1px solid black;
min-height: 10vh;
max-height: 30vh;
padding: 1rem;
}
.font {
font-size: larger;
padding: 1rem;
text-align: center;
}
/** footers **/
footer {
position: fixed;
bottom: 0;
width: 100%;
background-color: var(--primary-color);
padding: 1rem;
text-align: center;
box-sizing: border-box;
}