mirror of
https://git.ari.lt/ari.lt/ari.lt.git
synced 2025-02-04 17:49:24 +01:00
1c3ba463cd
- Update usage api - Add an import/export data page - Improve css - Add more noscript tags - Fix a JS lincense issue - Fix an html issue with a tags having no target="_blank" - Add generic styling for noscript tags - Add css for a switch/toggle (future use, didn't use it this time) Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
25 lines
324 B
CSS
25 lines
324 B
CSS
:root {
|
|
--ns-bg: #af5f5f;
|
|
--ns-fg: #262220;
|
|
}
|
|
|
|
*[ns],
|
|
*[nsb],
|
|
*[nsb] *,
|
|
*[ns] * {
|
|
background-color: var(--ns-bg);
|
|
color: var(--ns-fg);
|
|
font-weight: bold;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
*[ns] {
|
|
padding: 0.2em;
|
|
display: inline;
|
|
}
|
|
|
|
*[nsb] {
|
|
display: block;
|
|
text-align: center;
|
|
padding: 2em;
|
|
}
|