Add link to account dashboard to all pages

This commit is contained in:
2024-03-29 11:24:03 +04:00
parent 4b52a12943
commit f175f2d0e3
11 changed files with 105 additions and 24 deletions

View File

@@ -57,8 +57,9 @@ header h1 {
}
header h2 {
font-weight: 300;
font-size: 1.4rem;
font-size: 1rem;
font-weight: normal;
color: #888888;
}
main {
@@ -72,6 +73,33 @@ main p {
margin-bottom: 1em;
}
footer {
height: 100%;
max-width: 90%;
margin: 7vh auto;
text-align: center;
}
footer a {
font-size: 0.9rem;
font-weight: bold;
display: inline-block;
background-color: #444;
color: white;
text-decoration: none;
padding: 0.5em 2em;
border-radius: 0.5em;
border: 3px solid white;
}
footer a:hover {
background-color: #555;
}
footer a:active {
border: 3px solid #ccc;
}
.hidden {
display: none !important;
}
@@ -82,10 +110,15 @@ main p {
}
header h1 {
font-size: 8vw;
font-size: 10vw;
margin-bottom: 1rem;
}
header h2 {
font-weight: 300;
font-size: 1rem;
}
footer {
margin-bottom: 4rem;
}
}