gancio-upstream/assets/style.css

122 lines
1.8 KiB
CSS
Raw Normal View History

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;
}
#home {
max-width: 1400px;
2021-05-20 10:31:11 +02:00
padding: 0px;
overflow: hidden;
}
#events {
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
#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;
}
.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
}
.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;
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;
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-05-05 11:08:28 +02: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
}
.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;
}
pre {
white-space: break-spaces;
font-size: 13px;
2020-11-13 00:13:44 +01:00
}