-
Notifications
You must be signed in to change notification settings - Fork 0
/
todo.css
114 lines (114 loc) · 2.25 KB
/
todo.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
108
109
110
111
112
113
114
*{
margin:0;
padding:0;
box-sizing:border-box;
}
body{
background-image: url(https://imagesvc.meredithcorp.io/v3/mm/image?url=https://www.pcclean.io/wp-content/uploads/2020/4/NnYvuq.jpg);
background-size: cover;
background-position: inherit;
}
header{
width:100%;
position:sticky;
top:0;
z-index: 1;
background: transparent;
}
header .container{
height:10vh;
width:100%;
margin:0 auto;
padding:0 50px;
}
header .container{
position:10vh;
width: 100%;
margin:0 auto;
padding: transparent;
}
.logo{
display:flex;
align-items:center;
}
.logo img{
height: 35px;
width:30px;
}
.logo p{
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 20px;
font-weight: 500;
cursor: space;
}
a{
text-decoration: none;
color:black;
}
ul{
display:flex;
gap: 14px;
list-style: none;
}
li{
font-size: 20px;
}
nav{
display:inline-flex;
justify-content: space-between;
align-items:center;
padding: 14px;
}
.main{
width: 100%;
height:90vh;
position: absolute;
}
.main img{
display: block;
margin: auto;
height: 100%;
filter:drop-shadow(20px 20px 40px rgba(0,0,0,0.859))
}
.content{
width: 100%;
height: 100%;
display: block;
margin: auto;
position: absolute;
top:0;
left:0;
}
.content .container{
justify-content: center;
width: 300px;
height: 100%;
display: flex;
margin: auto;
flex-direction: column;
}
.todo{
cursor:url(https://cdn.custom-cursor.com/packs/5269/minimal-viking-helmet-pack.png)6,19,auto;
display: flex;
padding: 14px;
}
.todo_value{
cursor: inherit;
background: transparent;
border: none;
outline: none;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: 15px;
font-weight: bold;
flex-grow: 1;
border-bottom: 2px solid rgb(94,41,21);
}
.todo_checkbox{
cursor: inherit;
}
.todo:has(.todo_checkbox:checked){
color: rgb(84,35,0);
background: rgba(0,0,0,0.13);
text-decoration: line-through 1.5px;
order:1;
}