forked from Ishaan28malik/Hacktoberfest-2024
-
Notifications
You must be signed in to change notification settings - Fork 0
/
todos.css
101 lines (87 loc) · 1.53 KB
/
todos.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
body{
background: #50C9C3; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #96DEDA, #50C9C3); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #96DEDA, #50C9C3); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
#container{
width: 350px;
margin: 10% auto;
background: #f7f7f7;
box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
height: 350px;
}
header
{
text-align: center;
height: 100px;
background-color: steelblue;
}
header h1
{
font-size: 40px;
vertical-align: center;
padding: 20px;
}
h1{
background-color: steelblue;
color: white;
font-weight: bold;
margin: 0;
padding: 5px 10px;
text-transform: uppercase;
font-size: 24px;
letter-spacing: 1.1px;
}
.fa-plus{
float:right;
}
.fa-trash{
margin-right:20px;
background: #FA2C40;
color: white;
text-align: center;
width: 0;
display: block;
height: 25px;
transition: 0.2s;
}
li:hover fa-trash{
width: 35px;
height: 100;
cursor: pointer;
}
ul{
list-style: none;
margin: 0;
padding: 0;
}
li{
margin: 0px;
padding-top: 0px;
line-height: 40px;
height: 40px;
color: #666;
background-color: #f7f7f7;
}
li:nth-child(2n){
background-color: white;
}
input{
border: 3px rgba(0, 0, 0, 0);
width: 100%;
padding: 10px 10px 10px 20px ;
box-sizing: border-box;
color: steelblue;
font-size: 18px;
background-color: white;
}
input:focus{
border: 2.5px solid steelblue;
outline: none;
background-color: #f7f7f7;
}
.h11 {
font-size: 20px;
font-family: Arial;
color: green;
}