From f0936d9c8b61121cbdfe51bf310fad90b5b0fa03 Mon Sep 17 00:00:00 2001 From: pml68 Date: Tue, 16 Jan 2024 16:58:24 +0100 Subject: Initial commit This is just a test site for now, will add content soon --- src/app.scss | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/app.scss (limited to 'src/app.scss') diff --git a/src/app.scss b/src/app.scss new file mode 100644 index 0000000..d60437a --- /dev/null +++ b/src/app.scss @@ -0,0 +1,33 @@ +*{ + box-sizing: border-box; + margin: 0; + padding: 0; +} + +body { + background-color: #1e1e2e; + color: #a6fbb2; + font-family: 'Rubik', sans-serif; +} + +.ii { + width: 20vh; + height: 20vh; + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%,-50%); + background-color: #1e1e2e; + border-radius: 2vh; + box-shadow: -12px -12px 28px #27273b73, 12px 12px 20px #12121c73; +} + +.container { + height: calc(90dvh - 8dvh); + display: flex; + align-items: center; + justify-content: center; + overflow: hidden; + width: 100%; + z-index: 100; +} -- cgit v1.2.3