forked from VitorCarvalho67/Boot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_tableCoordenador.scss
68 lines (58 loc) · 1.32 KB
/
_tableCoordenador.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
main {
height: calc(100vh - 80px);
background-color: $primary-color-dark;
@include flex-center;
}
.path {
width: 100%;
@include flex(row, flex-start, center);
font-size: 0.9rem;
@include font-inter(300);
margin-bottom: 20px;
> p {
@include flex(column, center, center);
@include font-inter(400);
&:after {
width: 100%;
height: 3px;
margin-top: 3px;
background-color: $secondary-color-orange;
}
&:hover::after {
animation: none;
}
}
img {
@include flex(column, center, center);
width: 15px;
transform: rotate(180deg);
filter: invert(100%);
margin-inline: 20px;
}
}
.table {
display: flex;
flex-direction: column;
width: 100%;
.table-header {
border-left: 3px solid $secondary-color-orange;
.table-cell {
@include font-inter(600);
}
}
.table-row {
display: flex;
flex-direction: row;
border-bottom: 1px dashed $font-color-dark-2;
}
.table-row1{
border-bottom: 0px solid $font-color-dark;
}
.table-cell {
flex: 1;
padding: 8px;
font-size: 1rem;
@include font-inter(300);
color: $font-color-dark;
}
}