Add day markers between articles

This commit is contained in:
N-Pex 2024-10-09 15:09:24 +02:00
parent 275b323765
commit 8286c18020
2 changed files with 37 additions and 2 deletions

View file

@ -98,3 +98,32 @@ body {
.cs-main-container {
border-right: 1px solid #ccc;
}
.cs-day-marker {
width: 100%;
text-align: center;
height: 30px;
color: #aaa;
font-family: Roboto;
font-size: 14px;
position: relative;
display: flex;
align-items: center;
justify-content: center;
}
.cs-day-marker__line {
position: absolute;
content: " ";
height: 1px;
top: 15px;
left: 10px;
right: 10px;
background-color: #aaa;
}
.cs-day-marker__text {
position: relative;
width: fit-content;
padding: 10px;
}