nav a
This commit is contained in:
parent
a9e4b4bafb
commit
10a2452ad3
@ -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;
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user