54 lines
659 B
SCSS
54 lines
659 B
SCSS
@import "template.scss";
|
|
|
|
.row {
|
|
display: flex;
|
|
gap: 5px;
|
|
height: 24px;
|
|
cursor: pointer;
|
|
font-size: 18px;
|
|
align-items: flex-start;
|
|
margin-bottom: 3px;
|
|
}
|
|
|
|
.link {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
}
|
|
|
|
.location {
|
|
font-size: 22px;
|
|
font-weight: bold;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.cancelled {
|
|
text-decoration: line-through;
|
|
}
|
|
|
|
.symbol {
|
|
flex-shrink: 0;
|
|
width: 14px;
|
|
text-align: center;
|
|
}
|
|
|
|
.day {
|
|
flex-shrink: 0;
|
|
width: 90px;
|
|
}
|
|
|
|
.time {
|
|
display: inline-flex;
|
|
gap: 3px;
|
|
align-items: center;
|
|
}
|
|
|
|
.table {
|
|
width: 200px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.church {
|
|
margin-bottom: 20px;
|
|
}
|