Files
WeatherTool/web/src/css/menu.module.css
T

28 lines
357 B
CSS
Raw Normal View History

.menu {
padding: 8px 20px;
text-align: right;
}
.menu li{
display: inline;
padding: 10px 0 10px 10px;
cursor: pointer;
}
.menu li:not(:first-child)::before {
content: '•';
margin-right: 1ch;
}
2025-02-03 20:24:20 +02:00
.menu li a {
color: black;
text-decoration: none;
}
.menu li a:hover {
text-decoration: underline;
}
.active {
font-weight: bold;
}