-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
76 lines (64 loc) · 1.25 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
:root {
--primary-color: #5B3256;
--background-color: #c0f0fa;
--font-family: 'Inika', 'Verdana', sans-serif;
}
body {
margin: 0;
background-color: var(--background-color);
}
main {
max-width: 400px;
margin: calc(100vh / 2) auto 0;
transform: translateY(-50%);
border: 1px solid var(--primary-color);
padding: 1rem;
padding-bottom: 1.5rem;
border-radius: 1rem;
display: flex;
flex-direction: column;
align-items: center;
}
h1, p, a, label, input, button {
font-family: var(--font-family);
color: var(--primary-color)
}
a {
text-decoration: none;
}
form {
display: flex;
flex-direction: column;
}
h1 {
font-size: 3rem;
margin: 0;
text-align: center;
}
.description-text {
text-align: center;
margin-bottom: 1.5rem;
}
.year-label {
margin-bottom: 0.9rem;
}
button, .button {
margin-top: 1rem;
padding: 0.5rem 0;
border: 1px solid var(--primary-color);
border-radius: 0.5rem;
background-color: var(--background-color);
width: 250px;
}
.button > p {
margin: 0;
text-align: center;
text-decoration: none;
}
button:hover, .button:hover {
background-color: #8fedff;
}
.return-text {
text-align: center;
margin-bottom: 0.5rem;
}