-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
80 lines (71 loc) · 1.71 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
@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Love+Ya+Like+A+Sister&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Love+Ya+Like+A+Sister&family=Patrick+Hand+SC&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Love+Ya+Like+A+Sister&family=Nerko+One&family=Patrick+Hand+SC&display=swap");
:root {
font-family: Patrick Hand SC;
font-size: 40px;
--Green: #1ee9ab;
--Purple: #b59fff;
--Orange: #fba903;
--Blue: #03c1fb;
}
body {
height: 100vh;
margin: 0;
/* background-image: radial-gradient(circle, #08dcad, #5be2b5, #82e8bf, #a1eeca, #bcf4d6); */
}
#green{
color: var(--Green);
}
#purple{
color: var(--Purple);
}
#orange{
color: var(--Orange);
}
header {
position: fixed;
top: 0;
width: 100%;
display: flex;
justify-content: space-around;
align-items: center;
border-bottom: 3px solid var(--Orange);
}
footer {
position: fixed;
height: 2em;
bottom: 0;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
border-top: 3px solid var(--Orange);
}
main {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.wordoftheday {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-family: Nerko One;
font-size: 100px;
padding: 1em;
}
#pickedWord{
font-family: Patrick Hand SC;
border: 4px dashed var(--Blue);
border-radius: 20px;
padding: 0 0.2em;
display: flex;
justify-content: center;
align-items: center;
}
.copyright {
font-size: 0.9em;
}