2023-04-09 06:17:34 +11:00
|
|
|
#schedule {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: start;
|
|
|
|
align-items: flex-start;
|
|
|
|
align-content: flex-start;
|
|
|
|
margin-bottom: 5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.slot {
|
|
|
|
display: flex;
|
2023-04-09 17:29:44 +11:00
|
|
|
flex: 1;
|
|
|
|
justify-content: center;
|
|
|
|
text-align: center;
|
2023-04-09 06:17:34 +11:00
|
|
|
flex-direction: row;
|
2023-04-09 17:29:44 +11:00
|
|
|
margin: 0.3em;
|
2023-04-09 06:17:34 +11:00
|
|
|
font-size: 2em;
|
2023-04-09 11:12:29 +11:00
|
|
|
width: 22em;
|
2023-04-09 06:17:34 +11:00
|
|
|
}
|
|
|
|
|
2023-04-09 17:29:44 +11:00
|
|
|
.slot_info {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-content: flex-start;
|
|
|
|
}
|
|
|
|
|
2023-04-09 11:12:29 +11:00
|
|
|
.metadata, .data {
|
2023-04-09 06:17:34 +11:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: start;
|
|
|
|
align-content: flex-start;
|
2023-04-09 11:12:29 +11:00
|
|
|
padding: 0.5em;
|
|
|
|
border-style: solid;
|
|
|
|
}
|
|
|
|
|
|
|
|
.metadata {
|
|
|
|
width: 7.333em;
|
|
|
|
border-radius: 10px 0 0 10px;
|
|
|
|
background-color: var(--alt-bg-color);
|
|
|
|
color: var(--main-color);
|
2023-04-09 17:29:44 +11:00
|
|
|
border-color: var(--alt-bg-color);
|
2023-04-09 11:12:29 +11:00
|
|
|
font-family: pfdintextcompprothin;
|
|
|
|
border-width: 1px 0 0px 1px;
|
2023-04-09 17:29:44 +11:00
|
|
|
text-align: left;
|
2023-04-09 06:17:34 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
.data {
|
2023-04-09 11:12:29 +11:00
|
|
|
width: 14.666em;
|
|
|
|
background-color: var(--main-color);
|
|
|
|
color: var(--alt-main-color);
|
|
|
|
border-color: var(--main-color);
|
|
|
|
border-width: 1px 1px 1px 0;
|
|
|
|
font-family: pfdintextcompprothin;
|
2023-04-09 17:29:44 +11:00
|
|
|
text-align: left;
|
2023-04-09 11:12:29 +11:00
|
|
|
}
|
|
|
|
|
2023-04-09 17:29:44 +11:00
|
|
|
.metadata > .slot_info > .button {
|
2023-04-09 11:12:29 +11:00
|
|
|
font-size: 1em;
|
2023-04-09 17:29:44 +11:00
|
|
|
margin-right: 0.3em;
|
2023-04-09 11:12:29 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
.title {
|
2023-04-09 13:38:07 +11:00
|
|
|
font-family: pfdintextcompprothin;
|
|
|
|
font-weight: bold;
|
2023-04-09 17:29:44 +11:00
|
|
|
margin-bottom: 0.5em;
|
2023-04-09 11:12:29 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
.speakers {
|
|
|
|
font-family: pfdintextcompprothin;
|
2023-04-09 13:38:07 +11:00
|
|
|
font-weight: bold;
|
|
|
|
margin-bottom: 0.2em;
|
2023-04-09 11:12:29 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
.speaker_details {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.speaker_details .details {
|
|
|
|
visibility: hidden;
|
|
|
|
background-color: var(--main-color);
|
|
|
|
color: var(--alt-main-color);
|
|
|
|
text-align: center;
|
|
|
|
border-radius: 6px;
|
|
|
|
padding: 5px 0;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
opacity: 0;
|
2023-04-09 17:29:44 +11:00
|
|
|
transform: translateX(-50%) translateY(102%);
|
2023-04-09 11:12:29 +11:00
|
|
|
transition: opacity 1s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.speaker_details .details::after {
|
|
|
|
content: "";
|
|
|
|
position: relative;
|
|
|
|
margin-left: -5px;
|
|
|
|
border-width: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.speaker_details:hover .details {
|
|
|
|
visibility: visible;
|
|
|
|
opacity: 1;
|
|
|
|
font-size: 0.7em;
|
|
|
|
padding: 0.2em;
|
|
|
|
}
|
|
|
|
|
2023-04-09 17:29:44 +11:00
|
|
|
.speaker_details > .details > img,
|
|
|
|
.abstract > img {
|
2023-04-09 11:12:29 +11:00
|
|
|
max-width: 200px;
|
|
|
|
max-height: 200px;
|
|
|
|
float: left;
|
|
|
|
margin: 0 0.5em 0.5em 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.speaker_details > .details > p {
|
|
|
|
text-align: justify;
|
|
|
|
font-size: 0.5em;
|
|
|
|
}
|
|
|
|
|
2023-04-09 17:29:44 +11:00
|
|
|
.abstract > p {
|
2023-04-09 11:12:29 +11:00
|
|
|
text-align: justify;
|
2023-04-09 17:29:44 +11:00
|
|
|
font-size: 1em;
|
2023-04-09 06:17:34 +11:00
|
|
|
}
|
|
|
|
|
2023-04-09 11:12:29 +11:00
|
|
|
.data > .details {
|
2023-04-09 13:38:07 +11:00
|
|
|
font-family: pfdintextcompprothin;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-bottom: 0.2em;
|
2023-04-09 17:29:44 +11:00
|
|
|
font-size: 0.8em;
|
2023-04-09 06:17:34 +11:00
|
|
|
}
|
|
|
|
|
2023-04-09 11:12:29 +11:00
|
|
|
.data > .resources > .resource > a {
|
|
|
|
color: var(--main-bg-color);
|
2023-04-09 06:17:34 +11:00
|
|
|
}
|