-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarketplace.css
64 lines (64 loc) · 1023 Bytes
/
marketplace.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
body {
margin: 0;
}
#header {
margin: 30px 10% 0;
position: relative;
}
#header::after {
display: block;
content: " ";
clear: both;
}
#logo {
font-size: x-large;
font-weight: bold;
font-variant: small-caps;
float: left;
}
#searchContainer {
float: right;
margin-top: 6px;
}
.app {
margin: 30px 0;
padding: 8px 10% 8px calc(10% + 74px);
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
text-align: left;
font-size: x-small;
background-image: url(crisp_paper_ruffles_horizontal.png);
position: relative;
min-height: 64px;
}
.app img {
position: absolute;
left: 10%;
}
.app .name {
font-size: 16px;
font-weight: bold;
}
.app:not(.expanded) .description * {
display: inline;
}
.app .expandLink {
cursor: pointer;
position: absolute;
bottom: 8px;
right: 10%;
}
.app .installLink {
margin-top: 18px;
font-size: x-small;
position: absolute;
bottom: 8px;
}
.app.expanded {
white-space: pre-wrap;
}
.app.expanded .description {
margin-bottom: 30px;
display: inline-block;
}