From 79fa6979aa36b40983827fc5608b8bed85eea833 Mon Sep 17 00:00:00 2001 From: Your Name Date: Sat, 23 Dec 2017 20:08:09 +0100 Subject: Add existing ps.l.o site --- ps/ui/css/home.css | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 ps/ui/css/home.css (limited to 'ps/ui/css/home.css') 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 -- cgit v1.2.3