-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
107 lines (96 loc) · 2.09 KB
/
style.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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
font-family: 'Poppins', sans-serif;
box-sizing:border-box;
}
body{
width: 100%;
height: 100vh;
padding: 10px;
background: linear-gradient(to bottom, #dddcd9 , #4B6587 100%);
}
#wrapper{
box-shadow:2px 3px 2px 5px #969696;
border-radius: 50px 0px 50px 0px;
width:500px ;
height: 600px;
padding:20px;
margin-top: 0px;
margin-bottom: 100px;
margin-right: 150px;
margin-left: 400px;
background: #ccc;
box-shadow: 4px 3px 8px 1px #969696;
-webkit-box-shadow: 4px 3px 8px 1px #969696;
}
.header{
text-align: center;
text-shadow: lightgreen;
box-shadow: 4px 3px 8px 1px #969696;
/*-webkit-box-shadow: 4px 3px 8px 1px #B0000C;*/
border-radius:5px;
color:#00A19D;
}
#enterTask{
text-align: center;
border-radius: 22px;
border-color:transparent;
outline:transparent;
height:30px;
margin:5px;
}
#priority{
margin-left:10px;
border-radius:22px;
border-color:transparent;
outline:transparent;
height:30px;
margin:5px;
}
#button{
justify-items: center;
box-shadow: 4px 3px 8px 1px #969696;
-webkit-box-shadow: 4px 3px 8px 1px #969696;
margin-right: 80px;
margin-left:200px;
border-radius:10px;
box-shadow: lightslategrey;
background-color:#11324D ;
color:white;
height:36px;
width:50px;
}
#button:hover{
background-color:mediumblue;
}
#todolist {
cursor: pointer;
position: relative;
padding: 12px 8px 12px 40px;
list-style-type: none;
background: #eee;
font-size: 18px;
transition: 0.2s;
/* make the list items unselectable */
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.close {
position:absolute;
right:500px ;
}
.close:hover {
background-color: #f44336;
color: white;
size: 10px;
}
ul li:hover{
background: #FFB344;
}
ul li.checked {
background: rgb(0, 197, 82);
color: rgb(246, 238, 238);
text-decoration: line-through;
}