mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-08-06 22:26:33 +02:00
21 lines
454 B
CSS
21 lines
454 B
CSS
/**
|
|
* A collection of popular layouts and patterns made with CSS (https://csslayout.io)
|
|
* (c) 2019 - 2021 Nguyen Huu Phuoc <https://twitter.com/nghuuphuoc>
|
|
*/
|
|
|
|
.header {
|
|
background-color: var(--background-color);
|
|
}
|
|
.header__nav {
|
|
align-items: center;
|
|
display: flex;
|
|
font-size: 1.2rem;
|
|
}
|
|
.header__nav a:first-child {
|
|
margin-left: 0;
|
|
margin-right: auto;
|
|
}
|
|
.header__nav a {
|
|
color: var(--color-gray-9);
|
|
margin-left: 1rem;
|
|
} |