thsf.net/src/thsf/static/css/planning.css

190 lines
3.2 KiB
CSS
Raw Normal View History

2023-04-08 21:17:34 +02:00
.slot {
display: flex;
2023-04-09 08:29:44 +02:00
flex: 1;
justify-content: center;
text-align: center;
2023-04-08 21:17:34 +02:00
flex-direction: row;
2023-04-09 23:56:56 +02:00
margin: 0.3em 0;
2023-04-11 10:10:25 +02:00
width: 21em;
2023-04-08 21:17:34 +02:00
}
2023-04-09 09:40:48 +02:00
.slot_info,
.slot_info_buttons {
2023-04-09 08:29:44 +02:00
display: flex;
flex-direction: row;
align-content: flex-start;
}
2023-04-09 02:12:29 +02:00
.metadata, .data {
2023-04-08 21:17:34 +02:00
display: flex;
flex-direction: column;
justify-content: start;
align-content: flex-start;
2023-04-09 02:12:29 +02:00
padding: 0.5em;
border-style: solid;
}
.metadata {
2023-04-11 10:10:25 +02:00
width: 7em;
2023-04-09 02:12:29 +02:00
border-radius: 10px 0 0 10px;
color: var(--main-color);
font-family: pfdintextcompprothin;
border-width: 1px 0 0px 1px;
2023-04-09 08:29:44 +02:00
text-align: left;
2023-04-08 21:17:34 +02:00
}
.data {
2023-04-11 10:10:25 +02:00
width: 14em;
2023-04-09 02:12:29 +02:00
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 08:29:44 +02:00
text-align: left;
2023-04-09 02:12:29 +02:00
}
2023-04-09 09:40:48 +02:00
.metadata > .slot_info_buttons > .button,
.metadata > .slot_info_buttons > .slot_info > .button {
2023-04-09 02:12:29 +02:00
font-size: 1em;
2023-04-09 08:29:44 +02:00
margin-right: 0.3em;
2023-04-09 02:12:29 +02:00
}
.title {
2023-04-09 04:38:07 +02:00
font-family: pfdintextcompprothin;
font-weight: bold;
2023-04-09 08:29:44 +02:00
margin-bottom: 0.5em;
2023-04-09 02:12:29 +02:00
}
.speakers {
font-family: pfdintextcompprothin;
2023-04-09 04:38:07 +02:00
font-weight: bold;
margin-bottom: 0.2em;
2023-04-09 02:12:29 +02:00
}
2023-04-09 09:40:48 +02:00
.speaker {
2023-04-09 02:12:29 +02:00
position: relative;
display: inline-block;
}
2023-04-09 09:40:48 +02:00
.speaker .details {
2023-04-09 02:12:29 +02:00
visibility: hidden;
background-color: var(--main-color);
color: var(--alt-main-color);
2023-04-09 09:40:48 +02:00
text-align: left;
padding: 1em;
border-radius: 6px;
position: absolute;
z-index: 1;
bottom: 0;
left: 0;
opacity: 0;
transition: opacity 1s;
2023-04-09 09:46:53 +02:00
transform: translateY(102%);
2023-04-09 09:40:48 +02:00
overflow-y: auto;
border-style: solid;
border-color: var(--alt-main-color);
border-width: 1px;
}
.speaker .details::after {
content: "";
position: relative;
margin-left: -5px;
border-width: 5px;
}
.speaker:hover .details {
visibility: visible;
opacity: 1;
font-size: 0.7em;
padding: 0.2em;
}
.speaker > .details > img,
.abstract > img {
max-width: 200px;
max-height: 200px;
float: left;
margin: 0 0.5em 0.5em 0;
}
.speaker > .details > p {
text-align: justify;
font-size: 0.5em;
}
.slot_info {
position: relative;
display: inline-block;
}
.slot_info .details {
visibility: hidden;
2023-04-10 01:45:10 +02:00
font-weight: bold;
2023-04-09 09:40:48 +02:00
background-color: var(--main-color);
color: var(--alt-main-color);
text-align: left;
padding: 1em;
2023-04-09 02:12:29 +02:00
border-radius: 6px;
position: absolute;
z-index: 1;
bottom: 0;
left: 0;
opacity: 0;
transition: opacity 1s;
2023-04-11 10:05:13 +02:00
transform: translateX(-2em) translateY(102%);
2023-04-11 10:17:00 +02:00
width: 28em;
2023-04-09 09:40:48 +02:00
overflow-y: auto;
border-style: solid;
border-color: var(--alt-main-color);
border-width: 1px;
}
.slot_info .details > .description {
margin-top: 1em;
2023-04-09 02:12:29 +02:00
}
2023-04-09 09:40:48 +02:00
.slot_info .details::after {
2023-04-09 02:12:29 +02:00
content: "";
position: relative;
margin-left: -5px;
border-width: 5px;
}
2023-04-09 09:40:48 +02:00
.slot_info:hover .details {
2023-04-09 02:12:29 +02:00
visibility: visible;
opacity: 1;
font-size: 0.7em;
padding: 0.2em;
}
2023-04-09 09:40:48 +02:00
.slot_info > .details > img,
2023-04-09 08:29:44 +02:00
.abstract > img {
2023-04-09 02:12:29 +02:00
max-width: 200px;
max-height: 200px;
float: left;
margin: 0 0.5em 0.5em 0;
}
2023-04-09 09:40:48 +02:00
.slot_info > .details > p {
2023-04-09 02:12:29 +02:00
text-align: justify;
font-size: 0.5em;
}
2023-04-09 08:29:44 +02:00
.abstract > p {
2023-04-09 02:12:29 +02:00
text-align: justify;
2023-04-09 08:29:44 +02:00
font-size: 1em;
2023-04-08 21:17:34 +02:00
}
2023-04-09 02:12:29 +02:00
.data > .details {
2023-04-09 04:38:07 +02:00
font-family: pfdintextcompprothin;
font-weight: bold;
margin-bottom: 0.2em;
2023-04-09 08:29:44 +02:00
font-size: 0.8em;
2023-04-08 21:17:34 +02:00
}
2023-04-09 02:12:29 +02:00
.data > .resources > .resource > a {
color: var(--main-bg-color);
2023-04-08 21:17:34 +02:00
}