-
Notifications
You must be signed in to change notification settings - Fork 141
Expand file tree
/
Copy pathstyle.scss
More file actions
92 lines (83 loc) · 1.54 KB
/
style.scss
File metadata and controls
92 lines (83 loc) · 1.54 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
@use "../../styles/index.scss" as *;
@use "../../styles/breakpoints.scss" as breakpoints;
.task-card {
background: $white;
box-shadow: 0px 6px 58px rgba(196, 203, 214, 0.103611);
border-radius: 24px;
padding: 22px 30px;
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 15px;
@include breakpoints.devices(sm) {
flex-direction: column;
align-items: flex-start;
}
}
.task-title {
font-size: 14px;
font-weight: 400;
color: $secondary-color;
margin-bottom: 7px;
}
.task {
font-size: 16px;
font-weight: 400;
line-height: 1.2;
color: $primary-color;
}
.priority-title {
font-size: 14px;
font-weight: 400;
color: $secondary-color;
margin-bottom: 7px;
@include breakpoints.devices(sm) {
margin-top: 15px;
}
}
.priority {
font-size: 14px;
font-weight: 700;
color: $success-color;
text-transform: capitalize;
}
.high-priority {
color: $error-color;
}
.medium-priority {
color: $warning-color;
}
.low-priority {
color: $success-color;
}
.task-status-wrapper {
width: 100px;
text-align: center;
@include breakpoints.devices(sm) {
margin-top: 15px;
text-align: left;
}
}
.status {
background: rgba(125, 133, 146, 0.14);
border-radius: 8px;
padding: 7px 14px;
color: $gray;
font-weight: 700;
font-size: 12px;
outline: none;
border: none;
cursor: pointer;
}
.progress {
min-width: 150px;
@include breakpoints.devices(sm) {
margin-top: 15px;
width: 100%;
}
}
.actions {
@include breakpoints.devices(sm) {
margin-top: 15px;
}
}