-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss.css
127 lines (111 loc) · 1.97 KB
/
css.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
header, main, footer{
margin: 10px;
}
.container{
width: 855px;
margin: 10px auto;
}
.todos-dones{
margin-top:35px;
}
.todos-dones ul{
border-left: 2px solid gray;
border-right: 2px solid gray;
border-bottom: none ;
border-top: none;
margin:3px;
}
.todos-dones ul li input{
width: 20px;
height: 20px;
}
.container h1{
text-align: center;
}
.todo-input, .add-btn{
height: 50px;
}
.todo-input{
width: 520px;
background-color: #FAEBD7;
font-size: 2em;
font-family: monospace;
color: coral;
text-align: center;
border-radius: 10px;
}
.todo-input:focus, select:focus{
border-radius: 10px;
border-color: beige;
background-color: #faebd1;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.add-btn{
float:right;
width: 255px;
text-align: center;
text-decoration: underline;
color: wheat;
background-color: darkseagreen;
font-family: serif bold;
font-size: 2em;
border-radius: 10px;
box-shadow: gray;
}
.container .todo{
float:left;
width: 300px;
margin: 0px auto;
}
.container .done{
float: right; width: 300px;
margin: 0px auto;
}
.todo li, .done li{
list-style: none;
margin:3px;
}
.todo li label , .done li label{
font-size: 35px;
color: darkgoldenrod;
background-color: beige;
}
.done li label{
text-decoration: line-through;
color: darkgray;
}
fieldset{
border: 5px solid bisque;
}
legend{
color: gray;;
}
.todos-text{
text-align: center;
}
.dones-text{
float:right;
}
.validation{
width: 200px;
z-index: 8000000;
background-color: rgb(239, 229, 245);
margin: 40px;
padding: 1px;
border-radius: 35px;
position: absolute;
top: 100px;
left: 525px;
}
.validation main{
background-color: pink;
border-radius: 35px;
}
.validation main p{
color:darkred;
margin:2px;
text-align: center;
border-radius: 2px;
}