mirror of
https://github.com/Fluffy-Bean/image-gallery.git
synced 2025-05-28 14:23:11 +00:00
Added edit page
This commit is contained in:
parent
acde68ac74
commit
5fee89d2e7
5 changed files with 47 additions and 14 deletions
|
@ -3,6 +3,7 @@
|
|||
|
||||
@import "gallery.css";
|
||||
@import "image.css";
|
||||
@import "edit.css";
|
||||
@import "upload.css";
|
||||
|
||||
:root {
|
||||
|
@ -26,6 +27,7 @@
|
|||
* {
|
||||
font-weight: 521;
|
||||
color: var(--fg);
|
||||
font-family: "Fira Code", monospace;
|
||||
}
|
||||
html {
|
||||
margin: 0; padding: 0;
|
||||
|
@ -50,6 +52,14 @@ body {
|
|||
justify-content: space-between;
|
||||
}
|
||||
|
||||
form {
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
form * {
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
/*
|
||||
-=-=-= UNIVERSAL =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
|
||||
|
@ -81,7 +91,7 @@ body {
|
|||
|
||||
text-align: center;
|
||||
|
||||
display: inline-block;
|
||||
display: block;
|
||||
|
||||
border-radius: var(--rad);
|
||||
|
||||
|
@ -100,17 +110,21 @@ body {
|
|||
.btn {
|
||||
margin: 0; padding: 0.5rem;
|
||||
|
||||
border: none;
|
||||
|
||||
display: inline-block;
|
||||
display: block;
|
||||
|
||||
font-size: 16px;
|
||||
align-items: center;
|
||||
|
||||
border: none;
|
||||
border-radius: var(--rad);
|
||||
}
|
||||
.btn:hover {
|
||||
outline: var(--white) 3px solid;
|
||||
}
|
||||
a.btn {
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.space-bottom {
|
||||
margin-bottom: 1rem;
|
||||
|
@ -146,7 +160,7 @@ h4 {
|
|||
font-family: "Lexend Deca", sans-serif;
|
||||
font-size: 21px;
|
||||
}
|
||||
p {
|
||||
p, a {
|
||||
margin: 0 0 0.5rem 0;
|
||||
font-family: "Fira Code", monospace;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue