-
Notifications
You must be signed in to change notification settings - Fork 1
/
todo3.css
72 lines (53 loc) · 1000 Bytes
/
todo3.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
body{
font-size: 16px;
font-family: A;
background: #bdc3c7; /* fallback for old browsers */
background: -webkit-linear-gradient(left, #2c3e50, #bdc3c7);
background: -o-linear-gradient(left, #2c3e50, #bdc3c7);
background: linear-gradient(to right, #2c3e50, #bdc3c7);
}
input{
margin-left: 200px;
width: 50%;
box-sizing: border-box;
height: 30px;
display:none;
}
#input{
border-radius: 25px;
border: 2px solid #73AD21;
padding: 20px;
width: 200px;
height: 150px;
}
h2{
font-size:40px;
}
#edit{
font-size:15px;
cursor:pointer;
}
.title{
color: white;
text-align: center;
}
#box{
border-radius: 25px;
border: 2px solid lightslategrey;
padding: 20px;
width: 800px;
height: 400px;
margin-left: 250px;
margin-top: 150px;
}
ol{
margin-left: 250px;
}
ol li{
list-style: none;
}
span{
color: red;
font-size: 22px;
cursor: pointer;
}