-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
85 lines (73 loc) · 1.29 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
body {
background-color: #2c3e50;
color: white;
/*transition: color .5s ease-in-out;*/
display:flex;
width:100%;
height:100%;
justify-content: center;
align-items: center;
box-sizing: border-box;
margin: 0px;
font-family: 'Lobster', cursive;
font-size: 5vmin;
text-shadow: 1px 1px 5px #2c3e50;
}
.container {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.centered {
text-align: center;
}
.btn{
cursor:pointer;
}
.clicked{
color: #7f8c8d;
}
.form, .greetings{
display:none;
}
.js-toDoList {
font-size: 80%;
}
input[type=text]{
width: 100%;
border-top: none;
border-left:none;
border-right: none;
border-bottom: 2px solid white;
background-color: transparent;
font-style: italic;
font-family: 'Lobster', cursive;
font-size: 5vmin;
text-align: center;
color: rgb(146, 144, 141);
text-shadow: 1px 1px 5px #2c3e50;
}
input::placeholder{
color:white;
}
.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 1s linear;
}