-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAssetDisplay.css
57 lines (50 loc) · 1.09 KB
/
AssetDisplay.css
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
.asset-display{
display: flex;
justify-content: space-between;
margin-right: 50px;
flex: 1;
padding: 10px;
padding: 20px;
cursor: pointer;
-webkit-box-shadow: 2px 4px 10px 1px rgba(0,0,0,0.47);
box-shadow: 2px 4px 10px 1px rgba(201,201,201,0.47);
border-radius: 5px;
border: 0.5px solid grey;
height: 100px;
background-color: #fff;
}
.link{
color: black;
text-decoration: none;
}
.bottom {
font-size: small;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
/* padding: 10px; */
/* display: flex;
flex-direction: column; */
}
.image {
width: 100;
}
.asset-name{
font-weight: bold;
}
.user-name{
color: grey;
}
.asset-display:hover{
/* background-color: black; */
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
color: white;
/* width: 260px; */
}
.asset-display .img:hover{
/* background-color: black; */
/* box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
color: white; */
width: 300px;
}