mirror of
https://github.com/moodle/moodle.git
synced 2025-02-24 03:53:49 +01:00
41 lines
732 B
CSS
41 lines
732 B
CSS
/* Custom CSS
|
|
-------------------------*/
|
|
div.logo {
|
|
background: url([[setting:logo]]) 0 0 no-repeat;
|
|
display: block;
|
|
float: left;
|
|
height: 75px;
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
img.small-logo {
|
|
float: left;
|
|
height: 35px;
|
|
margin: 3px 10px 3px 0;
|
|
}
|
|
|
|
@media (max-width: 767px) {
|
|
img.small-logo {
|
|
margin: 3px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
.navbar img.small-logo {
|
|
max-width: 150px;
|
|
}
|
|
/* Applying accesshide styles */
|
|
.navbar .small-logo-container + .brand {
|
|
position: absolute;
|
|
left: -10000px;
|
|
font-size: 1em;
|
|
font-weight: normal;
|
|
}
|
|
}
|
|
|
|
/* Custom CSS Settings
|
|
-------------------------*/
|
|
[[setting:customcss]]
|