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

35 lines
653 B
CSS
Raw Normal View History

2024-11-05 12:14:12 +01:00
.content {
overflow: hidden;
}
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;
}
2024-10-15 13:10:47 +02:00
.footer a, .newerPostsButton {
2024-10-19 19:29:28 +02:00
cursor: pointer;
text-decoration: var(--button-text-decoration);
color: var(--button-desktop-text-color);
}
2024-10-15 13:10:47 +02:00
.footer a:hover, .newerPostsButton: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;
}
}