-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpalladio-list-view.css
78 lines (62 loc) · 1.25 KB
/
palladio-list-view.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[data-palladio-list-view] {
margin-bottom: 20px;
margin-top: 20px;
overflow: auto;
}
[data-palladio-list-view] .list-title {
font-size: 14px;
line-height: normal;
}
[data-palladio-list-view] .list-image {
height: 130px;
width: 100px;
float: left;
background-size: cover;
background-position: top center;
border: none;
margin-right: 10px;
background-repeat: no-repeat;
background-color: #ddd;
color: #bbb;
font-size: 12px;
padding: 20px;
text-align: center;
/* Internet Explorer 10 */
display:-ms-flexbox;
-ms-flex-pack:center;
-ms-flex-align:center;
/* Firefox */
display:-moz-box;
-moz-box-pack:center;
-moz-box-align:center;
/* Safari, Opera, and Chrome */
display:-webkit-box;
-webkit-box-pack:center;
-webkit-box-align:center;
/* W3C */
display:box;
box-pack:center;
box-align:center;
}
[data-palladio-list-view] .list-subtitle {
color: #888;
font-size: 13px;
margin-top: 5px;
}
[data-palladio-list-view] .list-text {
font-size: 12px;
margin-top: 5px;
}
[data-palladio-list-view] .list-link {
text-decoration: none;
color: black;
}
[data-palladio-list-view] .list-box {
height: 150px;
padding: 10px;
background: #e5e5e5;
margin-bottom: 15px;
}
[data-palladio-list-view] .list-box:hover {
background-color: #ccc;
}