-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
110 lines (92 loc) · 1.43 KB
/
index.css
File metadata and controls
110 lines (92 loc) · 1.43 KB
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
@import url("https://fonts.googleapis.com/css2?family=Pangolin&display=swap");
body {
background-color: #2c5364;
}
.btn {
cursor: pointer;
}
body {
height: 100vh;
color: white;
display: flex;
justify-content: space-evenly;
align-items: center;
flex-direction: column;
font-family: "Pangolin", sans-serif;
}
header {
text-shadow: 3px 3px 2px gray;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
main {
top: 0px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background-color: #ffffff;
background-color: rgba(255, 255, 255, 0.527);
text-shadow: 2px 2px 2px gray;
border-radius: 10px;
padding: 10px;
}
.js-clock {
font-size: 60px;
}
.clicked {
color: red;
}
.weather {
font-size: 25px;
}
.form,
.greetings {
display: none;
}
.showing {
display: block;
font-size: 25px;
}
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.bgImage {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
animation: fadein 0.4s linear;
}
input {
border: none;
background-color: rgba(248, 248, 248, 0);
border-bottom: 1px dashed white;
color: white;
font-size: 20px;
}
li. {
background-color: ;
}
input:focus {
outline: none;
}
input::placeholder {
color: white;
font-weight: 200;
}
.js-toDoList {
list-style: none;
}
ul {
padding-left: 0px;
}