-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (39 loc) · 1.86 KB
/
Copy pathstyle.css
File metadata and controls
49 lines (39 loc) · 1.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
@charset "UTF-8";
/**
* @updated 25.11.06
* @copyright 2025 Hold'inCorp.
* @author inLoad
* @license Apache-2.0 ./LICENSE
*/
html { color:rgb(var(--mode-color)); font-family:sans-serif; font-size:18px; font-weight:lighter; }
body { margin:0em; background-color:rgb(var(--mode-bgc)); }
nav:has( > [class*="container"]) { padding:1em 0em; }
nav.header { padding:1em; border-bottom-width:var(--border_EM); border-bottom-style:solid; border-bottom-color:rgb(var(--mode-color) / var(--mini)); background-color:rgb(var(--white)); }
nav.sticky { position:sticky; width:100%; top:0em; left:0em; z-index:100; }
body > * *:first-child { margin-top:0em; }
body > * *:last-child { margin-bottom:0em; }
*, * *, *:hover, *::before, *::after, *::backdrop { box-sizing:border-box; transition:all var(--mini_S) 0s ease-in-out; scroll-behavior:smooth; }
/* ========== CONTAINER ========== */
[class*="container"] { width:var(--container); max-width:var(--container-max); margin-left:auto; margin-right:auto; }
.container-small { max-width:calc(var(--container-max) * var(--small)); }
.container-medium { max-width:calc(var(--container-max) * var(--medium)); }
.container-full { max-width:100%; }
a[id], a[class] { text-decoration:none; color:inherit; }
menu { padding:0em; margin:0em; list-style:none; }
/* ========== TEXT ========== */
.ta-center { text-align:center; }
.ta-left { text-align:left; }
.ta-right { text-align:right; }
.ta-justify { text-align:justify; }
.ta-end { text-align:end; }
.ta-start { text-align:start; }
.tt-none { text-transform:none; }
.tt-upper { text-transform:uppercase; }
.tt-lower { text-transform:lowercase; }
.tt-capit { text-transform:capitalize; }
.fw-lighter { font-weight:lighter; }
.fw-normal { font-weight:normal; }
.fw-bold { font-weight:bold; }
.fw-bolder { font-weight:bolder; }
.fs-italic { font-style:italic; }
.fs-normal { font-style:normal; }