-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodo.css
140 lines (134 loc) · 2.66 KB
/
todo.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
body{
background-color: darkcyan;
margin-bottom: 100px;
}
#container{
/* margin:auto; */
text-align: center;
/* border: 2px solid crimson; */
/* height:400px; */
width: 90%;
}
.button{
height:40px;
width:150px;
}
#input{
margin-top:10px;
height:30px;
width:50%;
font-family: 'Courier New', Courier, monospace;
font-style: initial;
}
.button{
margin-top:10px;
color:white;
background-color: green;
}
#editButton {
background-color: darkslategray;
float: right;
height:30px;
width: 70px;
cursor: pointer;
opacity:0;
background-color: black;
color: white;
}
.button:hover{
background-color:black;
font-size: 18px;
}
#container ul li{
list-style: none;
border:0.5px solid cornflowerblue;
text-align: left;
/* margin: 2px auto ; */
/* height: 40px; */
/* for comes in/out smoothly */
transition: opacity 0.5s ease-in-out;
opacity: 0;
width:90%;
/* float: left; */
}
#container ul li#firstList {
border : 0.5px solid darkcyan;
}
#container ul li label{
/* margin: 0 auto; */
/* height: 100%; */
font-size: 16px;
vertical-align: middle;
line-height: 40px;
/* width:100%; */
/* border: 1px solid green; */
}
#container .listItem{
opacity: 1;
}
#container ul li #checkBox{
width:30px;
height: 30px;
float: left;
vertical-align: middle;
border: 1px solid black;
-webkit-appearance: none;
}
#container ul li input[name="hideCheckBox"] {
opacity: 0;
/* for first checkbox */
}
#container ul li #dateAndTime {
/* margin-left: 100px; */
float: right;
/* border: 2px solid red; */
/* width: 200px; */
}
#container ul li #checkBox:checked:after {
content: '\2714';
position: absolute;
color: blue;
font-size: 26px;
}
#container ul li input[type="checkBox"]:checked + label {
text-decoration: line-through;
color:white;
opacity: 0.4;
}
#container .controls #input:focus {
outline: 0;
}
#container #controls button {
cursor: pointer;
}
#container #controls button:hover {
transform: scale(1.07)
}
#container .listItem {
opacity: 1;
}
.visual{
opacity: 1 !important;
vertical-align: middle;
}
/* // for showing button */
.editClassButton {
opacity: 1 !important;
vertical-align: middle;
}
html {
position: relative;
min-height: 100%;
}
#footer {
background-color: dimgray;
left: 0;
bottom: 0;
position: absolute;
color:white;
text-align: center;
opacity: 0.4;
width: 100%;
height: 50px;
/* //same height as the margin to the bottom of the body */
}