Basic account system

This commit is contained in:
Michał Gdula 2022-07-25 16:13:26 +01:00
parent 0536dfc62c
commit 87dc4d5ff0
19 changed files with 371 additions and 46 deletions

16
css/account.css Normal file
View file

@ -0,0 +1,16 @@
/*
-=-=-= Account =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
*/
.account-root {
margin: 0 auto 2rem; padding: 0.5rem;
max-width: 621px;
background-color: var(--bg); color: var(--fg);
border: 0.2rem solid var(--green);
outline: 0.5rem solid var(--bg);
border-radius: var(--rad);
box-shadow: var(--shadow);
}

View file

@ -2,7 +2,9 @@
-=-=-= EDIT =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
*/
.edit-root {
margin: 0 auto 2rem; padding: 0.5rem;;
margin: 0 auto 2rem; padding: 0.5rem;
max-width: 621px;
background-color: var(--bg); color: var(--fg);
@ -11,6 +13,4 @@
border-radius: var(--rad);
box-shadow: var(--shadow);
max-width: 621px;
}

View file

@ -20,7 +20,8 @@
.gallery-item {
margin: 0.5rem; padding: 0;
max-width: 300px; height: auto;
max-width: 232.5px; max-height: 232.5px;
height: auto;
background-color: var(--bg-2);
border-radius: var(--rad);
@ -44,6 +45,7 @@
.gallery-image {
margin: 0; padding: 0;
/*max-width: 232.5px; max-height: 232.5px;*/
width: 100%; height: 100%;
top: 0; bottom: 0; left: 0; right: 0;

View file

@ -28,6 +28,10 @@
top: 50%; left: 50%;
transform: translate(-50%, -50%);
/*background-color: var(--bg);
outline: 0.5rem solid var(--bg);*/
border-radius: var(--rad);
}

16
css/login.css Normal file
View file

@ -0,0 +1,16 @@
/*
-=-=-= LONGIN =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
*/
.login-root {
margin: 0 auto 2rem; padding: 0.5rem;
max-width: 621px;
background-color: var(--bg); color: var(--fg);
border: 0.2rem solid var(--green);
outline: 0.5rem solid var(--bg);
border-radius: var(--rad);
box-shadow: var(--shadow);
}

View file

@ -6,6 +6,10 @@
@import "edit.css";
@import "upload.css";
@import "signup.css";
@import "login.css";
@import "account.css";
:root {
--bg: #151515df;
--bg-1: #242621;
@ -137,6 +141,12 @@ a.btn {
.space-top {
margin-top: 1rem;
}
.space-bottom-large {
margin-bottom: 2rem;
}
.space-top-large {
margin-top: 2rem;
}
.svg {
margin: 0 0.2rem 0.1rem 0;

View file

@ -33,7 +33,7 @@ nav hr {
width: auto;
justify-content: space-between;
}
@media (max-width: 569px) {
@media (max-width: 800px) {
.nav-name h3, .nav-name {
display: none;
}

16
css/signup.css Normal file
View file

@ -0,0 +1,16 @@
/*
-=-=-= SIGN UP =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
*/
.signup-root {
margin: 0 auto 2rem; padding: 0.5rem;
max-width: 621px;
background-color: var(--bg); color: var(--fg);
border: 0.2rem solid var(--green);
outline: 0.5rem solid var(--bg);
border-radius: var(--rad);
box-shadow: var(--shadow);
}

View file

@ -2,7 +2,9 @@
-=-=-= UPLOAD =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
*/
.upload-root {
margin: 0 auto 2rem; padding: 0.5rem;;
margin: 0 auto 2rem; padding: 0.5rem;
max-width: 621px;
background-color: var(--bg); color: var(--fg);
@ -11,6 +13,4 @@
border-radius: var(--rad);
box-shadow: var(--shadow);
max-width: 621px;
}