diff options
Diffstat (limited to 'ps/ui/css/home.css')
-rw-r--r-- | ps/ui/css/home.css | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/ps/ui/css/home.css b/ps/ui/css/home.css new file mode 100644 index 0000000..32f3896 --- /dev/null +++ b/ps/ui/css/home.css @@ -0,0 +1,33 @@ +/* Declare variables */ +:root { + /* colors */ + --grey95: rgba(0,0,0,.95); + --grey30: rgba(0,0,0,.3); + + --color: var(--grey95); + /* transformations */ + /* animations */ +} + +* { + box-sizing: border-box; + margin: 0; + padding: 0; +} + +html, body { overflow: hidden; height: 100%; } + +body.home { + background: var(--grey30); + color: var(--color); + position: absolute; + left: 0; + right: 0; +} + +body > main { + position: relative; + margin: 4rem auto; + right: calc(100% - 3%); + left: calc(0% + 3%); +}
\ No newline at end of file |