summaryrefslogtreecommitdiff
path: root/web/assets/bundle.css
diff options
context:
space:
mode:
authorLibravatar f0x52 <f0x@cthu.lu>2021-09-13 14:45:33 +0200
committerLibravatar GitHub <noreply@github.com>2021-09-13 14:45:33 +0200
commit026674bc2c4eb5f53bcb38e7efce2fe2dfebe974 (patch)
treeaeb8d5a884379b86597bc530f0375fc5dbe5357d /web/assets/bundle.css
parentupdate my personal library versions (#220) (diff)
downloadgotosocial-026674bc2c4eb5f53bcb38e7efce2fe2dfebe974.tar.xz
Thread views on the web (#207)
* Webviews for status threads * fix up templates * add ForkAwesome and gotosocial-styling into repo * clean up gotosocial-styling, old styling * update CONTRIBUTING with new css building, and nodemon recommendation * update Dockerfile with new css bundling * those weren't supposed to make it in * upgrade gotosocial-styling deps * update authorize template with main wrapper * update css pipeline * abstract status from thread to avoid copy-pasting * basic CW implementation * fix PR review suggestions * fix no-image-desc icon alignment * remove template loading println * remove println * remove changes to testmodels * reset changes to testmodels
Diffstat (limited to 'web/assets/bundle.css')
-rw-r--r--web/assets/bundle.css188
1 files changed, 0 insertions, 188 deletions
diff --git a/web/assets/bundle.css b/web/assets/bundle.css
deleted file mode 100644
index 7d4eae172..000000000
--- a/web/assets/bundle.css
+++ /dev/null
@@ -1,188 +0,0 @@
-html, body {
- padding: 0;
- margin: 0;
- background: #525c66;
- color: #fafaff;
- font-family: sans-serif;
-}
-
-body {
- display: grid;
- grid-template-columns: 1fr 50% 1fr;
- grid-template-columns: 1fr 90ch 1fr;
- line-height: 1.5em;
-
- min-height: 100vh;
- grid-auto-rows: auto;
- grid-auto-flow: dense;
-}
-
-body > * {
- align-self: start;
- grid-column: 2;
- }
-
-body header, body footer, body .fullWidth {
- grid-column: 1/4;
- grid-column: 1/-1;
- }
-
-body .left {
- grid-column: 1;
- }
-
-body .right {
- grid-column: 3;
- }
-
-header {
- background: rgb(70, 79, 88);
- padding: 2rem;
- margin-bottom: 4rem;
-}
-
-h1 {
- /* color: $acc1; */
- margin: 0;
- line-height: 2.4rem;
-}
-
-a {
- color: #de8957;
-}
-
-.button, button {
- border-radius: 0.2rem;
- background: #de8957;
- color: #fafaff;
- text-decoration: none;
- font-size: 1.2rem;
- font-weight: bold;
- padding: 0.5rem;
- border: none;
- cursor: pointer;
-}
-
-.button:hover, button:hover {
- background: #c76d33;
- }
-
-.count {
- background: rgb(70, 79, 88);
- border-radius: 0.3rem;
- padding: 0.2rem;
-}
-
-.nounderline {
- text-decoration: none;
-}
-
-.accent {
- color: #de8957;
-}
-
-.logo {
- justify-self: center;
-}
-
-.logo img {
- height: 30vh;
- }
-
-section.apps {
- align-self: start;
-}
-
-section.apps .applist {
- display: grid;
- grid-template-columns: 1fr 1fr;
- grid-gap: 0.5rem;
- align-content: start;
- }
-
-section.apps .applist .entry {
- display: grid;
- grid-template-columns: 30% 1fr;
- gap: 0.5rem;
- padding: 0.5rem;
- background: rgb(70, 79, 88);
- border-radius: 0.5rem;
- }
-
-section.apps .applist .entry .logo {
- align-self: center;
- width: 100%;
- object-fit: contain;
- flex: 1 1 auto;
- }
-
-section.apps .applist .entry .logo.redraw {
- fill: #fafaff;
- stroke: #fafaff;
- }
-
-section.apps .applist .entry div {
- padding: 1rem 0;
- }
-
-section.apps .applist .entry div h3 {
- margin-top: 0;
- }
-
-section.login form {
- display: inline-grid;
- grid-template-columns: auto 100%;
- grid-gap: 0.7rem;
- }
-
-section.login form button {
- place-self: center;
- grid-column: 2;
- }
-
-input, select, textarea {
- border: 1px solid #fafaff;
- color: #fafaff;
- background: #525c66;
- width: 100%;
-}
-
-footer {
- align-self: end;
-
- padding: 2rem;
- display: grid;
- grid-template-columns: 1fr 1fr 1fr 1fr;
-}
-
-footer a {
- font-weight: bold;
- }
-
-@media screen and (orientation: portrait) {
- body {
- grid-template-columns: 1fr 92% 1fr;
- }
-
- body footer, body .left, body .right {
- grid-column: 2;
- }
-
- header {
- text-align: center;
- }
-
- footer {
- padding: 0;
- margin-top: 2rem;
- grid-template-columns: 1fr;
- }
-
- footer div {
- margin: 1rem 0;
- }
-
- section.apps .applist {
- grid-template-columns: 1fr;
- }
-} \ No newline at end of file