diff --git a/src/css/style.css b/src/css/style.css index 422b5fc..bb44718 100644 --- a/src/css/style.css +++ b/src/css/style.css @@ -1,5 +1,5 @@ +/* Mobile */ @media (max-width: 1080px) { - /* Styles mobiles */ h1 { font-size: 5vh; } @@ -8,12 +8,14 @@ } } -/* Styles Desktop */ -h1 { - font-size: 4vw; -} -h3 { - font-size: 2vw; +/* Desktop */ +@media (min-width: 1080px) { + h1 { + font-size: 4vw; + } + h3 { + font-size: 2vw; + } } /* Page de connexion */ @@ -223,11 +225,11 @@ label.remember { } @keyframes checkAnim { - 0% { - height: 0; - } + 0% { + height: 0; + } - 100% { - height: 10px; - } + 100% { + height: 10px; + } } \ No newline at end of file