From e7f55dc0623ced59312973ce37a0a21e4c1ab604 Mon Sep 17 00:00:00 2001 From: Fluffy-Bean Date: Wed, 21 Sep 2022 14:23:17 +0000 Subject: [PATCH] A handfull of fixes --- about.php | 4 ++-- app/settings/manifest.json | 7 +++---- css/main.css | 29 +++++++++++++++++++++-------- css/main.scss | 16 +++++++++++++++- css/scss/_body.scss | 6 +++--- css/scss/_variables.scss | 2 +- image.php | 4 ++-- upload.php | 5 +++-- 8 files changed, 50 insertions(+), 23 deletions(-) diff --git a/about.php b/about.php index ae2961e..d2a8e72 100644 --- a/about.php +++ b/about.php @@ -32,8 +32,8 @@

Development

- Project Github - Creators Twitter +

This projects GitHub: Repo

+

My Twitter: Twitter

diff --git a/app/settings/manifest.json b/app/settings/manifest.json index 931549b..e42827f 100644 --- a/app/settings/manifest.json +++ b/app/settings/manifest.json @@ -22,12 +22,11 @@ "The weather is dry", "Need me a man 👀", "Gods die too.", - "Eat hotchip and lie", - "The world will not be destroyed by those who do evil, but by those who watch them and do nothing." + "Eat hotchip and lie" ], "license":"GPL 3.0", "version": "22.09.21", - "user_name": "Michal", + "user_name": "[your name]", "is_testing": "true", - "upload_max": "20" + "upload_max": "32" } \ No newline at end of file diff --git a/css/main.css b/css/main.css index fc5c4e2..66cc47d 100644 --- a/css/main.css +++ b/css/main.css @@ -17,7 +17,7 @@ --red: #B66467; --orange: #FF7700; --green: #8C977D; - --black: #151515; + --black: #121212; --white: #E8E3E3; --accent: #8C977D; --shadow: 6px 6px 2px rgba(21, 21, 21, 0.4); @@ -355,7 +355,7 @@ nav .btn { border: none; border-radius: calc(0.25rem - (0.5rem + 3px)); transition: outline 0.1s cubic-bezier(0.19, 1, 0.22, 1); - background-color: #151515; + background-color: #121212; opacity: 0.8; box-shadow: 6px 6px 2px rgba(21, 21, 21, 0.4); } @@ -685,7 +685,7 @@ nav .btn { justify-content: space-between; } .log:nth-child(even) { - background-color: rgba(255, 255, 255, 0.0666666667); + background-color: rgba(232, 227, 227, 0.0666666667); } .log > * { margin: 0 0.5rem 0 0; @@ -732,7 +732,7 @@ nav .btn { justify-content: space-between; } .ban:nth-child(even) { - background-color: rgba(255, 255, 255, 0.0666666667); + background-color: rgba(232, 227, 227, 0.0666666667); } .ban > * { margin: 0 0.5rem 0 0; @@ -786,7 +786,7 @@ nav .btn { justify-content: space-between; } .user:nth-child(even) { - background-color: rgba(255, 255, 255, 0.0666666667); + background-color: rgba(232, 227, 227, 0.0666666667); } .user > * { margin: 0 0.5rem 0 0; @@ -1039,7 +1039,7 @@ body * { text-decoration: none; background-color: #E8E3E3; border: none; - border-radius: 0.25rem; + border-radius: calc(0.25rem - (0.5rem + 3px)); } .btn:where(input[type=file])::file-selector-button { margin: -0.25rem 0.5rem -0.25rem -0.25rem; @@ -1049,7 +1049,7 @@ body * { text-decoration: none; background-color: #E8E3E3; border: none; - border-radius: 0.25rem; + border-radius: calc(0.25rem - (0.5rem + 3px)); } a.btn { @@ -1065,7 +1065,7 @@ a.btn { } .btn-neutral { - background-color: #151515; + background-color: #121212; } /* @@ -1108,6 +1108,19 @@ br { line-height: 0.25rem; } +/* + |------------------------------------------------------------- + | Link text + |------------------------------------------------------------- +*/ +a.link { + display: inline; + text-decoration: underline; +} +a.link:hover { + color: #8C977D; +} + /* |------------------------------------------------------------- | BACK TO TOP diff --git a/css/main.scss b/css/main.scss index 9082cdc..abd85d3 100644 --- a/css/main.scss +++ b/css/main.scss @@ -102,7 +102,7 @@ body { background-color: $white; border: none; - border-radius: $rad; + border-radius: calc($rad - (0.5rem + 3px)); } } @@ -166,6 +166,20 @@ br { line-height: 0.25rem; } +/* + |------------------------------------------------------------- + | Link text + |------------------------------------------------------------- +*/ +a.link { + display: inline; + text-decoration: underline; + + &:hover { + color: $page-accent; + } +} + /* |------------------------------------------------------------- | BACK TO TOP diff --git a/css/scss/_body.scss b/css/scss/_body.scss index 4825c49..400ec0e 100644 --- a/css/scss/_body.scss +++ b/css/scss/_body.scss @@ -409,7 +409,7 @@ justify-content: space-between; &:nth-child(even) { - background-color: #ffffff11; + background-color: #E8E3E311; } & > * { @@ -461,7 +461,7 @@ justify-content: space-between; &:nth-child(even) { - background-color: #ffffff11; + background-color: #E8E3E311; } & > * { @@ -519,7 +519,7 @@ justify-content: space-between; &:nth-child(even) { - background-color: #ffffff11; + background-color: #E8E3E311; } & > * { diff --git a/css/scss/_variables.scss b/css/scss/_variables.scss index a3ded82..e262271 100644 --- a/css/scss/_variables.scss +++ b/css/scss/_variables.scss @@ -7,7 +7,7 @@ $fg-alt: #151515; $red: #B66467; $orange: #FF7700; $green: #8C977D; -$black: #151515; +$black: #121212; $white: #E8E3E3; $page-accent: #8C977D; diff --git a/image.php b/image.php index ab0051f..59c6ab2 100644 --- a/image.php +++ b/image.php @@ -320,7 +320,7 @@ var header = "Enter new Description/Alt"; var description = "Whatcha gonna put in there 👀"; var actionBox = "
\ - \ + \ \
"; flyoutShow(header, description, actionBox); @@ -356,7 +356,7 @@ var header = "Tags"; var description = "Tags are seperated by spaces, only alowed characters are a-z and underscores, all hyphens are converted to underscores. There are also special tags such as nsfw that'll blur images in the overview"; var actionBox = "
\ - \ + \ \
"; flyoutShow(header, description, actionBox); diff --git a/upload.php b/upload.php index 575c46d..5e76cfb 100644 --- a/upload.php +++ b/upload.php @@ -30,8 +30,9 @@
- - +
+ +