forked from agorf/thyme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththyme.css
92 lines (78 loc) · 1.12 KB
/
thyme.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
body {
font-family: sans-serif;
margin: 0;
padding: 0;
}
a {
color: #00f;
}
#pane {
bottom: 0;
left: 0;
position: absolute;
right: 0;
top: 0;
}
#thumbs {
list-style: none;
margin: 0;
overflow: auto;
padding: 10px;
}
#thumbs li {
float: left;
margin: 10px;
}
#thumbs li img {
border-radius: 5px;
}
#thumbs li h2 {
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
#thumbs li p {
border-top-right-radius: 5px;
}
.thumb {
width: 200px;
height: 200px;
display: block;
position: relative;
}
.thumb h2 {
position: absolute;
bottom: 0;
margin: 0;
padding: 5px 10px;
width: 180px;
font-size: 13px;
font-weight: normal;
color: #fff;
background: rgba(0, 0, 0, 0.5);
}
.set.thumb p {
position: absolute;
top: 0;
right: 0;
margin: 0;
padding: 5px;
font-size: 11px;
color: #fff;
background: rgba(0, 0, 0, 0.5);
}
#photo-details {
font-size: 13px;
clear: right;
}
#photo-details th {
text-align: right;
padding: 5px 10px;
background: #ccc;
}
#photo-details td {
padding: 5px 10px;
background: #eee;
}
.big-thumb {
float: left;
}