mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-20 20:49:15 +00:00
37 lines
540 B
CSS
37 lines
540 B
CSS
header {
|
|
display: flex;
|
|
background: white;
|
|
}
|
|
|
|
header .logo a {
|
|
display: inline-block;
|
|
padding: 10px 10px 7px 20px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
header ul {
|
|
margin: 0;
|
|
padding: 3px 10px 0 0;
|
|
list-style: none;
|
|
flex: 1;
|
|
text-align: right;
|
|
}
|
|
|
|
header li {
|
|
display: inline-block;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
header li a {
|
|
display: inline-block;
|
|
padding: 15px 10px;
|
|
text-decoration: none;
|
|
color: #1a1a1a;
|
|
font-weight: 500;
|
|
}
|
|
|
|
header li a:hover {
|
|
text-decoration: underline;
|
|
}
|