-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
102 lines (86 loc) · 1.23 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
body{
color: #636e72;
animation: fadeIn .8s linear;
}
.js-weather{
display: block;
margin-top: 1%;
margin-right: 1%;
color: #ffffff;
font-size: 25px;
text-align: right;
}
.js-clock {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
width: 500px;
height: 500px;
margin: auto;
text-align: center;
}
h1{
color : #ffffff;
font-size: 100px;
}
.js-toDoList {
color: #ffffff;
font-size: 30px;
list-style-type: decimal;
}
.js-toDoList button{
color: #b71540;
background: none;
border: none;
font-size: 30px;
cursor: pointer;
}
.js-toDoList button:hover{
font-size: 33px;
}
.form,
.greetings {
display: none;
}
input{
text-align: center;
background: transparent;
color: #ffffff;
font-size: 30px;
border: none;
border-bottom: 3px solid #636e72;
margin-bottom: 8%;
padding: 10px;
transition: .6s;
outline: none;
}
input::placeholder{
color: #d4d3d3e8;
}
input:focus{
border-bottom: 3px solid #ffffff;
color: #ffffff;
}
.showing {
display: block;
color: #ffffff;
font-size: 40px;
}
@keyframes fadeIn{
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.bgImage{
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}