Initial commit

This commit is contained in:
sarahgarcin1 2026-01-05 19:33:15 +01:00
commit 388079e6bb
1108 changed files with 330121 additions and 0 deletions

45
assets/css/responsive.css Normal file
View file

@ -0,0 +1,45 @@
/* sm size */
@media only screen and (min-width: 48em) {
.show-for-small-only{ display: none;}
.hide-for-small-only{ display: block;}
header{
padding: 15px 30px;
padding-right: 0px;
}
header .mobile__menu_btn {
display: none;
}
header nav {
height: auto;
min-height: auto;
max-height: none;
}
}
/* md size */
@media only screen and (min-width: 64em) {
header nav ul.row{
margin-left: 30px;
margin-right: 0;
}
}
/* lg size */
@media only screen and (min-width: 75em) {
}
/* xl size */
@media only screen and (min-width: 90em) {
:root{
--textSize: 20px;
}
body{
line-height: 1.4;
}
}