-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
119 lines (100 loc) · 1.54 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
:root {
/* Color */
--color-white: white;
--color-pink: rgb(255, 158, 174);
--color-light-grey: rgb(202, 202, 202);
--color-black: rgb(39, 39, 39);
/* Font-Size */
--font-size-large: 48px;
--font-size-medium: 24px;
--font-size-small: 20px;
}
* {
font-family: 'KoHo', sans-serif;
}
body {
display: block;
color: var(--color-white);
background-color: var(--color-black);
}
#root {
position: absolute;
width: 100vw;
top: 200px;
padding: 10px;
}
input {
margin: 0.5em;
width: 400px;
line-height: 32px;
border-radius: 10px;
border: 1px solid var(--color-black);
border: none;
font-size: 15px;
text-align: center;
}
.form_js {
text-align: center;
}
.form_js input {
display: inline-block;
}
h1 {
font-size: 100px;
margin: 20px 0;
display: flex;
justify-content: center;
}
h4 {
font-size: var(--font-size-medium);
text-align: center;
}
span {
font-size: var(--font-size-small);
font-weight: bold;
}
button {
margin: 8px;
border-radius: 10px;
border: none;
cursor: pointer;
}
button:hover {
transform: scale(1.1);
}
.form,
.greetings {
display: none;
}
.showing {
display: block;
}
.clock {
text-align: center;
}
#clock span {
font-weight: bold;
font-size: var(--font-size-medium);
text-align: center;
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.bgImage {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
animation: fadeIn 0.5s linear;
}
.toDoForm_js {
display: flex;
justify-content: center;
}