mirror of
https://github.com/humhub/humhub.git
synced 2025-01-18 06:38:14 +01:00
111 lines
1.6 KiB
Plaintext
111 lines
1.6 KiB
Plaintext
//
|
|
// General
|
|
// --------------------------------------------------
|
|
body {
|
|
padding-top: 130px;
|
|
background-color: @background-color-page;
|
|
color: @text-color-main;
|
|
font-family: 'Open Sans', sans-serif;
|
|
a,
|
|
a:hover,
|
|
a:focus,
|
|
a:active,
|
|
a.active {
|
|
color: @text-color-highlight;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 920px) {
|
|
body {
|
|
padding-top: 115px;
|
|
}
|
|
}
|
|
|
|
@media (min-width:768px) and (max-width:920px) {
|
|
body {
|
|
padding-top: 120px;
|
|
}
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
hr {
|
|
margin-top: 10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
// Cols (change position property to prevent the cutting of tooltips or menus)
|
|
.col-md-1,
|
|
.col-md-2,
|
|
.col-md-3,
|
|
.col-md-4,
|
|
.col-md-5,
|
|
.col-md-6,
|
|
.col-md-7,
|
|
.col-md-8,
|
|
.col-md-9,
|
|
.col-md-10,
|
|
.col-md-11,
|
|
.col-md-12 {
|
|
position: inherit;
|
|
}
|
|
|
|
.layout-content-container, .layout-nav-container {
|
|
padding: 0 10px 0 15px;
|
|
}
|
|
|
|
.layout-sidebar-container{
|
|
padding: 0 15px 0 5px;
|
|
}
|
|
|
|
@media (max-width:768px){
|
|
.layout-nav-container {
|
|
.left-navigation {
|
|
margin-bottom:0px;
|
|
}
|
|
}
|
|
|
|
.layout-nav-container, .layout-content-container {
|
|
padding: 0px 15px;
|
|
}
|
|
}
|
|
|
|
@media (min-width:768px) and (max-width:920px) {
|
|
#topbar-first, #topbar-second{
|
|
.container {
|
|
padding-left:10px;
|
|
padding-right:20px;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
h4 {
|
|
font-weight: 300;
|
|
font-size: 150%;
|
|
}
|
|
|
|
input[type=text],
|
|
input[type=password],
|
|
input[type=select] {
|
|
/* Remove First */
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
appearance: none;
|
|
}
|
|
|
|
.powered,
|
|
.powered a {
|
|
color: #b8c7d3 !important;
|
|
}
|
|
|
|
.langSwitcher {
|
|
display: inline-block;
|
|
}
|
|
|
|
[data-ui-show-more] {
|
|
overflow:hidden;
|
|
} |