Newer
Older
@import '../../css/vars.scss';
.mat-card {
box-shadow: none;
border: solid 1px #E0E0E0;
background: #F9F9F9;
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
box-shadow: 0 -5px 5px -5px #333;
border-top: solid 1px rgba(0, 0, 0, 0.12);
position: absolute;
width: 100%;
bottom: 0;
padding: 5px;
.line {
display: flex;
div {
flex: 1;
}
}
}
.subInfos {
font-size: 12px;
color: $primary;
font-weight: bold;
}
.subInfosBottom {
font-size: 12px;
color: #666;
}
.mat-icon {
height: auto;
}
.downloadButton {
position: absolute;
right: 5px;
top: 5px;
opacity: 0.5;
transition: opacity 0.2s ease-in-out;
}
.downloadButton:hover {
opacity: 1;
transition: opacity 0.2s ease-in-out;
}