98 lines
1.6 KiB
CSS
98 lines
1.6 KiB
CSS
/**
|
|
* General styles
|
|
* ==============
|
|
*/
|
|
|
|
.course-content {
|
|
max-width: 120ch;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.sectionname {
|
|
box-shadow: none;
|
|
border-radius: 0;
|
|
}
|
|
|
|
|
|
/**
|
|
* First section
|
|
* =============
|
|
*/
|
|
|
|
#section-0 {
|
|
background-color: transparent;
|
|
border: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
#section-0 .sectionname {
|
|
display: none;
|
|
}
|
|
|
|
#section-0 {
|
|
background-image: url(https://www.uni-bamberg.de/fileadmin/uni/verwaltung/presse/044_PRESSE/Pressebilder-offiziell/Gebaeude_neu/An-der-Weberei-5-Bild3.jpg);
|
|
background-size: cover;
|
|
background-position: center 61%;
|
|
}
|
|
|
|
/**
|
|
* Quick links
|
|
* ===========
|
|
*/
|
|
.wiai-quick-link-container {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-bottom: .5rem;
|
|
}
|
|
|
|
.wiai-quick-link {
|
|
height: 40px;
|
|
width: 40px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
padding: 4px;
|
|
margin: 2px;
|
|
background-color: var(--bg-color);
|
|
background-image: var(--bg-image);
|
|
background-position: center;
|
|
background-size: cover;
|
|
}
|
|
|
|
.wiai-quick-link:link,
|
|
.wiai-quick-link:hover,
|
|
.wiai-quick-link:visited,
|
|
.wiai-quick-link:active {
|
|
color: var(--color);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.wiai-quick-link .fa {
|
|
font-size: 200%;
|
|
}
|
|
|
|
/**
|
|
* Lanugage chooser
|
|
* ================
|
|
*/
|
|
div.wiai-language-chooser {
|
|
margin: 0;
|
|
}
|
|
|
|
div.wiai-language-chooser .wiai-language-option {
|
|
border: none;
|
|
margin: 0;
|
|
margin-bottom: 2px;
|
|
background-color: #e5ecf2;
|
|
font-weight: bold;
|
|
color: rgba(0,69,125,.5);
|
|
}
|
|
|
|
div.wiai-language-chooser .wiai-language-option.active {
|
|
background-color: rgb(0,69,125);
|
|
color: white;
|
|
}
|