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
|
|
|
}
|
|
|
|
|
|
|
|
.v-application .p-description.text-body-1 {
|
|
|
|
letter-spacing: normal !important;
|
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;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
|
|
|
max-width: 1400px;
|
2021-03-19 12:01:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.v-dialog {
|
|
|
|
width: 600px;
|
|
|
|
max-width: 800px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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
|
|
|
|
.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;
|
|
|
|
margin-top: .4em;
|
|
|
|
margin-right: .4em;
|
2021-04-26 23:18:50 +02:00
|
|
|
transition: all .5s;
|
2021-03-24 21:05:21 +01:00
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
.title {
|
2021-04-26 23:18:50 +02:00
|
|
|
transition: all .5s;
|
2021-03-24 21:05:21 +01:00
|
|
|
display: block;
|
2021-05-20 10:31:11 +02:00
|
|
|
max-height: 3em;
|
2021-04-26 23:18:50 +02:00
|
|
|
color: white;
|
2021-03-24 21:05:21 +01:00
|
|
|
overflow: hidden;
|
|
|
|
margin: 0.5rem 1rem 0.5rem 1rem;
|
2021-04-26 23:18:50 +02:00
|
|
|
font-size: 1.1em !important;
|
2021-05-20 10:31:11 +02:00
|
|
|
line-height: 1em !important;
|
2021-03-24 21:05:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.body {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.img {
|
|
|
|
width: 100%;
|
|
|
|
max-height: 250px;
|
2021-04-26 23:18:50 +02:00
|
|
|
min-height: 160px;
|
|
|
|
background-color: #222;
|
2021-03-24 21:05:21 +01:00
|
|
|
object-fit: cover;
|
|
|
|
object-position: top;
|
|
|
|
}
|
|
|
|
|
|
|
|
.place {
|
|
|
|
max-width: 100%;
|
|
|
|
span {
|
|
|
|
display: block;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2021-04-26 23:18:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.v-list {
|
|
|
|
background-color: #333 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
2020-11-13 00:13:44 +01:00
|
|
|
}
|