mirror of
https://github.com/zokradonh/kopano-docker
synced 2025-06-07 07:56:12 +00:00
48 lines
1.9 KiB
CSS
48 lines
1.9 KiB
CSS
/**
|
|
* @author Jan-Christoph Borchardt, http://jancborchardt.net
|
|
* @copyright Copyright (c) 2018, ownCloud GmbH
|
|
* @license AGPL-3.0
|
|
*
|
|
* This code is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
* as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
*/
|
|
|
|
|
|
/* header color */
|
|
/* this is the main brand color */
|
|
#body-user #header,
|
|
#body-settings #header,
|
|
#body-public #header {
|
|
background-color: #0f70bd;
|
|
}
|
|
|
|
/* log in screen background color */
|
|
/* gradient of the header color and a brighter shade */
|
|
/* can also be a flat color or an image */
|
|
#body-login {
|
|
background: #0f70bd; /* Old browsers */
|
|
background: -moz-linear-gradient(top, #0f70bd 0%, #666768 100%); /* FF3.6+ */
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0f70bd), color-stop(100%,#666768)); /* Chrome,Safari4+ */
|
|
background: -webkit-linear-gradient(top, #0f70bd 0%,#666768 100%); /* Chrome10+,Safari5.1+ */
|
|
background: -o-linear-gradient(top, #0f70bd 0%,#666768 100%); /* Opera11.10+ */
|
|
background: -ms-linear-gradient(top, #0f70bd 0%,#666768 100%); /* IE10+ */
|
|
background: linear-gradient(top, #0f70bd 0%,#666768 100%); /* W3C */
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0f70bd', endColorstr='#666768',GradientType=0 ); /* IE6-9 */
|
|
}
|
|
|
|
/* hide on small screens */
|
|
@media only screen and (max-width: 767px) {
|
|
#body-user #logo-claim {
|
|
display: none !important;
|
|
}
|
|
}
|