summary refs log tree commit diff
path: root/slowcord/login/public/css
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-09-25 18:24:21 +1000
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-09-25 23:35:18 +1000
commitf44f5d7ac2d24ff836c2e1d4b2fa58da04b13052 (patch)
treea6655c41bb3db79c30fd876b06ee60fe9cf70c9b /slowcord/login/public/css
parentAllow edited_timestamp to passthrough in handleMessage (diff)
downloadserver-f44f5d7ac2d24ff836c2e1d4b2fa58da04b13052.tar.xz
Refactor to mono-repo + upgrade packages
Diffstat (limited to 'slowcord/login/public/css')
-rw-r--r--slowcord/login/public/css/index.css112
1 files changed, 0 insertions, 112 deletions
diff --git a/slowcord/login/public/css/index.css b/slowcord/login/public/css/index.css
deleted file mode 100644
index d4f5a4b4..00000000
--- a/slowcord/login/public/css/index.css
+++ /dev/null
@@ -1,112 +0,0 @@
-/* Can you tell I like flexbox? */
-
-html {
-	--background-primary: rgb(22, 23, 25);
-	--background-secondary: rgb(15, 16, 18);
-	--foreground-primary: rgb(200, 200, 200);
-	--background-login-discord: #5865F2;
-
-	background: url("https://slowcord.maddy.k.vu/assets/background.png");
-	background-size: 100% 100%;
-	background-repeat: no-repeat;
-
-	font-family: 'Montserrat', sans-serif;
-
-	color: var(--foreground-primary);
-}
-
-* {
-	margin: 0;
-	padding: 0;
-}
-
-.content {
-	display: flex;
-	width: 100vw;
-	height: 100vh;
-	justify-content: flex-start;
-	align-items: center;
-}
-
-.login {
-	height: 100%;
-	width: 25%;
-	min-width: 400px;
-	display: flex;
-	flex-direction: column;
-	justify-content: center;
-	align-items: center;
-
-	background-color: var(--background-primary);
-
-	padding: 0 50px 0 50px;
-}
-
-.header {
-	margin: 40px;
-	width: 100%;
-	text-align: center;
-	display: flex;
-	flex-direction: column;
-	justify-content: center;
-}
-
-.header-subtext {
-	text-align: center;
-}
-
-.header-subtext a, .header-subtext p {
-	display: inline-block;
-	margin: 0 10px 0 10px;
-}
-
-a {
-	color: var(--foreground-primary);
-}
-
-form {
-	display: flex;
-	flex-direction: column;
-	justify-content: center;
-	width: 100%;
-	min-height: 50%;
-}
-
-input,
-form a {
-	background-color: var(--background-secondary);
-	padding: 10px;
-	margin: 5px 0 5px 0;
-	outline: none;
-	border: 1px solid grey;
-	color: var(--foreground-primary);
-	text-decoration: none;
-	cursor: pointer;
-}
-
-form a {
-	text-align: center;
-}
-
-label {
-	text-transform: uppercase;
-	font-size: 0.75rem;
-	font-weight: bold;
-}
-
-#loginDiscord {
-	background-color: var(--background-login-discord);
-}
-
-#failure {
-	width: 100%;
-	margin-top: 10px;
-	color: rgb(200, 20, 20);
-	display: none;
-}
-
-.h-captcha {
-	display: flex;
-	justify-content: center;
-	margin-top: 10px;
-}
\ No newline at end of file