Adding black form styling.

This commit is contained in:
Geoff Montel 2019-07-09 22:54:01 +02:00
parent 5428b7fd4b
commit 3a3d0e95da

View file

@ -1,9 +1,7 @@
/* /*
=============================================================================== ===============================================================================
Unsplash themes for SSOWat's backgrounds This file contain extra CSS rules to customize the YunoHost user portal and
can be used to customize app tiles, buttons, etc...
WARNING: external images are queried from Unsplash API every time, which
makes this theme not suitable for off-the-internet clients...
=============================================================================== ===============================================================================
*/ */
@ -24,7 +22,6 @@ body {
} }
.ynh-user-portal { .ynh-user-portal {
/* If image is not yielded, fall back on traditional grey 'normal' background*/
background-image: url('https://source.unsplash.com/random/featured/?nature') !important; background-image: url('https://source.unsplash.com/random/featured/?nature') !important;
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: cover; background-size: cover;
@ -60,6 +57,22 @@ body {
border-radius: 5em; border-radius: 5em;
} }
/* Make form black */
.login-form label::before {
background: #000;
color: #FFF;
}
.login-form .form-group * {
background: #000;
color: #FFF;
}
.icon {
background: #000;
}
.messages { .messages {
border-radius: .5em; border-radius: .5em;
} }