-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
75 lines (64 loc) · 1.36 KB
/
style.css
File metadata and controls
75 lines (64 loc) · 1.36 KB
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
@import url('https://fonts.googleapis.com/css2?family=The+Nautigal:wght@700&display=swap');
body{
background-color: black;
margin: 0;
}
.task_note{
width: 370px;
margin-left: 10%;
}
.first{
text-align: center;
background-image: linear-gradient(to right, #DE0C61, #E9583A, #FBC503);
font-family: 'The Nautigal', cursive;
font-style: bold;
padding: 15px;
font-size: 65px;
color: #fff;
margin-top: 5px;
letter-spacing: 5px;
}
.second{
background-image: linear-gradient(to right, #DE0C61, #E9583A, #FBC503);
text-align: center;
padding: 20px;
font-size: 30px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
font-weight: 900;
color: #fff;
}
.list-icon{
float: right;
}
.taskList{
background-color: #fff3e2;
list-style-type: none;
margin: 0;
padding: 10px;
height: 200px;
}
.taskList li{
display: block;
padding: 2px 0;
}
.six{
padding: 20px 0;
}
.brdbtn{
border: 1px solid #dbd4cc;
padding: 5px;
background: #fff;
border-radius: 5px;
}
#trash{
color: red;
}
#addplus{
position: fixed;
right: 20px;
bottom: 20px;
color: transparent;
background-image: linear-gradient(to right, #DE0C61, #E9583A, #FBC503);
-webkit-background-clip: text;
}