blob: 27d250ce7ae7c512d6a05b8c888ae617d58e719b (
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
42
43
44
45
46
47
48
|
@import '../vars';
textarea {
-webkit-overflow-scrolling: touch;
}
.head {
padding: 0;
}
// header
.head-logo {
position: static;
display: block;
overflow: hidden;
white-space: nowrap;
padding: 18px $side-padding 7px;
}
.head-logo::after {
display: none;
}
.head-items {
float: none;
padding: 0 $side-padding 0 $side-padding - 2px;
white-space: nowrap;
overflow-x: auto;
overflow-y: hidden;
}
a.head-item {
float: none;
display: inline-block;
}
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;
}
// blog
.blog-tags {
display: none;
}
.blog-list.withtags {
margin-right: 0;
}
|