Start on fixing errors and semi-automatic setup

This commit is contained in:
Michał Gdula 2022-10-19 10:57:46 +00:00
parent d897215023
commit c3814000c0
10 changed files with 180 additions and 57 deletions

View file

@ -759,21 +759,22 @@ nav .btn {
display: flex;
flex-direction: row;
}
.pfp-upload > img {
margin-left: 0.5rem;
width: 7.813rem;
height: 7.813rem;
-o-object-fit: cover;
object-fit: cover;
border-radius: 3px;
background-color: #121212;
}
.pfp-upload form > * {
margin: 0 0 0.5rem 0;
}
.pfp-upload form > *:last-child {
margin: 0 0 0 0;
}
.pfp-upload > img {
margin-left: 0.5rem;
width: 8rem;
height: 8rem;
-o-object-fit: cover;
object-fit: cover;
float: right;
border-radius: 3px;
background-color: #121212;
}
@media (max-width: 621px) {
.pfp-upload {
@ -782,8 +783,8 @@ nav .btn {
}
.pfp-upload > img {
margin: 0 auto 1rem;
width: 10rem;
height: 10rem;
width: 12rem;
height: 12rem;
}
}
.tabs {
@ -961,6 +962,25 @@ nav .btn {
top: 0;
}
.btn-code {
color: rgba(0, 0, 0, 0);
position: relative;
}
.btn-code::after {
content: "Hover to show code";
color: #E8E3E3;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.btn-code:hover {
color: #E8E3E3;
}
.btn-code:hover::after {
content: "";
}
/*
|-------------------------------------------------------------
| FOOTER