blob: 639f83b389d35873502bce81d363487990193df7 (
plain)
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
|
@import "../globalCssVariables";
.link-container {
width: 100%;
height: 50px;
display: flex;
flex-direction: row;
border-top: 0.5px solid #bababa;
}
.info-container {
width: 65%;
padding-top: 5px;
padding-left: 5px;
display: flex;
flex-direction: column
}
.link-name {
font-size: 11px;
}
.doc-name {
font-size: 8px;
}
.button-container {
width: 35%;
padding-top: 8px;
display: flex;
flex-direction: row;
}
.button {
height: 20px;
width: 20px;
margin: 8px 4px;
border-radius: 50%;
opacity: 0.9;
pointer-events: auto;
background-color: $dark-color;
color: $light-color;
text-transform: uppercase;
letter-spacing: 2px;
font-size: 60%;
transition: transform 0.2s;
}
.button:hover {
background: $main-accent;
cursor: pointer;
}
// .fa-icon-view {
// margin-left: 3px;
// margin-top: 5px;
// }
.fa-icon-edit {
margin-left: 6px;
margin-top: 6px;
}
.fa-icon-delete {
margin-left: 7px;
margin-top: 6px;
}
|