Skip to content
Snippets Groups Projects
overrides.css 624 B
Newer Older
Andris Borbás's avatar
Andris Borbás committed
:root {
	color-scheme: light dark;
}

main {
	position: relative;
	max-height: 90vh;
	overflow-y: scroll;
}

body {
	background: none;
}

body::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("../img/rough_bg.jpg");
}

.day {
	height: 100%;
}

.dayEvents {
	max-width: 95%;
	grid-template-rows: repeat(24, 60px);
}

.dayName {
	position: sticky;
	top: 0;
}

.dayTimes {
	grid-template-rows: repeat(24, 60px);
}

.event {
	cursor: pointer;
}

.eventTitle {
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	overflow: hidden;
}