diff options
| author | pml68 <tutorialmester@gmail.com> | 2024-01-16 16:58:24 +0100 |
|---|---|---|
| committer | pml68 <tutorialmester@gmail.com> | 2024-01-16 16:58:24 +0100 |
| commit | f0936d9c8b61121cbdfe51bf310fad90b5b0fa03 (patch) | |
| tree | 4a7e992395ecbd0c6f918f18e1740a2beaad9862 /src/app.scss | |
| download | pml68.dev-f0936d9c8b61121cbdfe51bf310fad90b5b0fa03.tar.gz | |
Initial commit
This is just a test site for now, will add content soon
Diffstat (limited to '')
| -rw-r--r-- | src/app.scss | 33 |
1 files changed, 33 insertions, 0 deletions
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; +} |
