blob: d4d0d25c884c9707a39c22458712d8a385dadc14 (
plain)
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
|
@import 'vars';
textarea {
-webkit-overflow-scrolling: touch;
}
// header
.head-logo {
position: static;
display: block;
//padding-bottom: 6px;
// not very good fix:
overflow: hidden;
white-space: nowrap;
padding-bottom: 0;
}
.head-logo::after {
display: none;
}
.head-items {
float: none;
}
a.head-item:hover,
a.head-item:active {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
}
a.head-item:last-child > span {
border-right: 0;
padding-right: 12px;
}
a.head-item:first-child > span {
padding-left: 1px;
}
// blog
.blog-tags {
display: none;
}
.blog-list.withtags {
margin-right: 0;
}
|