Compare commits

..

No commits in common. "a737fea100be329e63c72c5f63aaf32397760757" and "a1785743c9ea4fe24fbb079548ea3472202a4936" have entirely different histories.

3 changed files with 4 additions and 18 deletions

View file

@ -168,20 +168,13 @@
transition-delay: 0.1s; transition-delay: 0.1s;
} }
/* Mobile — var(--breakpoint-mobile) = 700px */
@media screen and (max-width: 700px) { @media screen and (max-width: 700px) {
.navbar {
min-height: 8vh;
padding: 10vh 0 1vh;
top: 0;
}
.navbar-item { .navbar-item {
display: none; font-size: var(--font-size-paragraph-mobile);
padding: 1vmax 1.5vmax;
} }
} }
/* Tablet — var(--breakpoint-tablet) = 912px */
@media screen and (min-width: 701px) and (max-width: 912px) { @media screen and (min-width: 701px) and (max-width: 912px) {
.navbar-item { .navbar-item {
font-size: var(--font-size-paragraph-tablet); font-size: var(--font-size-paragraph-tablet);

View file

@ -243,7 +243,7 @@
text-transform: uppercase; text-transform: uppercase;
} }
/* Mobile — var(--breakpoint-mobile) = 700px */ /* Mobile */
@media screen and (max-width: 700px) { @media screen and (max-width: 700px) {
.menu-list { .menu-list {
font-size: var(--font-size-subtitle-mobile); font-size: var(--font-size-subtitle-mobile);
@ -268,7 +268,7 @@
} }
} }
/* Tablet — var(--breakpoint-tablet) = 912px */ /* Tablet */
@media screen and (min-width: 701px) and (max-width: 912px) { @media screen and (min-width: 701px) and (max-width: 912px) {
.menu-list { .menu-list {
font-size: var(--font-size-title-section-tablet); font-size: var(--font-size-title-section-tablet);

View file

@ -6,13 +6,6 @@
--color-background: #000; --color-background: #000;
--color-text: #fff; --color-text: #fff;
/* BREAKPOINTS (référence non utilisables directement dans @media)
* --breakpoint-mobile : 700px
* --breakpoint-tablet : 912px
*/
--breakpoint-mobile: 700px;
--breakpoint-tablet: 912px;
/* Z-INDEX SCALE /* Z-INDEX SCALE
* --z-base : éléments décoratifs (lignes verticales, bg) * --z-base : éléments décoratifs (lignes verticales, bg)
* --z-content : contenu de slides (textes, overlays légers) * --z-content : contenu de slides (textes, overlays légers)