diff --git a/css/layout.css b/css/layout.css index aa59db5..3bccaf6 100644 --- a/css/layout.css +++ b/css/layout.css @@ -32,3 +32,33 @@ header img { font-weight: bold; } +/* +nav (menu) i footer (stopka) mają ciemnoszare tło (#625B5B), biały tekst i padding. +text-align: center – centruje zawartość. +*/ +nav, footer { + background-color: #625B5B; + color: white; + padding: 20px; + text-align: center; +} + +/* +a w nav to linki: +font-weight: bold – pogrubienie +background-color: #EAEAEA – jasny tło przycisków +color: #625B5B – ciemny kolor tekstu +padding: 10px – przestrzeń wewnątrz przycisku +margin: 50px – duża przestrzeń między linkami +border-radius: 20px – zaokrąglone rogi +text-decoration: none – usuwa podkreślenie linków +*/ +nav a { + font-weight: bold; + background-color: #EAEAEA; + color: #625B5B; + padding: 10px; + margin: 50px; + border-radius: 20px; + text-decoration: none; +} \ No newline at end of file