-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
88 lines (75 loc) · 1.12 KB
/
index.css
File metadata and controls
88 lines (75 loc) · 1.12 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
body{
background-color: black;
}
.js-clock h1{
padding-top: 0.5em;
text-align: center;
font-size: 8em;
color: white;
}
.js-form,
.greeings{
text-align: center;
display: none;
}
input {
background: none;
appearance: none;
border: 0;
font-size: 1.3em;
color: white;
border-bottom: 2px solid white;
}
input::placeholder{
color: white;
}
button{
background: none;
border: 0;
}
.js-toDoForm,
.js-toDoList{
text-align: center;
}
li{
list-style: none;
color: aliceblue;
font-size: 1.5em;
padding-bottom: 0.6em;
}
li:hover{
font-size: 1.55em;
background-color: rgba(0, 0, 0, 0.4);
}
.js-grettings{
text-align: center;
font-size: 2em;
color: white;
}
.showing{
display: block;
}
.js-weather{
color: white;
font-size: 1em;
display: block;
text-align: right;
margin: 0.5em;
}
@keyframes fadeIn{
from{
opacity: 0;
}
to{
opacity: 1;
}
}
.bgImage{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: auto;
z-index: -1;
animation: fadeIn .4s linear;
}