forked from Fediversity/Fediversity
53 lines
737 B
SCSS
Executable file
53 lines
737 B
SCSS
Executable file
// Add your own custom styles here
|
|
.grid-container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.column {
|
|
flex-basis: calc(50% - 10px); /* Adjust width as necessary */
|
|
}
|
|
|
|
.list {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.list-item {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.link {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
}
|
|
|
|
.title {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.hr-list {
|
|
border: 0;
|
|
border-top: 1px solid #ccc;
|
|
margin-top: 5px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.list-item {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.content {
|
|
flex: 1;
|
|
}
|
|
|
|
.link {
|
|
text-align: left;
|
|
}
|
|
|
|
.time {
|
|
text-align: right;
|
|
}
|
|
|