-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from EurekaRanch/content_security_policy_fixes
content security policy fixes
Showing
3 changed files
with
110 additions
and
113 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
body { | ||
/*background: #ffffff;*/ | ||
background:url('https://drknbmw32n1iy.cloudfront.net/images/people_meeting_flipped.jpg') no-repeat center center fixed; | ||
background-size: cover; | ||
background-color: dimgrey; | ||
-webkit-background-size: 100% auto; | ||
-moz-background-size: 100% auto; | ||
-o-background-size: 100% auto; | ||
color: white; | ||
} | ||
.form-signin | ||
{ | ||
max-width: 330px; | ||
padding: 15px; | ||
margin: 0 auto; | ||
} | ||
.form-signin .form-signin-heading, .form-signin .checkbox | ||
{ | ||
margin-bottom: 10px; | ||
} | ||
.form-signin .checkbox | ||
{ | ||
font-weight: normal; | ||
} | ||
.form-signin .form-control | ||
{ | ||
position: relative; | ||
font-size: 16px; | ||
height: auto; | ||
padding: 10px; | ||
-webkit-box-sizing: border-box; | ||
-moz-box-sizing: border-box; | ||
box-sizing: border-box; | ||
} | ||
.form-signin .form-control:focus | ||
{ | ||
z-index: 2; | ||
} | ||
.form-signin input[type="text"] | ||
{ | ||
margin-bottom: -1px; | ||
border-bottom-left-radius: 0; | ||
border-bottom-right-radius: 0; | ||
} | ||
.form-signin input[type="password"] | ||
{ | ||
margin-bottom: 10px; | ||
border-top-left-radius: 0; | ||
border-top-right-radius: 0; | ||
} | ||
.account-wall | ||
{ | ||
margin-top: 20px; | ||
padding: 40px 0px 20px 0px; | ||
background-color: #f7f7f7; | ||
-moz-box-shadow: 0px 2px 30px black; | ||
-webkit-box-shadow: 0px 2px 30px black; | ||
box-shadow: 0px 2px 30px black; | ||
} | ||
.login-title | ||
{ | ||
color: #555; | ||
font-size: 18px; | ||
font-weight: 400; | ||
display: block; | ||
} | ||
.profile-img | ||
{ | ||
margin: 0 auto 10px; | ||
display: block; | ||
} | ||
.forgot-password-link { | ||
margin-top: 8px; | ||
} | ||
.sso-and-create-account-links { | ||
margin: 15px; | ||
padding: 5px; | ||
} | ||
.vertical-center { | ||
min-height: 100%; /* Fallback for browsers do NOT support vh unit */ | ||
min-height: 100vh; /* These two lines are counted as one :-) */ | ||
background-color: transparent; | ||
display: flex; | ||
align-items: center; | ||
} | ||
.content { | ||
background-color: transparent; | ||
} | ||
|
||
.login-logo { | ||
max-height: 125px; | ||
max-width: 100%; | ||
padding: 10px; | ||
} | ||
|
||
@media (max-width: 767px) { | ||
body { | ||
background-image: none; | ||
} | ||
} |
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