mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-17 19:26:23 +00:00
35 lines
496 B
CSS
35 lines
496 B
CSS
header {
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 11;
|
|
display: grid;
|
|
grid-template-columns: minmax(130px, auto) 1fr;
|
|
gap: 30px;
|
|
height: 80px;
|
|
width: 100%;
|
|
padding: 10px;
|
|
background-color: white;
|
|
overflow: hidden;
|
|
}
|
|
|
|
header a.logo {
|
|
display: block;
|
|
}
|
|
|
|
header a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
header nav {
|
|
text-align: right;
|
|
}
|
|
|
|
header nav a {
|
|
display: inline-block;
|
|
padding: 5px 15px;
|
|
}
|
|
|
|
header nav a:hover {
|
|
text-decoration: underline;
|
|
}
|