Files
5chan/src/views/board/board.module.css
T

30 lines
556 B
CSS
Raw Normal View History

2024-04-08 12:33:59 +02:00
.footer {
2024-10-13 18:49:45 +02:00
color: var(--post-mobile-abbr-text-color);
padding: 15px 0 10px 5px;
}
.footer a {
text-decoration: var(--button-text-decoration);
color: var(--button-desktop-text-color);
}
.footer a:hover {
color: var(--button-desktop-text-color-hover);
2024-03-18 15:04:30 +01:00
}
2024-04-08 18:17:20 +02:00
.button {
text-transform: capitalize;
color: var(--button-desktop-text-color);
text-decoration: var(--button-text-decoration);
}
.button:hover {
color: var(--button-desktop-text-color-hover);
cursor: pointer;
}
2024-04-10 13:16:07 +02:00
@media (max-width: 640px) {
2024-04-08 18:17:20 +02:00
.footer {
padding-left: 5px;
}
}