46193ab5fe
The primary license of the project is changing to: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later with some specific files to be licensed under the one of two licenses: CC0-1.0 LGPL-3.0-or-later This commit is one of the many steps to relicense the entire codebase. Documentation granting permission for this relicensing (from all past contributors who hold copyrights) is on file with Software Freedom Conservancy, Inc.
39 lines
885 B
SCSS
39 lines
885 B
SCSS
/* License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later */
|
|
@import 'mixins';
|
|
|
|
.eventPreview--small {
|
|
position: relative;
|
|
overflow: hidden;
|
|
border-bottom: 1px solid rgba($grey, 0.2);
|
|
}
|
|
.eventPreview--small:nth-of-type(2n -1){
|
|
background: rgba($sky, 0.02);
|
|
}
|
|
.eventPreview--small-cal {
|
|
width: 55px;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
text-align: center;
|
|
background: white;
|
|
border-left: 1px solid rgba($grey, 0.05);
|
|
border-right: 1px solid rgba($grey, 0.05);
|
|
font-size: 15px;
|
|
font-weight: bold;
|
|
@include open-sans-condensed;
|
|
}
|
|
.eventPreview--small-month {
|
|
text-transform: uppercase;
|
|
background: rgba($charcoal, 0.5);
|
|
display: inline-block;
|
|
width: 100%;
|
|
line-height: 28px;
|
|
color: white;
|
|
}
|
|
.eventPreview--small-day {
|
|
line-height: 42px;
|
|
color: rgba($charcoal, 0.7);
|
|
}
|
|
.eventPreview--small-text {
|
|
padding: 5px 5px 10px 65px;
|
|
}
|