drupal/core/themes/seven/install-page.css

50 lines
1.2 KiB
CSS

/**
* @file
* Installation styling.
*
* Unfortunately we have to make our styling quite strong, to override the
* .in-maintenance styling.
*/
.install-background {
background-color: #1275b2;
background-image:
url('images/noise-low.png'),
-webkit-radial-gradient(hsl(203, 80%, 45%), hsl(203, 80%, 32%));
background-image:
url('images/noise-low.png'),
-moz-radial-gradient(hsl(203, 80%, 45%), hsl(203, 80%, 32%));
background-image:
url('images/noise-low.png'),
-o-radial-gradient(hsl(203, 80%, 45%), hsl(203, 80%, 32%));
background-image:
url('images/noise-low.png'),
radial-gradient(hsl(203, 80%, 45%), hsl(203, 80%, 32%));
background-repeat: repeat;
background-position: left top, 50% 50%;
min-height: 100%;
}
/**
* Password widget
*/
.install-page .password-parent,
.install-page .confirm-parent {
width: auto;
}
.install-page .form-item .password-suggestions {
float: none;
width: auto;
}
@media all and (max-width: 1010px) and (min-width: 48em) {
.install-page .password-strength,
.install-page .confirm-parent,
.install-page .password-confirm {
float: none;
width: auto;
}
input.password-confirm,
input.password-field {
float: none;
}
}