-
Notifications
You must be signed in to change notification settings - Fork 24
/
style.css
147 lines (131 loc) · 2.93 KB
/
style.css
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
/**
* style.css for Plugin nspages
*
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
* @author Daniel Schranz <[email protected]>
*
*/
/* the headlines (categories and pages in this category) */
.catpageheadline {
text-decoration: underline;
font-size: x-large;
clear: left;
margin: 0 0 0.7em 0;
}
/* the letters to indicate the following pages start with a new letter */
.catpagechars {
font-weight: bold;
}
.catpagecol {
position: relative;
float: left;
}
/* to make sure anything after the index will be written beneath */
.catpageeofidx {
clear: left;
}
div.catpagecol ul.nspagesul {
margin-bottom: 0;
}
/* below: all the styles for the usePictures mode */
div.nspagesPicturesModeMain a:hover {
background-color:#f4ff4f;
}
div.nspagesPicturesModeMain a {
padding:5px;
color: #ff0000;
background-color:#eee;
font-size: 100%;
width:32%;
max-width: 350px;
height:230px;
float:left;
margin:5px;
}
div.nspagesPicturesModeImg {
padding:5px;
overflow: hidden;
background-size: cover;
background-position: 50% 50%;
width: 100%;
height: 220px;
float:left;
}
.nspagesPicturesModeTitle {
background-color:#f4ff4f;
display:block;
overflow: hidden;
font-size: 16px;
font-weight: bold;
text-align: left;
color: #444;
font-family: 'Lato', 'Arial', sans-serif;
text-decoration: none;max-width: 320px;
margin-left: -5px;
margin-top: 165px;
padding-left: 3px;
}
.nspagesPicturesDate {
overflow: hidden;
font-size: 11px;
font-weight: normal;
text-align: left;
color: #eee;
font-family: 'Lato', 'Arial', sans-serif;
text-decoration: none;
background: black;
padding-right: 10px;
padding-left:5px;
margin-left: -5px;
}
/* ---------- RTL --------------*/
[dir=rtl] div.nspagesPicturesModeMain a:hover {
background-color:#f4ff4f;
}
[dir=rtl] div.nspagesPicturesModeMain a {
padding:5px;
color: #ff0000;
background-color:#eee;
font-size: 100%;
width:32%;
max-width: 350px;
height:230px;
float:left;
margin:5px;
}
[dir=rtl] div.nspagesPicturesModeImg {
padding:5px;
overflow: hidden;
background-size: cover;
background-position: 50% 50%;
width: 100%;
height: 220px;
float:left;
}
[dir=rtl] .nspagesPicturesModeTitle {
background-color:#f4ff4f;
display:block;
overflow: hidden;
font-size: 16px;
font-weight: bold;
text-align: left;
color: #444;
font-family: 'Lato', 'Arial', sans-serif;
text-decoration: none;max-width: 320px;
margin-left: -5px;
margin-top: 165px;
padding-left: 3px;
}
[dir=rtl] .nspagesPicturesDate {
overflow: hidden;
font-size: 11px;
font-weight: normal;
text-align: left;
color: #eee;
font-family: 'Lato', 'Arial', sans-serif;
text-decoration: none;
background: black;
padding-right: 10px;
padding-left:5px;
margin-left: -5px;
}