This repository has been archived on 2025-11-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
dashboard/widgets/timeline/timeline.scss
2022-09-20 00:27:25 +01:00

35 lines
785 B
SCSS

// ----------------------------------------------------------------------------
// Sass declarations
// ----------------------------------------------------------------------------
$background-color: #4b4b4b;
$title-color: rgba(255, 255, 255, 0.7);
$moreinfo-color: rgba(255, 255, 255, 0.7);
// ----------------------------------------------------------------------------
// Widget-text styles
// ----------------------------------------------------------------------------
.widget-timeline {
background-color: $background-color;
padding-bottom: 70px;
.title {
color: $title-color;
}
.more-info {
color: $moreinfo-color;
}
.event-description {
fill: white;
font-size: 14px;
}
.event-description-date {
fill: white;
font-size: 12px;
}
}