-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
102 lines (89 loc) · 1.81 KB
/
styles.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
body {
font-family: 'Open Sans', sans-serif;
background: #f4f4f4;
}
.container {
max-width: 80%;
margin: auto;
min-height: initial;
position: relative;
}
.container > div {
padding-bottom: 30px;
}
h3 {
cursor: pointer;
display: inline;
}
p {
color: #333;
}
.more:after {
content: "\25BC";
font-size: 8px;
position: absolute;
right: 20px;
top: 50%;
margin-top: -10px;
font-size: 16px;
color: #333;
}
.less:after {
content: "\25B2";
font-size: 8px;
position: absolute;
right: 20px;
top: 50%;
margin-top: -10px;
font-size: 16px;
color: #333;
}
ul {
list-style-type: none;
padding-left: 0;
border-radius: 5px;
}
li {
border: #eaeaea solid 1px;
margin: 10px 0;
padding: 15px;
border-left: #5e5c7c solid 5px;
position: relative;
background: #fff;
-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.07);
-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.07);
box-shadow: 0 1px 2px rgba(0,0,0,0.07);
}
li.book {
border-left: #eb727e solid 5px;
}
li.streaming {
border-left: #a0f2d0 solid 5px;
}
.byline {
font-size: 14px;
font-style: italic;
}
select {
position: absolute;
right: 0;
top: 5px;
-webkit-appearance: button;
-webkit-border-radius: 2px;
-webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
-webkit-padding-end: 20px;
-webkit-padding-start: 2px;
-webkit-user-select: none;
background-image: url(img/arrow.png), -webkit-linear-gradient(#fff, #fff 40%, #fff);
background-position: 97% center;
background-repeat: no-repeat;
border: 1px solid #eaeaea;
color: #555;
font-size: inherit;
overflow: hidden;
padding: 5px 10px;
text-overflow: ellipsis;
white-space: nowrap;
width: 300px;
outline: none;
}