85 lines
1.3 KiB
CSS
85 lines
1.3 KiB
CSS
/*
|
|
* General styles
|
|
* ==============
|
|
*/
|
|
|
|
.course-content {
|
|
max-width: 120ch;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
/*
|
|
* First section
|
|
* =============
|
|
*/
|
|
|
|
#section-0 {
|
|
background-color: transparent;
|
|
border: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
#section-0 .sectionname {
|
|
display: none;
|
|
}
|
|
|
|
/**
|
|
* Quick links
|
|
* ===========
|
|
*/
|
|
.wiai-quick-link-container {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.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: #19adc6;
|
|
font-weight: bold;
|
|
color: rgba(255, 255, 255, .6);
|
|
}
|
|
|
|
div.wiai-language-chooser .wiai-language-option.active {
|
|
background-color: #038399;
|
|
color: white;
|
|
}
|