-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
88 lines (70 loc) · 960 Bytes
/
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
81
82
83
84
85
86
87
88
:root {
/* theme colors */
}
/* ### element styles ### */
* {
}
html {
scroll-behavior: smooth;
}
body {
background: linear-gradient(
180deg,
#03032b,
#202057,
#c27278,
#f18475
) !important;
color: #fff !important;
margin: 0;
padding: 0;
font-family: "Inter", sans-serif;
transition: ease 0.2s;
}
main {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
}
footer {
width: 100%;
background: rgba(12, 12, 12, 0.5);
padding: 10px 0;
position: fixed;
bottom: 0;
}
/* ### class styles ### */
.hidden {
display: none;
}
.bold {
font-weight: bold !important;
}
/* ### page styles ### */
#howManyDaysForm {
}
#howManyDaysForm input {
transition: 0.2s ease;
border: none;
}
#howManyDaysForm input:focus-visible {
background-color: #a1a1a1;
color: #000;
}
#submit {
}
#result {
}
#result p {
margin: 12px 0 0 0;
font-weight: bold;
}
#days {
}
#days-label {
}
#years {
}
#years-label {
}