-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
90 lines (71 loc) · 1.4 KB
/
styles.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container{
width: 100%;
min-height: 100vh;
background-image: linear-gradient(135deg , purple , green);
}
.todo-app{
width: 100%;
max-width: 39rem;
background-color: white;
position: relative;
margin: auto;
top: 10rem;
border: .1rem solid black;
border-radius: .6rem;
padding: 10px;
/* display: flex; */
flex-direction: column;
padding: 2rem;
align-items: center;
}
.todo-list{
text-align: center;
}
.btn{
background-image: linear-gradient(orange,white,green);
position: relative;
top: .14rem;
right: 4.5rem;
font-size: 1.2rem;
padding: .5rem .9rem;
border: .1rem solid black;
cursor: pointer;
outline: none;
border-radius: .4rem;
}
#input-box{
/* border: .2rem solid black; */
border: none;
outline: none;
background-color: rgb(233, 233, 233);
padding: .9rem;
width: 25rem;
margin-left: 3rem;
border-radius: .7rem;
}
.checked{
text-decoration: line-through;
list-style: none;
}
li{
margin: .8rem 0.8rem;
cursor: pointer;
}
.span{
background-color: rgb(100, 151, 198);
position:absolute;
left: 35rem;
color: white;
padding: .1rem 0.4rem;
border: .01rem solid black;
border-radius: 10rem;
}
.span:hover{
cursor: pointer;
background-color: black;
}