-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
76 lines (67 loc) · 1.56 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
@import url('https://fonts.googleapis.com/css2?family=Courgette&display=swap');
:root{
--primary-yellow:rgba(252, 211, 77);
--secondary-blue: #344CB7;
}
body {
margin: 0px;
font-family: 'Courgette', cursive;
}
#header {
color: var(--secondary-blue);
text-align: center;
background-color: var(--primary-yellow);
padding: 2rem;
margin-top: 0rem;
display: block;
box-sizing: border-box;
border: var(--secondary-blue) 5px solid;
}
textarea {
width: 80%;
height: 10vh;
display: block;
padding: 1rem;
margin: 3rem auto;
max-width: 800px;
border-radius: 1rem;
border: 3px solid var(--secondary-blue);
font-weight: bold;
font-size: large;
font-family: 'Courgette', cursive;
}
#output {
border: 3px solid var(--secondary-blue);
height: 10vh;
width: 80%;
margin: 1rem auto;
padding: 1rem;
margin-top: 5rem auto;
max-width: 800px;
border-radius: 1rem;
font-weight: bold;
font-size: large;
}
button {
margin: auto;
background-color: var(--primary-yellow);
padding: 1rem;
border: none;
border-radius: 1rem;
border: 3px solid var(--secondary-blue);
color: var(--secondary-blue);
font-weight: bold;
font-size: large;
font-family: 'Courgette', cursive;
}
.footer {
font-weight: bold;
color: var(--secondary-blue);
text-align: center;
background-color: var(--primary-yellow);
padding: 2rem;
margin-top: 3rem;
display: block;
box-sizing: border-box;
border: var(--secondary-blue) 5px solid;
}