-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
103 lines (87 loc) · 1.77 KB
/
style.css
File metadata and controls
103 lines (87 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
100
101
102
103
.progress-bar {
flex-grow: 1;
height: 8px;
background-color: #e0e0e0;
border-radius: 4px;
overflow: hidden;
margin-top: 4px;
}
.progress-bar-inner {
height: 100%;
}
.mk-card-wrap {
background-color: var(--u-color-14) !important;
border-radius: 16px !important;
}
.t-Card-header {
display: flex;
align-items: center;
padding: 16px;
}
.t-Card-header .mk-title {
font-weight: bold;
font-size: 16px;
}
.t-Card-header .mk-subtitle {
margin: 0px !important;
font-size: 14px;
}
.progress-bar-container {
margin-top: 16px;
}
.t-Card-body {
padding: 24px !important;
}
.time-badge {
display: flex;
}
.avatars {
overflow: auto;
}
.mk-details-container {
display: flex;
margin-top: 16px;
padding-top: 16px;
justify-content: space-between;
align-items: center;
width: 100%;
}
.mk-details {
width: 100%;
}
.mk-delayed {
display: inline-flex;
align-items: center;
background-color: #ffece6; /* Color de fondo naranja claro */
padding: 4px 12px;
border-radius: 16px;
font-size: 14px;
color: #e67e22; /* Color del texto naranja */
}
.mk-good {
display: inline-flex;
align-items: center;
background-color: #fff; /* Color de fondo naranja claro */
padding: 4px 12px;
border-radius: 16px;
font-size: 14px;
color: var(--u-normal-text); /* Color del texto naranja */
}
.mk-ontime {
display: inline-flex;
align-items: center;
background-color: #fff; /* Color de fondo naranja claro */
padding: 4px 12px;
border-radius: 16px;
font-size: 14px;
color: var(--u-normal-text); /* Color del texto naranja */
}
.mk-delayed .fa{
margin-right: 4px;
}
.mk-good .fa{
margin-right: 4px;
}
.mk-ontime .fa{
margin-right: 4px;
}