-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
126 lines (118 loc) · 2.21 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-image: url(bacground.png);
background-size: cover;
background-position: center;
}
header{
width: 100%;
position: sticky;
top:0;
z-index: 1;
background-color: transparent;
}
.container{
height: 10vh;
width: 100%;
margin: 0 auto;
padding: 0 50px;
}
.logo{
display: flex;
gap: 14px;
align-items: center;
}
.logo img{
height: 100px;
width: 150px;
display: block;
margin-top:40px;
filter: drop-shadow(30px 30px 50px rgb(21, 15, 208));
}
#sign{
height: 50px;
width: 200px;
margin-right:1px;
}
.box p{
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 40px;
font-weight: 500;
cursor: default;
text-align: center;
margin-top: 2%;
}
a{
text-decoration: none;
color: white;
}
ul{
display: flex;
gap: 14px;
list-style: none;
}
li{
font-size: 30px;
}
nav{
display: 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(10px 20px 15px rgb(247, 247, 247));
}
.content{
width: 100%;
height: 100%;
display: block;
margin: auto;
position: absolute;
top:0;
left:0;
}
.content .box{
justify-content: center;
display: flex;
flex-direction: column;
width: 400px;
margin: auto;
height:100%;
}
.todo{
display: flex;
padding: 15px;
}
.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(6, 6, 6);
}
.todo_checkbox{
cursor: inherit;
}
.todo:has(.todo_checkbox:checked){
color: rgb(4, 3, 2);
background: rgb(249, 247, 247);
text-decoration: line-through 1.5px;
order: 1;
}