-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
88 lines (79 loc) · 1.66 KB
/
Copy pathstyle.css
File metadata and controls
88 lines (79 loc) · 1.66 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
76
77
78
79
80
81
82
83
84
85
86
87
88
* {
margin: 0;
padding: 0;
box-sizing: content;
}
body {
margin-top: 3rem;
display: flex;
flex-direction: column;
justify-content: center;
background: url(https://images.unsplash.com/photo-1484480974693-6ca0a78fb36b?q=80&w=872&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D)
center center/cover fixed;
align-items: center;
}
.dancing-script {
font-family: "Dancing Script", cursive;
font-optical-sizing: auto;
font-weight: 700;
font-style: oblique;
}
.heading-container {
width: 70%;
border-radius: 10px;
text-align: center;
color: rgba(0, 0, 0, 0.9); /* faded white */
padding: 1vw;
text-shadow: 20px 30px 10px;
}
.main-container {
display: flex;
flex-direction: column;
width: 70%;
margin-top: 2rem;
border-radius: 10px;
padding: 1vw;
display: block;
}
.list-container {
width: 100%;
min-height: 300px;
border-radius: 5px;
box-shadow: 0 0 10px;
display: block;
word-break: break-word;
overflow-wrap: break-word;
}
.task-container {
display: flex;
flex-direction: row;
gap: 1rem;
margin-bottom: 20px;
}
#taskInput {
border-radius: 5px;
padding: 1vw;
width: 100%;
background-color: transparent;
box-shadow: 0 0 10px;
color: #222;
}
#taskInput:hover {
transition: all 1s ease;
transform: ;
}
#taskInput::placeholder {
color: rgba(0, 0, 0, 0.9); /* faded white */
}
.add-button {
border-radius: 5px;
font-weight: bold;
background-color: transparent;
color: rgba(0, 0, 0, 0.9); /* faded white */
box-shadow: 0 0 10px rgba(10, 10, 10, 0.9);
cursor: pointer;
}
.add-button:hover {
transition: all 0.3s ease;
transform: scale(0.9);
}