blob: b6aa838238de2182edbdb4c7b293672d64eaf265 (
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
|
/*=== Configuration pages */
.post {
font-size: 1rem;
h1, h2 {
color: var(--main-font-color);
font-size: 2rem;
margin-top: 1.75rem;
font-weight: 300;
line-height: 1.2em;
}
h2 {
font-size: 1.5rem;
}
a[href="./"] {
/* This is the "Back to your feeds" button.*/
margin: 0;
padding: 0.75rem 1.5rem;
background: var(--grey-lighter);
display: inline-block;
color: var(--grey-dark);
font-size: 1rem;
border: 1px solid var(--grey-medium-light);
border-radius: 5px;
min-width: 15px;
line-height: 25px;
vertical-align: middle;
cursor: pointer;
overflow: hidden;
&:hover {
background: var(--main-first);
color: white;
border: 1px solid var(--main-first);
text-decoration: none;
}
}
}
#slider {
border-right: none;
box-shadow: 0px 6px 8px 0px rgba(0,0,0,0.35);
}
.theme-preview-list {
.preview-container {
.properties {
padding: 1rem;
background: rgba(0, 0, 0, 0.75);
color: white;
border: 0;
.page-number {
left: 1rem;
top: 1rem;
}
}
}
}
|