Version mobile header + footer

This commit is contained in:
Adrien Bourmault 2022-07-08 16:41:37 +02:00
parent a920a4fbb5
commit ace11636c9
No known key found for this signature in database
GPG Key ID: 6EB408FE0ACEC664
1 changed files with 17 additions and 3 deletions

View File

@ -652,25 +652,29 @@ A-lec images
display: flex; display: flex;
flex-direction: column; flex-direction: column;
padding: 10px; padding: 10px;
font-size: 55%;
} }
#a-lec_site-title h2 { #a-lec_site-title h2 {
font-weight: normal; font-weight: normal;
font-size: 150%; font-size: 110%;
margin-top: 20px; margin-top: 20px;
} }
#a-lec_site-title h1 {
text-align: center;
}
#a-lec_site-name a { #a-lec_site-name a {
color: #FFF; color: #FFF;
font-weight: bold; font-weight: bold;
font-size: 325%; font-size: 190%;
} }
#a-lec_site-name a:hover { #a-lec_site-name a:hover {
background-color: unset; background-color: unset;
font-weight: bold; font-weight: bold;
background-color: unset; background-color: unset;
font-size: 190%;
} }
p { p {
@ -678,3 +682,13 @@ A-lec images
} }
} }
@media screen and (max-width: 399px) {
#a-lec_site-title h2 {
font-size: 130%;
}
#a-lec_site-name a {
font-size: 280%;
}
}