-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
105 lines (84 loc) · 1.49 KB
/
Copy pathstyle.css
File metadata and controls
105 lines (84 loc) · 1.49 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
100
101
102
103
104
105
*,
*::after,
*::before {
box-sizing: border-box;
}
.block-interface {
position: fixed;
width: 120%;
height: 120vh;
top: -20px;
left: -20px;
background-color: rgba(0, 0, 0, 0.178);
}
.todo-list {
background-color: rgb(0, 132, 255);
width: 400px;
margin: 0 auto;
padding: 20px;
}
.day {
background-color: rgba(255, 255, 255, 0.397);
padding: 15px;
}
.day__date {
background-color: rgba(255, 255, 255, 0.548);
padding: 10px;
}
.list {
/* reset */
padding: 0;
margin: 0;
list-style: none;
/* styles */
}
.list-item {
padding: 5px 10px;
background-color: rgba(255, 255, 255, 0.548);
margin: 5px 0;
display: flex;
justify-content: space-between;
}
.list-item--done .list-item__text {
text-decoration: line-through;
}
.list-item:last-child {
margin-bottom: 0;
}
/* modal */
.modal {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 1000;
padding: 15px;
background-color: rgb(148, 148, 148);
}
.modal__title {
margin-bottom: 10px;
}
.modal__input {
resize: none;
width: 200px;
height: 200px;
font-family: sans-serif;
}
.modal__button-container {
display: flex;
justify-content: space-between;
}
.modal__button {
width: 48%;
}
/* context menu */
.context-menu {
width: 120px;
position: fixed;
background-color: #fff;
}
.context-menu__button {
display: block;
width: 90%;
margin: 5px auto;
}