diff options
author | niliara-edu <nil.jimeno@estudiant.fjaverianas.com> | 2024-12-23 18:32:29 +0100 |
---|---|---|
committer | niliara-edu <nil.jimeno@estudiant.fjaverianas.com> | 2024-12-23 18:32:29 +0100 |
commit | a840990bdcabf45fb0d377478ba0ab27222434ae (patch) | |
tree | 030a6c3a6befce284733f5643d3972e3a1504bb2 /scss/index.scss |
initial commit
Diffstat (limited to 'scss/index.scss')
-rw-r--r-- | scss/index.scss | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/scss/index.scss b/scss/index.scss new file mode 100644 index 0000000..177f5fd --- /dev/null +++ b/scss/index.scss @@ -0,0 +1,35 @@ +body { + margin: 0; + background-color: grey; + width: 100%; + height: 100%; +} + +img { + position: absolute; + top: 0; + left: 0; +} + +.background { + width: 100%; + height: 100%; +} + +#spawn { + position: relative; + top: 0; + left: 0; + width: 0; + height: 0; +} + +#screen { + display: block; + overflow: hidden; + background-size: cover; + position: absolute; + top: 0; + left: 0; +} + |