1/**
2 * style.css for Plugin nspages
3 *
4 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
5 * @author     Daniel Schranz <xla@gmx.at>
6 *
7 */
8
9/* the headlines (categories and pages in this category) */
10.catpageheadline {
11    text-decoration: underline;
12    font-size: x-large;
13    clear: left;
14    margin: 0 0 0.7em 0;
15}
16
17/* the letters to indicate the following pages start with a new letter */
18.catpagechars {
19    font-weight: bold;
20}
21
22.catpagecol {
23    position: relative;
24    float: left;
25}
26
27/* to make sure anything after the index will be written beneath */
28.catpageeofidx {
29    clear: left;
30}
31
32div.catpagecol  ul.nspagesul {
33  margin-bottom: 0;
34}
35
36/* below: all the styles for the usePictures mode */
37div.nspagesPicturesModeMain a:hover {
38    background-color:#f4ff4f;
39}
40
41div.nspagesPicturesModeMain a {
42    padding:5px;
43    color: #ff0000;
44    background-color:#eee;
45    font-size: 100%;
46    width:32%;
47    max-width: 350px;
48    height:230px;
49    float:left;
50    margin:5px;
51}
52
53div.nspagesPicturesModeImg {
54    padding:5px;
55    overflow: hidden;
56    background-size: cover;
57    background-position: 50% 50%;
58    width: 100%;
59    height: 220px;
60    float:left;
61}
62
63.nspagesPicturesModeTitle {
64background-color:#f4ff4f;
65    display:block;
66    overflow: hidden;
67    font-size: 16px;
68    font-weight: bold;
69    text-align: left;
70    color: #444;
71    font-family: 'Lato', 'Arial', sans-serif;
72    text-decoration: none;max-width: 320px;
73    margin-left: -5px;
74    margin-top: 165px;
75    padding-left: 3px;
76}
77
78.nspagesPicturesDate {
79    overflow: hidden;
80    font-size: 11px;
81    font-weight: normal;
82    text-align: left;
83    color: #eee;
84    font-family: 'Lato', 'Arial', sans-serif;
85    text-decoration: none;
86    background: black;
87    padding-right: 10px;
88    padding-left:5px;
89    margin-left: -5px;
90}
91
92/* ---------- RTL --------------*/
93
94[dir=rtl] div.nspagesPicturesModeMain a:hover {
95    background-color:#f4ff4f;
96}
97
98[dir=rtl] div.nspagesPicturesModeMain a {
99    padding:5px;
100    color: #ff0000;
101    background-color:#eee;
102    font-size: 100%;
103    width:32%;
104    max-width: 350px;
105    height:230px;
106    float:left;
107    margin:5px;
108}
109
110[dir=rtl] div.nspagesPicturesModeImg {
111    padding:5px;
112    overflow: hidden;
113    background-size: cover;
114    background-position: 50% 50%;
115    width: 100%;
116    height: 220px;
117    float:left;
118}
119
120[dir=rtl] .nspagesPicturesModeTitle {
121background-color:#f4ff4f;
122    display:block;
123    overflow: hidden;
124    font-size: 16px;
125    font-weight: bold;
126    text-align: left;
127    color: #444;
128    font-family: 'Lato', 'Arial', sans-serif;
129    text-decoration: none;max-width: 320px;
130    margin-left: -5px;
131    margin-top: 165px;
132    padding-left: 3px;
133}
134
135[dir=rtl] .nspagesPicturesDate {
136    overflow: hidden;
137    font-size: 11px;
138    font-weight: normal;
139    text-align: left;
140    color: #eee;
141    font-family: 'Lato', 'Arial', sans-serif;
142    text-decoration: none;
143    background: black;
144    padding-right: 10px;
145    padding-left:5px;
146    margin-left: -5px;
147}
148