-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
121 lines (108 loc) · 1.75 KB
/
style.scss
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
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
img {
max-width: 100%;
}
a {
text-decoration: none;
}
li {
list-style: none;
}
input {
outline: 0;
}
body {
background: grey;
}
// ** ** \\
.wrapper {
display: grid;
justify-content: center;
margin-top: 40px;
}
.wrapper {
&__input-create {
min-width: 230px;
background-color: wheat;
border: 1px solid;
border-radius: 2px;
}
&__add {
cursor: pointer;
background-color: rgb(2, 161, 2);
border: 0;
padding: 2px 4px;
border-radius: 3px;
transition: 0.2s ease-in-out;
color: white;
&:hover {
background-color: green;
}
}
}
.main {
background: rgb(83, 168, 133);
width: 290px;
min-height: 200px;
max-height: 300px;
overflow: auto;
padding: 5px;
border-radius: 3px;
}
.task-panel {
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid white;
padding-bottom: 5px;
margin-top: 5px;
&__number {
color: white;
}
&__input-container {
display: flex;
justify-content: center;
align-items: center;
gap: 3px;
border: 1px solid;
padding: 2px;
border-radius: 4px;
// background: teal;
}
&__input {
border: 0;
background: transparent;
border-bottom: 1px solid white;
color: black;
}
&__checkbox {
height: 15px;
width: 15px;
cursor: pointer;
background: red;
}
}
.dellete {
cursor: pointer;
background-color: rgb(250, 87, 87);
border: 0;
padding: 2px 4px;
border-radius: 3px;
transition: 0.2s ease-in-out;
color: white;
&:hover {
background-color: red;
color: black;
}
}
.create-task {
display: flex;
margin-top: 10px;
justify-content: space-between;
}