1.tumblr-post {
2    margin-bottom: 2em;
3
4    h2 {
5        white-space: nowrap;
6        overflow-x: hidden;
7        text-overflow: ellipsis;
8
9        a,
10        a:link,
11        a:hover,
12        a:visited {
13            color: @ini_text;
14            text-decoration: none;
15        }
16    }
17
18    p + blockquote {
19        margin-top: -1em;
20    }
21
22    blockquote p:last-child {
23        margin-bottom: 0;
24    }
25}
26
27.tumblr-post:hover {
28    margin-left: -16px;
29    padding-left: 10px;
30    border-left: 6px solid @ini_border;
31}
32
33.tumblr-meta {
34    margin-top: 1em;
35    dl {
36        margin: 0;
37    }
38    dt {
39        width: 8em;
40        float: left;
41    }
42    dd {
43        white-space: nowrap;
44        overflow-x: hidden;
45        text-overflow: ellipsis;
46    }
47}
48
49.tumblr-tags {
50    margin-top: 1em;
51
52    ul {
53        margin: 0;
54        list-style-type: none;
55    }
56    li {
57        margin: 0 .5em 0 0;
58        display: inline-block;
59        a,
60        a:link,
61        a:hover,
62        a:visited {
63            color: @ini_text_alt;
64            text-decoration: none;
65        }
66    }
67    li:before {
68        color: @ini_text_alt;
69        content: "#";
70    }
71}
72
73.tumblr-list {
74    table {
75        width: 100%;
76        border: none;
77    }
78    tr {
79        border-bottom: 1px dotted @ini_border;
80    }
81    td {
82        border: none;
83        vertical-align: text-top;
84    }
85
86    td.post-date {
87        min-width: 10em;
88        font-size: 80%;
89        color: @ini_text_alt;
90    }
91}
92
93.tumblr-nav {
94    clear: both;
95    text-align: center;
96
97    a {
98        display: inline-block;
99        padding: 2px 10px;
100    }
101    a:link,
102    a:visited {
103        color: @ini_text;
104        text-decoration: none;
105    }
106    a:hover {
107        text-decoration: none;
108    }
109
110    .tumblr-btn-left,
111    .tumblr-btn-right {
112        margin-bottom: .5em;
113        min-width: 8em;
114    }
115
116    .tumblr-btn-left {
117        float: left;
118        a {
119            border-left: 4px solid @ini_text;
120        }
121        a:hover {
122            border-color: @ini_link;
123        }
124    }
125
126    .tumblr-btn-right {
127        float: right;
128        text-align: right;
129        a {
130            border-right: 4px solid @ini_text;
131        }
132        a:hover {
133            border-color: @ini_link;
134        }
135    }
136
137    .tumblr-search {
138        display: inline-block;
139        margin: 0 auto;
140        border: 1px solid @ini_border;
141
142        input[type=text] {
143            padding: 2px 4px;
144            border: none;
145        }
146        button {
147            padding: 2px 6px;
148            border-width: 0 0 0 1px;
149            border-color: @ini_border;
150        }
151    }
152
153    .tumblr-clear {
154        clear: both;
155    }
156}
157