diff options
author | Marcin Zelent <marcin@zelent.net> | 2022-11-16 15:16:38 +0100 |
---|---|---|
committer | Marcin Zelent <marcin@zelent.net> | 2022-11-16 15:16:38 +0100 |
commit | f2ecc1803f3ea294a0c6b7915b61348ed0395b26 (patch) | |
tree | e8c6fb1350ae4f659b3f9ef8d17157158b974b16 /styles | |
parent | efb64f24d6200a39870c0e8966ab4f87e07c93a9 (diff) |
Remade and extended the app using React
Diffstat (limited to 'styles')
-rw-r--r-- | styles/Home.module.css | 49 | ||||
-rw-r--r-- | styles/globals.css | 19 |
2 files changed, 0 insertions, 68 deletions
diff --git a/styles/Home.module.css b/styles/Home.module.css deleted file mode 100644 index adc1e86..0000000 --- a/styles/Home.module.css +++ /dev/null @@ -1,49 +0,0 @@ -.container { - width: 100%; - height: 100%; - display: flex; - overflow: hidden; -} - -.main { - height: 100%; - flex: 1 1 auto; -} - -.asideToggle { - display: none; -} - -@media only screen and (max-width: 500px) { - .asideToggle { - width: 36px; - height: 36px; - padding-bottom: 3px; - padding-left: 2px; - border: 2px solid rgba(0, 0, 0, 0.2); - border-radius: 4px; - display: block; - position: absolute; - top: 10px; - left: 10px; - z-index: 999; - transform: rotate(90deg); - font-family: 'Lucida Console', Monaco, monospace; - font-size: 18px; - font-weight: 700; - letter-spacing: -5px; - background-color: #fff; - background-clip: padding-box; - cursor: pointer; - user-select: none; - outline: currentcolor none medium; - } - - .asideToggle:hover { - background-color: #f4f4f4; - } - - .asideOpen { - left: 0; - } -} diff --git a/styles/globals.css b/styles/globals.css deleted file mode 100644 index fc3ded1..0000000 --- a/styles/globals.css +++ /dev/null @@ -1,19 +0,0 @@ -html, -body, -#__next { - width: 100%; - height: 100%; - padding: 0; - margin: 0; - font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, - Fira Sans, Droid Sans, Helvetica Neue, sans-serif; -} - -a { - color: inherit; - text-decoration: none; -} - -* { - box-sizing: border-box; -} |