-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
99 lines (95 loc) · 1.77 KB
/
style.css
File metadata and controls
99 lines (95 loc) · 1.77 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
89
90
91
92
93
94
95
96
97
98
99
*{
/* outline: 2px solid teal; */
font-family: Nunito, sans-serif;
}
body{
margin: 0;
background-color: #ddd;
}
#mainContainer{
position: absolute;
left: 50%;
top: 50%;
width: 500px;
height: 250px;
transform: translate(-50%, -50%);
padding: 35px;
background-color: #ddd;
border-radius: 7px;
box-shadow: 10px 20px 20px rgba(0, 0, 0, 0.15);
}
#inputContainer{
display: grid;
margin: 0 auto;
}
#txtNewEntry{
font-size: 14pt;
background-color: #444;
color: #888;
border: none;
border-radius: 50px;
padding: 10px 20px;
outline: none;
margin-bottom: 15px;
}
#txtNewEntry::placeholder{
color: #888;
}
#txtNewEntry:focus{
background-color: #3b3b3b;
color: #bbb;
}
#todoContainer{
display: grid;
row-gap: 5px;
background-color: #444;
border-radius: 7px;
box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.07);
max-height: 300px;
overflow: auto;
overflow-x: auto;
}
#todoContainer::-webkit-scrollbar{
width: 7px;
}
#todoContainer::-webkit-scrollbar-thumb {
border-radius: 10px;
background-color: #333;
border: solid 3px transparent;
}
.todoItem{
padding: 10px 20px;
font-size: 14pt;
color: #bbb;
text-overflow: ellipsis;
}
.todoItemSelect{
text-decoration: line-through;
cursor: pointer;
background-color: #3b3b3b;
color: #777;
}
#noNotes{
display: grid;
text-align: center;
color: #888;
font-size: 18pt;
}
.footer{
position: absolute;
bottom: 10px;
left: 50%;
transform: translateX(-50%);
color: #ff3333;
}
@media (max-width: 450px){
body{
background-color: #333;
}
#mainContainer{
width: 80vw;
height: 85vh;
border-radius: 0;
box-shadow: unset;
}
}