File: configurable.css

package info (click to toggle)
iotas 0.12.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,440 kB
  • sloc: python: 14,665; xml: 725; javascript: 45; makefile: 2
file content (24 lines) | stat: -rw-r--r-- 436 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
    :root {
      --text-colour: %s;
      --figcaption-opacity: %s;
    }
    @media screen {
      html {
        font-size: %dpt;
      }
      body {
        max-width: %dpx;
        font-family: %s;
        padding-top: %dpx;
      }
    }
    @media screen and (max-width:600px) {
      body {
        padding-top: %s;
      }
    }
    @media (prefers-color-scheme: dark) {
      :root {
        --text-colour: %s;
      }
    }