1/* =NS Pages Plugin
2----------------------------------------------- */
3
4.dokuwiki {
5
6    .nspagesPicturesModeMain {
7
8        a {
9            border-radius: 20px;
10            border-color: @ini_text_alt;
11            transition: all 0.5s ease;
12            max-width: none;
13            margin: 0px;
14            padding: 8px;
15            width: 33.33%;
16            background-color: transparent;
17            height: 250px;
18
19            .nspagesPicturesModeImg {
20                border-radius: 20px;
21                border-width: 4px !important;
22                border-color: @ini_text_alt;
23                border: 4px solid @ini_text_alt;
24                height: 100%;
25                transition: inherit;
26
27                .nspagesPicturesModeTitle {
28                    background-color: @ini_text_alt;
29                    color: @ini_background;
30                    padding: 4px 16px;
31                    border-top-right-radius: 16px;
32                    border-bottom-right-radius: 16px;
33                    transition: inherit;
34
35                    max-height: 32px;
36                    overflow: hidden;
37
38                    &.multi-line {
39                        max-height: 56px;
40                        border-bottom-right-radius: 0px;
41                    }
42                }
43            }
44        }
45        a:hover {
46            background-color: transparent;
47
48            .nspagesPicturesModeImg {
49                border-color: @ini_theme_color;
50
51                .nspagesPicturesModeTitle {
52                    background-color: @ini_theme_color;
53                }
54            }
55        }
56    }
57}
58
59/* 960px > x */
60@media only screen and (max-width: 959px) {
61    .dokuwiki {
62        .nspagesPicturesModeMain {
63            a {
64                width: 100%;
65            }
66        }
67    }
68}
69