Files
luos/workflow/engine/skinEngine/neoclassic/css/loginStyle.css

287 lines
5.8 KiB
CSS
Raw Normal View History

2015-04-09 16:25:47 -04:00
/*
* LOGIN PM3 STYLES
*/
2015-04-17 12:37:34 -04:00
@font-face {
font-family: "Chivo";
font-style: normal;
font-weight: normal;
src: local("?"), url("/fonts/Chivo-Regular.ttf") format("truetype");
}
2015-04-09 16:25:47 -04:00
body.login {
background: url("/images/backgroundpm3.jpg") repeat scroll 0 0 / cover rgba(0, 0, 0, 0);
2015-04-17 12:37:34 -04:00
//background-position-y: -30px;
font-family: "Chivo",sans-serif;
height: 100%;
2015-04-09 16:25:47 -04:00
}
.vertical-offset-100 {
2015-04-15 16:11:04 -04:00
padding-top: 90px;
2015-04-09 16:25:47 -04:00
}
img.img-responsive {
margin-bottom: 20px;
}
.img-responsive {
display: block;
height: auto;
margin: auto;
max-width: 100%;
}
.login .panel {
border-radius: 0;
padding: 20px;
}
.panel {
2015-04-15 16:11:04 -04:00
background-color: rgba(255, 255, 255, 0.8);
2015-04-09 16:25:47 -04:00
border: 1px solid transparent;
border-radius: 4px;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
margin-bottom: 20px;
2015-04-15 16:11:04 -04:00
margin-left: 50px;
margin-right: 50px;
2015-04-09 16:25:47 -04:00
}
.login .panel-default > .panel-heading {
background: none repeat scroll 0 0 transparent;
}
2015-04-15 16:11:04 -04:00
.login .panel-heading {
border-bottom: 1px solid transparent;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
padding: 5px 1px;
}
2015-04-09 16:25:47 -04:00
.module_app_input___gray {
2015-04-17 12:37:34 -04:00
font-family: "Chivo",sans-serif;
background-color: #fff;
2015-04-09 16:25:47 -04:00
background-image: none;
border: 1px solid #ccc;
border-radius: 4px;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
color: #555;
display: block;
font-size: 14px;
height: 34px;
line-height: 1.42857;
padding: 6px 12px;
transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
width: 100%;
}
2015-04-15 16:11:04 -04:00
.login .module_app_input___gray_file{
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 4px;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
color: #555;
display: block;
font-size: 14px;
2015-04-17 12:37:34 -04:00
//height: 45px;
box-sizing: border-box;
//padding-top: 12px;
2015-04-15 16:11:04 -04:00
line-height: 1.42857;
2015-04-17 12:37:34 -04:00
//padding: 9px 12px;
2015-04-15 16:11:04 -04:00
transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
width: 100%;
}
2015-04-09 16:25:47 -04:00
.form-signin .module_app_input___gray {
border-radius: 0;
box-sizing: border-box;
2015-04-15 16:11:04 -04:00
color: #444;
2015-04-09 16:25:47 -04:00
font-family: "Open Sans",Arial,Helvetica,sans-serif;
2015-04-17 12:37:34 -04:00
//font-family: "Chivo",sans-serif;
2015-04-09 16:25:47 -04:00
font-size: 16px;
height: 45px;
padding: 10px;
position: relative;
margin-bottom: 6px;
}
2015-04-17 13:40:33 -04:00
.form-signin .module_app_input___gray:-ms-input-placeholder {
font-family: "Open Sans",Arial,Helvetica,sans-serif;
color:#999;
}
2015-04-09 16:25:47 -04:00
.module_app_input___gray::-moz-placeholder {
color: #999;
opacity: 1;
}
.login .panel h3 {
margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
color: #444;
font-family: "Montserrat",sans-serif;
font-weight: 400;
margin: 0 0 30px;
}
p {
font-size: 16px;
line-height: 1.5em;
2015-04-15 16:11:04 -04:00
margin: 0 0 10px;
2015-04-09 16:25:47 -04:00
}
2015-04-15 16:11:04 -04:00
.panel-body table{
width: 100%;
}
2015-04-09 16:25:47 -04:00
2015-04-15 16:11:04 -04:00
.button-login-cancel{
2015-04-09 16:25:47 -04:00
background-image: none;
width: 100%;
color: #fff;
border-radius: 6px;
font-size: 18px;
line-height: 1.33;
padding: 10px 16px;
display: block;
padding-left: 0;
padding-right: 0;
width: 100%;
2015-04-15 16:11:04 -04:00
background: none repeat scroll 0 0 #e4655f;
border: 1px solid #e14333;
2015-04-09 16:25:47 -04:00
color: #fff;
font-weight: 700;
//transition: all 0.3s ease-in-out 0s;
max-width: 400px;
2015-04-15 16:11:04 -04:00
filter:none;
}
.button-login-cancel:hover{
background-color: #e14333;
background-image:none;
color: #fff;
filter:none;
2015-04-09 17:00:43 -04:00
}
2015-04-15 16:11:04 -04:00
.button-login-success{
2015-04-09 17:00:43 -04:00
background-image: none;
width: 100%;
color: #fff;
border-radius: 6px;
font-size: 18px;
line-height: 1.33;
padding: 10px 16px;
display: block;
padding-left: 0;
padding-right: 0;
width: 100%;
2015-04-15 16:11:04 -04:00
background: none repeat scroll 0 0 #1fbc99;
border: 1px solid #1fbc99;
2015-04-09 17:00:43 -04:00
color: #fff;
font-weight: 700;
//transition: all 0.3s ease-in-out 0s;
2015-04-15 16:11:04 -04:00
max-width: 400px;
2015-04-17 12:37:34 -04:00
filter:none;
2015-04-09 16:25:47 -04:00
}
2015-04-15 16:11:04 -04:00
.button-login-success:hover{
2015-04-09 16:25:47 -04:00
background-color: #1ba385;
background-image:none;
2015-04-09 17:00:43 -04:00
color: #fff;
filter:none;
2015-04-09 16:25:47 -04:00
}
2015-04-15 16:11:04 -04:00
.login-message{
border: 1px solid transparent;
border-radius: 4px;
margin-bottom: 20px;
padding: 15px;
text-align: center;
font-size: 13px;
line-height: 1.42857;
}
.login #temporalMessageWARNING{
padding: 15px;
background-color: #ffc85c;
border-color: #db9d22;
color: #4d380d;
}
.login #temporalMessageERROR{
padding: 15px;
background-color: #e87a75;
border-color: #e14333;
color: #5a1212;
}
.login #temporalMessageINFO{
padding: 15px;
background-color: #44afff;
border-color: #2481c5;
color: #0a263c;
}
.login #temporalMessageTD {
border-width: 0px;
font-size: normal 6pt !important;
height: 25px !important;
padding: 0 0px !important;
background-size: 100% 100% !important;
font-size: 11px;
}
2015-04-17 12:37:34 -04:00
.footer-login span{
2015-04-15 16:11:04 -04:00
color: white;
font-weight: 900;
2015-04-17 12:37:34 -04:00
font-size: 12px;
2015-04-15 16:11:04 -04:00
}
.login_result span{
margin-bottom: 6px;
display: block;
}
.login .module_app_inputFailed___gray{
2015-04-17 12:37:34 -04:00
font-family: "Chivo",sans-serif;
2015-04-15 16:11:04 -04:00
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 4px;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
color: #555;
display: block;
font-size: 14px;
height: 45px;
line-height: 1.42857;
padding: 9px 12px;
transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
width: 100%;
border:1px solid #e14333;
2015-04-17 12:37:34 -04:00
}
.page-wrap{
height: auto;
margin: 0 auto -60px;
min-height: 95%;
padding: 0 0 60px;
}
.page-wrap:after{
width: 100%;
display:block;
clear:both;
}
.footer-login{
text-align: center;
height: auto;
margin: -0px auto 0;
}
#form[FORGOT_PASWORD_LINK]{
font-family: Chivo;
font-size: 14px;
padding-top: 10px;
}