mirror of
https://github.com/YunoHost/SSOwat.git
synced 2024-09-03 20:06:27 +02:00
Adding black form styling.
This commit is contained in:
parent
5428b7fd4b
commit
3a3d0e95da
1 changed files with 18 additions and 5 deletions
|
@ -1,9 +1,7 @@
|
|||
/*
|
||||
===============================================================================
|
||||
Unsplash themes for SSOWat's backgrounds
|
||||
|
||||
WARNING: external images are queried from Unsplash API every time, which
|
||||
makes this theme not suitable for off-the-internet clients...
|
||||
This file contain extra CSS rules to customize the YunoHost user portal and
|
||||
can be used to customize app tiles, buttons, etc...
|
||||
===============================================================================
|
||||
*/
|
||||
|
||||
|
@ -24,7 +22,6 @@ body {
|
|||
}
|
||||
|
||||
.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-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
|
@ -60,6 +57,22 @@ body {
|
|||
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 {
|
||||
border-radius: .5em;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue