Commit 6d30ce10da7fab7a4d8f90c831bc95871349d79d

Authored by Leandro Santos
1 parent 3c99fe74

ajeitando tela de login

Showing 1 changed file with 144 additions and 0 deletions   Show diff stats
style.css
... ... @@ -1155,3 +1155,147 @@ div#notice {
1155 1155 #content .common-profile-list-block .profiles-suggestions .profile-list li{
1156 1156 height: 50px;
1157 1157 }
  1158 +
  1159 +/* PopUp Login*/
  1160 +
  1161 +#colorbox {
  1162 + left: -350px !important;
  1163 + margin-left: 50% !important;
  1164 + width: 700px !important;
  1165 +}
  1166 +
  1167 +#cboxWrapper {
  1168 + padding: 15px;
  1169 + position: relative;
  1170 + width: auto !important;
  1171 + /* height: auto !important;*/
  1172 +}
  1173 +
  1174 +#cboxContent{
  1175 + float: none !important;
  1176 + width: auto !important;
  1177 + height: auto !important;
  1178 + padding: 20px;
  1179 +}
  1180 +
  1181 +#cboxLoadedContent{
  1182 + width: auto !important;
  1183 + height: auto !important;
  1184 +}
  1185 +
  1186 +#colorbox .login-box .button-bar a.icon-close{
  1187 + width: auto !important;
  1188 +}
  1189 +
  1190 +#cboxMiddleLeft{
  1191 + float: none !important;
  1192 + height: auto !important;
  1193 +}
  1194 +
  1195 +#cboxTopCenter {
  1196 + height: auto !important;
  1197 +}
  1198 +
  1199 +#colorbox .login-box{
  1200 + width: 100%;
  1201 + background: url("images/img_login_popUp.png") no-repeat scroll 90% 50% #FFFFFF;
  1202 +}
  1203 +
  1204 +#colorbox .login-box h2{
  1205 + background: url("images/bg-titulo-login.png") no-repeat scroll 70px 7px #FFFFFF;
  1206 + color: #757575;
  1207 + font-size: 20px;
  1208 + font-style: italic;
  1209 + font-weight: normal;
  1210 + width: 45%;
  1211 +}
  1212 +
  1213 +#colorbox .login-box form {
  1214 + margin: 0;
  1215 + width: 45%;
  1216 + /*background: url("images/img_login_popUp.png") no-repeat scroll 70% 30% #FFFFFF;*/
  1217 +}
  1218 +
  1219 +#colorbox .login-box .formfieldline input {
  1220 + width: 95%;
  1221 +}
  1222 +
  1223 +#colorbox .login-box .button-bar input.icon-login {
  1224 + background: url("images/btn_entrar_login.png") no-repeat scroll 0 0 #FFFFFF;
  1225 + border: 0px none;
  1226 + font-family: arial,sans-serif;
  1227 + font-size: 16px;
  1228 + font-weight: bold;
  1229 + height: 50px !important;
  1230 + max-height: 50px !important;
  1231 + padding: 0;
  1232 + text-transform: uppercase;
  1233 + width: 145px;
  1234 + cursor: pointer;
  1235 +}
  1236 +
  1237 +#colorbox .login-box .button-bar input.icon-login:hover {
  1238 + background-image: url("images/btn_entrar_login_hover.png");
  1239 +}
  1240 +
  1241 +#colorbox .login-box .button-bar a.icon-close {
  1242 + /*background: url("images/btn_cancelar_login.png") repeat-x scroll 0 0 #FFFFFF;*/
  1243 + background-color: #FCE9E8;
  1244 + background-image: none;
  1245 + border: 0 none;
  1246 + border-radius: 5px 5px 5px 5px;
  1247 + color: #CE5E5E;
  1248 + font-size: 16px;
  1249 + font-weight: bold;
  1250 + height: 35px;
  1251 + padding: 14px 13px 0;
  1252 + text-align: center;
  1253 + text-transform: uppercase;
  1254 + width: 115px;
  1255 +}
  1256 +#colorbox .login-box .button-bar a.icon-close:hover {
  1257 + background-color: #FFD1CF;
  1258 +}
  1259 +
  1260 +#colorbox .login-box .button-bar input.submit,
  1261 +#colorbox .login-box .button-bar a.icon-close {
  1262 + border: 0px none;
  1263 +}
  1264 +
  1265 +#colorbox .login-box .button-bar {
  1266 + float: none;
  1267 + margin-bottom: 1em;
  1268 + margin-top: 1em;
  1269 + width: 100%;
  1270 +}
  1271 +
  1272 +#colorbox .login-box .button-bar .icon-add{
  1273 + background-image: none;
  1274 + color: #004B82;
  1275 + float: right;
  1276 + font-size: 16px;
  1277 + font-weight: bold;
  1278 + margin-right: 75px;
  1279 + padding: 10px;
  1280 + position: relative;
  1281 + text-align: center;
  1282 + top: -3em;
  1283 + width: 30%;
  1284 +}
  1285 +
  1286 +
  1287 +#colorbox .login-box .button-bar .icon-help{
  1288 +
  1289 +}
  1290 +
  1291 +#colorbox .login-box form .button-bar {
  1292 + float: none;
  1293 + width: 100%
  1294 +}
  1295 +
  1296 +
  1297 +#colorbox .login-box .button-bar a.button.icon-help,
  1298 +#colorbox .login-box .button-bar a.button.icon-add {
  1299 + display: none;
  1300 +}
  1301 +
... ...