-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
122 lines (102 loc) · 1.44 KB
/
index.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
120
121
122
body {
background-color: #2c3e50;
color: white;
}
.form,
.greetings {
display: none;
}
.showing {
display: block;
}
@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.5s linear;
}
.container {
position: relative;
text-align: center;
top: 100px;
}
.js-clock {
font-size: 60px;
}
.js-weather {
position: fixed;
font-size: 20px;
font-weight: bold;
right: 0;
top: 0;
margin: 15px;
text-align: right;
}
.js-icon {
position: fixed;
right: 70px;
top: 3px;
}
li {
list-style-type: none;
}
.input-name,
.input-toDoList {
font-size: 20px;
text-align: center;
border: 0;
outline: 0;
border-bottom: 3px solid white;
background-color: transparent;
color: white;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
color: white;
opacity: 1; /* Firefox */
}
h1 {
margin-bottom: 10px;
}
.js-greetings {
font-size: 45px;
margin: 10px;
}
.delBtn {
background-color: transparent;
border: 0;
}
.line-through {
text-decoration-line: line-through;
}
.js-toDoList {
font-size: 20px;
}
.fa-edit {
position: relative;
top: 0px;
right: 0px;
float: right;
font-size: 20px;
cursor: pointer;
}
.fa-edit:hover {
color: orange;
}
.greeting-container {
display: inline-flex
}
.js-toDoList li label {
cursor: pointer;
font-weight: bold;
}