-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstyle.css
129 lines (123 loc) · 1.77 KB
/
style.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
body {
margin: 4px;
font-family: sans-serif;
}
a {
color: blue;
text-decoration: underline;
cursor: pointer;
}
/* Search form */
label {
white-space: nowrap
}
form input, form select, form button {
margin: 0 8px 4px 0
}
#minos,
#maxos {
width: 4em;
}
/* General layout */
#content {
margin: 20px 0;
}
/* Plist install */
#overlay {
position: fixed;
top: 0;
left: 0;
background: rgba(0, 0, 0, .6);
min-width: 100%;
min-height: 100%;
}
#installMsg {
margin: 40px auto;
max-width: 600px;
background: white;
padding: 20px 30px;
}
/* IPA entry */
h4 {
margin: 0 0 8px;
}
.entry {
display: inline-block;
margin: 4px;
width: 370px;
background: #eee;
overflow-x: scroll;
white-space: nowrap;
}
.entry>div {
display: inline-block;
margin: 8px 8px 8px 0;
vertical-align: top;
}
.entry img {
width: 74px;
height: 74px;
margin: 0 8px 2px;
border-radius: 17%;
}
.entry button {
display: block;
width: 74px;
margin: 0 auto;
}
/* Single-item page */
.single {
display: block;
width: initial;
}
.randomAction {
text-align: right;
margin: 8px 20px;
}
.randomAction button {
margin-left: 8px;
}
.itunes {
max-width: 650px;
margin: 40px auto;
}
.carousel {
display: block;
overflow: auto;
max-height: 350px;
white-space: nowrap;
}
.carousel img {
max-height: 330px;
margin: 8px;
min-width: 100px;
min-height: 100px;
}
.itunes p {
white-space: pre-wrap;
}
.no-itunes {
color: #777;
text-align: center;
}
/* Pagination */
.shortpage {
text-align: center;
margin: 30px;
}
.shortpage>span {
margin: 0 20px;
}
.shortpage>button {
font-size: 1em;
}
.shortpage>button:first-child {
float: left;
}
.shortpage>button:last-child {
float: right;
}
#pagination>a, #pagination>b {
display: inline-block;
padding: 4px;
}