-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
79 lines (66 loc) · 1.2 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
@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Rubik+Glitch&family=Rubik+Microbe&display=swap');
body {
background-color: #0b0b0e;
color: white;
font-family: 'Poppins', sans-serif;
margin-top: 50px;
}
main {
display: grid;
place-items: center;
}
h1 {
font-family: 'Rubik Microbe', cursive;
font-weight: 400;
font-size: 5rem;
}
#result {
aspect-ratio: 1/1;
max-width: 512px;
width: 100%;
background: #3a3a43;
display: flex;
justify-content: center;
align-items: center;
}
form {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
max-width: 512px;
margin-top: 2rem;
}
textarea {
width: 100%;
height: 100px;
margin: 10px 0;
font-size: 1.5rem;
}
button {
width: 100%;
height: 50px;
background-color: #1b1b1e;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
text-transform: uppercase;
font-weight: 600;
margin-bottom: 50px;
}
button:hover {
background-color: #2b2b2e;
}
.hidden {
display: none;
}
.spinner {
animation: spin 1s linear infinite;
display: inline-block;
}
@keyframes spin {
from {transform:rotate(0deg);}
to {transform:rotate(360deg);}
}