1/*!
2 * DokuWiki Bootstrap3 Template: Mobile and other devices styles
3 *
4 * Home     http://dokuwiki.org/template:bootstrap3
5 * Author   Giuseppe Di Terlizzi <giuseppe.diterlizzi@gmail.com>
6 * License  GPL 2 (http://www.gnu.org/licenses/gpl.html)
7 */
8
9@media screen and (max-width: 767px) {
10
11  .dokuwiki {
12
13    fieldset,
14    label.block select,
15    label.block input.edit {
16      width: 100%;
17      text-align: left;
18    }
19
20    label.block {
21      text-align: initial;
22    }
23
24    label[for="remember__me"] {
25      margin-left: 0 !important;
26    }
27
28    .centeralign form {
29      text-align: left;
30    }
31
32    .dw-container.mx-5 {
33      margin-left: 0 !important;
34      margin-right: 0 !important;
35    }
36
37    #config__manager {
38      td {
39        display: block;
40        margin: 5px;
41      }
42      td.value {
43        border-top: 0px solid transparent
44      }
45    }
46
47    #insitu__fn {
48      max-width: initial !important;
49      position: fixed !important;
50      bottom: 0 !important;
51      left: 0 !important;
52      top: initial !important;
53      width: 90% !important;
54      margin: 10px;
55      z-index: 9999;
56
57      &::before {
58        content: 'x';
59        right: 5px;
60        position: absolute;
61        top: 5px;
62        cursor: pointer;
63        border-radius: 50%;
64        width: 16px;
65        height: 16px;
66        background: #ddd;
67        text-align: center;
68      }
69    }
70
71  }
72
73}
74