/**
 * @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: #c0c0c0;
}

.header-appname {
  color: #1782c5;
  text-transform: uppercase;
}

#header .burger {
  border-top: 2px solid #1782c5;
  border-bottom: 2px solid #1782c5;
}

#header .burger:before {
  background-color: #1782c5;
}

#header .logo-icon {
  background-image: url('../img/quixcloud.png');
  height: 34px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-size: 272px 34px;
  padding-left: 200px;
}

#expand {
  color: #1782c5;
}
#expand:after {
  border-color: #1782c5 transparent transparent transparent;
}

#expand:hover {
  color: #1782c5;
}

#expand:hover:after {
  border-color: #1782c5 transparent transparent transparent;
}

/* Login Seite */
#body-login {
  background: #ffffff;
}

#header .logo {
  background-image: url('../img/quixcloud.png');
}

#body-login input[type='text'] {
  width: 249px;
  outline: none;
  border: 1px solid #b2b9c4;
  border-bottom-color: #a4acb9;
  border-radius: 3px;
  color: inherit;
  background: #ffffff;
}
#body-login input[type='password'] {
  width: 271px;
  outline: none;
  border: 1px solid #b2b9c4;
  border-bottom-color: #a4acb9;
  border-radius: 3px;
  color: inherit;
  background: #ffffff;
}

/*Public Link Seite*/
#body-public #save-button {
  display: none;
}

/* 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: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 0%, #ffffff 100%);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, #ffffff),
    color-stop(100%, #ffffff)
  );
  background: -webkit-linear-gradient(
    top,
    #947bea 0%,
    #745bca 100%
  );
  background: -o-linear-gradient(
    top,
    #947bea 0%,
    #745bca 100%
  );
  background: -ms-linear-gradient(top, #947bea 0%, #745bca 100%);
  background: linear-gradient(top, #947bea 0%, #745bca 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#947bea', endColorstr='#745bca',GradientType=0 );
} */

/* primary action button, use sparingly */
/* header color as border, brighter shade again, here as background */ /*
.primary,
input[type='submit'].primary,
input[type='button'].primary,
button.primary,
.button.primary,
.primary:active,
input[type='submit'].primary:active,
input[type='button'].primary:active,
button.primary:active,
.button.primary:active {
  border-color: #745bca;
  background-color: #947bea;
}
.primary:hover,
input[type='submit'].primary:hover,
input[type='button'].primary:hover,
button.primary:hover,
.button.primary:hover,
.primary:focus,
input[type='submit'].primary:focus,
input[type='button'].primary:focus,
button.primary:focus,
.button.primary:focus {
  background-color: #8b75e4;
}
.primary:active,
input[type='submit'].primary:active,
input[type='button'].primary:active,
button.primary:active,
.button.primary:active,
.primary:disabled,
input[type='submit'].primary:disabled,
input[type='button'].primary:disabled,
button.primary:disabled,
.button.primary:disabled,
.primary:disabled:hover,
input[type='submit'].primary:disabled:hover,
input[type='button'].primary:disabled:hover,
button.primary:disabled:hover,
.button.primary:disabled:hover,
.primary:disabled:focus,
input[type='submit'].primary:disabled:focus,
input[type='button'].primary:disabled:focus,
button.primary:disabled:focus,
.button.primary:disabled:focus {
  background-color: #745bca;
}
*/
/* use logos from theme */ /*
#header .logo {
  background-image: url('../img/logo.svg');
  width: 250px;
  height: 121px;
}
#header .logo-icon {
  background-image: url('../img/logo-icon.svg');
  height: 34px;
}
*/
