2020-10-28 00:37:53 +01:00
|
|
|
html, body {
|
|
|
|
scrollbar-width: thin;
|
2021-01-11 00:17:56 +01:00
|
|
|
overflow: auto !important;
|
2021-03-24 21:05:21 +01:00
|
|
|
scrollbar-color: #FF4511 #111;
|
2021-02-27 00:51:55 +01:00
|
|
|
font-family: sans-serif;
|
2020-10-28 00:37:53 +01:00
|
|
|
}
|
2020-11-13 00:13:44 +01:00
|
|
|
|
|
|
|
li {
|
|
|
|
margin-left: 10px;
|
2021-03-05 14:11:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.v-dialog .theme--dark.v-card {
|
|
|
|
background-color: #434343;
|
2021-03-15 22:25:53 +01:00
|
|
|
}
|
|
|
|
|
2022-11-09 10:18:42 +01:00
|
|
|
.v-application {
|
|
|
|
font-family: sans-serif;
|
|
|
|
}
|
|
|
|
|
2021-03-15 22:25:53 +01:00
|
|
|
.v-application .p-description.text-body-1 {
|
|
|
|
letter-spacing: normal !important;
|
2021-03-16 19:55:54 +01:00
|
|
|
}
|
|
|
|
|
2022-11-09 10:18:42 +01:00
|
|
|
.v-main {
|
|
|
|
padding-top: 176px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.v-toolbar .v-list-item__subtitle,
|
|
|
|
.v-toolbar h4 {
|
|
|
|
white-space: break-spaces;
|
|
|
|
word-wrap: break-word;
|
|
|
|
word-break: break-word;
|
|
|
|
}
|
|
|
|
|
2021-03-16 19:55:54 +01:00
|
|
|
#home {
|
|
|
|
max-width: 1400px;
|
2021-05-20 10:31:11 +02:00
|
|
|
padding: 0px;
|
2021-03-16 19:55:54 +01:00
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
#events {
|
|
|
|
margin: 0 auto;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2022-11-09 10:18:42 +01:00
|
|
|
gap: 16px;
|
2022-11-09 19:47:13 +01:00
|
|
|
/* justify-content: center; */
|
2021-03-16 19:55:54 +01:00
|
|
|
}
|
|
|
|
|
2022-11-09 10:18:42 +01:00
|
|
|
@media only screen and (max-width: 600px) {
|
|
|
|
#events {
|
|
|
|
gap: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.calh {
|
2022-06-01 14:15:42 +02:00
|
|
|
/* this is to avoid content shift layout as v-calendar does not support SSR */
|
|
|
|
height: 268px;
|
2022-11-09 19:47:13 +01:00
|
|
|
max-width: 600px;
|
2022-02-04 22:35:15 +01:00
|
|
|
}
|
|
|
|
|
2021-03-16 19:55:54 +01:00
|
|
|
.container {
|
|
|
|
max-width: 1400px;
|
2021-03-19 12:01:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.v-dialog {
|
|
|
|
width: 600px;
|
|
|
|
max-width: 800px;
|
2022-06-11 11:59:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.v-dialog .v-dialog--fullscreen {
|
|
|
|
max-width: 100%;
|
2021-03-19 12:01:37 +01:00
|
|
|
}
|
|
|
|
|
2022-07-23 23:03:49 +02:00
|
|
|
.v-application p {
|
|
|
|
margin-bottom: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.v-application blockquote {
|
|
|
|
font-style: italic;
|
|
|
|
padding: 15px;
|
|
|
|
}
|
|
|
|
|
2022-08-26 15:19:09 +02:00
|
|
|
.editor .ProseMirror {
|
2022-07-23 23:03:49 +02:00
|
|
|
background-color: #f7f7f7;
|
|
|
|
}
|
|
|
|
|
2022-08-26 15:19:09 +02:00
|
|
|
.theme--dark .editor .ProseMirror {
|
2022-07-23 23:06:46 +02:00
|
|
|
background-color: #292929;
|
2022-07-23 23:03:49 +02:00
|
|
|
}
|
|
|
|
|
2021-03-19 12:01:37 +01:00
|
|
|
.theme--dark.v-list {
|
|
|
|
background-color: #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
.v-autocomplete__content.v-menu__content {
|
|
|
|
scrollbar-width: thin;
|
|
|
|
scrollbar-color: #FF4511 #111;
|
2021-03-24 21:05:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.event {
|
|
|
|
display: flex;
|
|
|
|
position: relative;
|
|
|
|
flex-direction: column;
|
|
|
|
width: 330px;
|
2021-04-26 23:18:50 +02:00
|
|
|
max-width: 500px !important;
|
2021-03-24 21:05:21 +01:00
|
|
|
flex-grow: 1;
|
2022-11-09 10:18:42 +01:00
|
|
|
/* margin-top: 16px;
|
|
|
|
margin-right: 16px; */
|
2021-04-26 23:18:50 +02:00
|
|
|
transition: all .5s;
|
2021-03-24 21:05:21 +01:00
|
|
|
overflow: hidden;
|
2022-05-03 15:23:55 +02:00
|
|
|
}
|
2021-03-24 21:05:21 +01:00
|
|
|
|
2022-05-03 15:23:55 +02:00
|
|
|
.event .title {
|
|
|
|
display: -webkit-box;
|
|
|
|
overflow: hidden;
|
|
|
|
margin: 0.5rem 1rem 0.5rem 1rem;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
-webkit-line-clamp: 3;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
font-size: 1.1em !important;
|
|
|
|
line-height: 1.2em !important;
|
2022-11-09 10:18:42 +01:00
|
|
|
/* text-decoration: none; */
|
2022-05-03 15:23:55 +02:00
|
|
|
}
|
2021-03-24 21:05:21 +01:00
|
|
|
|
2022-05-03 15:23:55 +02:00
|
|
|
.event .body {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
2021-03-24 21:05:21 +01:00
|
|
|
|
2022-05-03 15:23:55 +02:00
|
|
|
.event .place span {
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2021-03-24 21:05:21 +01:00
|
|
|
|
2022-05-05 11:08:28 +02:00
|
|
|
.event a {
|
2022-05-03 15:23:55 +02:00
|
|
|
text-decoration: none;
|
2021-04-26 23:18:50 +02:00
|
|
|
}
|
|
|
|
|
2022-11-09 10:18:42 +01:00
|
|
|
.event a:hover,
|
|
|
|
.event a:focus {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2021-04-26 23:18:50 +02:00
|
|
|
.vc-past {
|
|
|
|
opacity: 0.4;
|
|
|
|
}
|
|
|
|
|
|
|
|
#event {
|
|
|
|
max-width: 1200px;
|
2021-05-20 10:31:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.tags .v-chip .v-chip__content {
|
|
|
|
max-width: 120px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
display: block;
|
2021-06-25 12:11:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.cursorPointer {
|
|
|
|
cursor: pointer;
|
2021-12-06 15:58:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pre {
|
|
|
|
white-space: break-spaces;
|
|
|
|
font-size: 13px;
|
2022-08-26 15:19:09 +02:00
|
|
|
}
|