1.dokuwiki > main.notos > article.notos {
2
3    /* links */
4
5    a {
6        text-decoration: underline;
7        text-decoration-color: @ini_highlight;
8        text-decoration-thickness: 1px;
9    }
10
11    a.wikilink2 {
12        border: none;
13        opacity: 0.6;
14    }
15
16    a.wikilink2:hover,
17    a:hover {
18        color: @ini_text;
19        background-color: @ini_accent;
20        border-radius: 3px;
21        text-decoration: none;
22        border-bottom: 1px solid @ini_highlight;
23    }
24
25    /* tables */
26    table {
27        border-collapse: collapse;
28
29        th,
30        td {
31            border: @ini_border 1px solid;
32            padding: 0.2rem 0.75rem
33        }
34
35        th {
36            background-color: @ini_accent;
37        }
38    }
39
40    div.table {
41        width: 100%;
42        overflow: auto;
43    }
44
45    /* code */
46
47    pre {
48        border: 1px solid @ini_border;
49        border-radius: 3px;
50        overflow: auto;
51
52        &.file,
53        &.code {
54            padding: 0.5rem;
55        }
56    }
57
58    dl.code,
59    dl.file {
60        dd {
61            margin: 0;
62            clear: left;
63        }
64
65        dt {
66            border: 1px solid @ini_border;
67            border-top-left-radius: 3px;
68            border-top-right-radius: 3px;
69            border-bottom-color: @ini_background;
70            padding: .3em .6em .1em;
71            margin-left: 1em;
72            margin-bottom: -1px;
73            float: left;
74        }
75    }
76
77    /* Section Editing */
78    .secedit {
79        float: none;
80        margin-top: 0;
81        overflow: auto;
82
83        button {
84            opacity: 0.5;
85            margin-top: 0.5rem;
86            z-index: 150;
87            float: right;
88
89            &:hover {
90                opacity: 1;
91            }
92        }
93    }
94}
95
96