Welcome to mirror list, hosted at ThFree Co, Russian Federation.

style.rtl.css « css « assets - github.com/lxndrblz/anatole.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 50fbe3f6c1fd84405e4119eb3d9a0313c36f5e72 (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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
@charset "UTF-8";

body {
  font-family: 'Tajawal', sans-serif;
  font-size: 1.5rem;
}

blockquote {
  border-right: 0.25em solid var(--blockquote-border-color);
  border-left: inherit;
}

.tag,
.category {
  margin: 5px 0 5px 8px;
}

.info i {
  margin-left: 5px;
  margin-right: inherit;
}

.sidebar {
  right: 0;
  border-left: 1px solid var(--border-color);
  border-right: inherit;
}

.sidebar .social-links i {
  margin-left: 3px;
  margin-right: inherit;
}

.sidebar .logo-title .title h3 {
  text-transform: capitalize;
  letter-spacing: 1.5px;
}

.post .post-title h1 {
  text-transform: capitalize;
}

.post .post-title h3 {
  text-transform: capitalize;
}

.post .post-footer .info .separator a {
  margin-left: 0.2em;
  margin-right: inherit;
}
.post .post-footer .meta .info .date {
  margin-left: 10px;
  margin-right: 5px;
}

.post figure.right {
  float: left;
  margin-right: 1.5em;
  margin-left: inherit;
}
.post figure.left {
  float: right;
  margin-left: 1.5em;
  margin-right: inherit;
}

.info span {
  margin-left: 0.5em;
  margin-right: inherit;
}

.post .post-footer .meta i {
  margin-left: 6px;
  margin-right: inherit;
}

.post .post-footer .tags ul li {
  padding-left: 5px;
  padding-right: inherit;
}

.pagination .pre {
  float: right;
}
.pagination .next {
  float: left;
}

.list-with-title .listing .listing-post .post-time {
  float: left;
  text-align: left;
}

@media screen and (min-width: 961px), print {
  header {
    position: fixed;
    left: 0;
    right: auto;
  }
  header .nav__list li {
    padding-left: 20px;
  }
  header .nav__list li:not(:last-of-type) {
    padding-right: inherit;
  }
}

@media (min-width: 1921px) {
  .sidebar {
    padding-right: 17%;
    padding-left: 3%;
  }
  .content {
    padding-right: inherit;
    padding-left: 20%;
  }
}