-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
798 additions
and
361 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
.pw { | ||
|
||
/* login page form */ | ||
body.ProcessLogin { | ||
|
||
background: #222; | ||
|
||
box-shadow: inset 0px 0px 127px 0px rgba(0, 0, 5, 0.5), | ||
0 0px 1px 0px rgba(0, 0, 0, 0.95), | ||
0 10px 50px -30px @theme-primary-color-rgba; | ||
|
||
#pw-masthead-mobile .pw-logo { | ||
filter: invert(100%); | ||
} | ||
#main { | ||
input { | ||
border-radius: 4px; | ||
background-color: rgba(40, 40, 40, 0.3); | ||
color: #eee; | ||
border-color: #000; | ||
&:hover, | ||
&:focus { | ||
background-color: rgba(60, 60, 60, 0.4); | ||
color: #fff; | ||
} | ||
&:focus { | ||
border-color: #999; | ||
} | ||
} | ||
label { | ||
color: lighten(@theme-muted-text-color-alternate, 20%); | ||
} | ||
button { | ||
background-color: lighten(@theme-muted-text-color-alternate, 30%); | ||
color: #000; | ||
&:hover { | ||
color: lighten(@theme-muted-text-color-alternate, 30%); | ||
background-color: #000; | ||
} | ||
} | ||
} | ||
#socialsLoginForm ul.Inputfields { | ||
|
||
.ui-button { | ||
&.ui-state-default { | ||
background-color: #151515; | ||
box-shadow: none; | ||
color: lighten(@theme-muted-text-color-alternate, 20%); | ||
} | ||
} | ||
} | ||
|
||
#pw-content-body { | ||
// password links | ||
>div { | ||
a { | ||
color: lighten(@theme-muted-text-color-alternate, 15%); | ||
&:hover { | ||
color: #fff; | ||
text-decoration: none; | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.