1.dokuwiki #plugin__captcha_wrapper {
2    clear: left;
3    border: 1px solid @ini_border;
4    padding: 0.75em;
5    margin: 1em 0;
6
7    * {
8        vertical-align: middle;
9    }
10
11    img {
12        margin: 1px;
13        vertical-align: bottom;
14        border: 1px solid @ini_border;
15    }
16
17    pre {
18        font-size: 70%;
19        font-family: monospace;
20        font-weight: bold;
21        border: none;
22        background-color: @ini_background;
23        color: @ini_text;
24        padding: 0;
25    }
26
27    .svg {
28        display: inline-block;
29        background-color: @ini_background;
30        vertical-align: bottom;
31        border: 1px solid @ini_border;
32
33        svg {
34            width: 100%;
35            height: 100%;
36
37            path {
38                fill: @ini_text;
39            }
40        }
41    }
42
43    .audiolink {
44        display: inline-flex;
45        justify-content: center;
46        align-items: center;
47        margin-left: 0.5em;
48        margin-right: 0.5em;
49        border: 1px solid @ini_border;
50        aspect-ratio: 1;
51
52        svg {
53            height: auto;
54            width: auto;
55            flex-grow: 1;
56            flex-shrink: 1;
57            fill: @ini_link;
58        }
59    }
60
61    .no {
62        display: none;
63    }
64}
65