diff options
| author | Bobby <[email protected]> | 2022-07-18 00:57:36 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-07-18 00:57:36 +0530 |
| commit | b31bd3dbabb57eda3fddfaa7a59e01e73442834f (patch) | |
| tree | 8acf4f7eec348c9d9e143933ff2ad59784233f2e /public/css | |
| parent | 406a35de9d0d37d20123a0a3e961614142c2cf3c (diff) | |
| download | thatcomputerscientist-b31bd3dbabb57eda3fddfaa7a59e01e73442834f.tar.xz thatcomputerscientist-b31bd3dbabb57eda3fddfaa7a59e01e73442834f.zip | |
Change Init to Ghost
Diffstat (limited to 'public/css')
| -rw-r--r-- | public/css/fonts.css | 54 | ||||
| -rw-r--r-- | public/css/main.css | 142 |
2 files changed, 0 insertions, 196 deletions
diff --git a/public/css/fonts.css b/public/css/fonts.css deleted file mode 100644 index ae921aa3..00000000 --- a/public/css/fonts.css +++ /dev/null @@ -1,54 +0,0 @@ -@font-face { - font-family: 'TimesPixelated'; - font-size: 16px; - src: url('../fonts/TIMES16-Regular.woff'); - font-weight: normal; - font-style: normal; - font-display: swap; -} - -@font-face { - font-family: 'TimesPixelated'; - font-size: 16px; - src: url('../fonts/TIMES16-Italic.woff'); - font-weight: normal; - font-style: italic; - font-display: swap; -} - -@font-face { - font-family: 'TimesPixelated'; - font-size: 16px; - src: url('../fonts/TIMES16-Bold.woff'); - font-weight: bold; - font-style: normal; - font-display: swap; -} - -@font-face { - font-family: 'TimesPixelated'; - font-size: 24px; - src: url('../fonts/TIMES24-Bold.woff'); - font-weight: bold; - font-style: normal; - font-display: swap; -} - -@font-face { - font-family: 'TimesPixelated'; - font-size: 32px; - src: url('../fonts/TIMES32-Bold.woff'); - font-weight: bold; - font-style: normal; - font-display: swap; -} - -@font-face { - font-family: 'CourierPixelated'; - font-size: 16px; - src: url('../fonts/COUR16-Regular.woff'); - font-weight: normal; - font-style: normal; - font-display: swap; -} - diff --git a/public/css/main.css b/public/css/main.css deleted file mode 100644 index 6b23e412..00000000 --- a/public/css/main.css +++ /dev/null @@ -1,142 +0,0 @@ -/* making a sidebar layout with 20% sidebar */ -body { - display: inline-flex; - flex-direction: row; - flex-wrap: wrap; - min-height: calc(100vh - 16px); - background-color: #fafafa; - padding: 0; - min-width: calc(100vw - 16px); - font-family: serif; -} - -.sidebar { - background-color: #bad9ff; - padding: 20px; - overflow-x: hidden; - overflow-y: auto; - border: 1px solid #191919; -} - -.main { - flex: 1; - padding: 20px; - overflow-x: hidden; - overflow-y: auto; -} - -.title:visited { - color: #000; -} - -.title > h1 { - font-size: 1.2rem; - font-weight: bold; - margin-top: 0; -} - -.title { - display: block; -} - -.title > img { - width: 10rem; - height: 3.23rem; - display: block; - margin: 0px auto 10px auto; - pointer-events: none; -} - -.alert { - background-color: #ffd4bd; - padding: 20px; - border: 1px solid #191919; -} - -lebel, input, textarea, select { - display: block; - margin: 5px 0px; - font-family: serif; - font-size: 16px; -} - -input[type = 'submit'] { - margin-top: 10px; -} - -fieldset { - border: 1px solid #191919; - padding: 10px 20px; -} - -nav > ul { - list-style: none; - padding: 0; - margin: 0; -} - -nav > ul > li { - margin: 5px 0; -} - -.center { - text-align: center; -} - -.login-box { - padding: 20px; - border: 1px solid #191919; -} - -.login-box > p { - margin-top: 0; - margin-bottom: 10px; -} - -.error { - color: red; -} - -.success { - color: green; -} - -.account { - display: flex; - flex-direction: row; - flex-wrap: wrap; -} - -.ac-sidebar { - padding: 20px; - overflow-x: hidden; - overflow-y: auto; -} - -.ac-main { - flex: 1; - padding: 20px; - overflow-x: hidden; - overflow-y: auto; -} - -.errorbox { - background-color: #ffd4bd; - padding: 20px; - border: 1px solid #191919; -} - -.errorbox > h1 { - margin-top: 0; -} - -/* Optimize for phones */ -@media only screen and (max-width: 480px) { - body { - flex-direction: column; - } - - .account { - flex-direction: column; - } -} |
