egroupware/pixelegg/less/layout_loginPage.less

277 lines
5.6 KiB
Plaintext
Raw Normal View History

2013-11-11 19:45:33 +01:00
/**
* EGroupware: Stylite Pixelegg template
*
* Definitions for login page
*
* Please do NOT change css-files directly, instead change less-files and compile them!
*
* @link http://www.egroupware.org
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @author Stefan Reinhard <stefan.reinhard@pixelegg.de>
* @package pixelegg
* @version $Id$
*/
2013-11-14 20:11:29 +01:00
@import (reference) "def_buttons.less";
@import (reference) "def_design_pattern_color_font_shadow.less";
2013-12-12 21:27:20 +01:00
@import (reference) "layout_messages.less";
2013-11-11 19:45:33 +01:00
/* ##################################################################################
* login page
*
* ##################################################################################
*
*
*/
2013-12-12 21:27:20 +01:00
#loginMainDiv {
padding: 0px;
min-height: 720px;
height: 100%;
width: auto;
2013-11-11 19:45:33 +01:00
border-bottom: 0px solid #7E7E7E;
2014-04-01 11:14:34 +02:00
margin: 0 -2%;
background-color: @egw_color_2_e;
2013-11-11 19:45:33 +01:00
2013-12-12 21:27:20 +01:00
// Logo Leiste
#divAppIconBar{
margin-left:auto;
margin-right:auto;
background: transparent;
width: 100%;
text-align: center;
2013-11-11 19:45:33 +01:00
2013-12-12 21:27:20 +01:00
#divLogo {
margin-left:-2%;
margin-right:-2%;
2014-01-11 19:51:59 +01:00
margin-bottom: 2em;
2013-12-12 21:27:20 +01:00
position: relative;
top: 1px;
2014-01-20 19:34:20 +01:00
background-color: @egw_color_2_e;
img {
/*width: 70%;*/
/*margin-left: 15%;*/
margin: 0 auto;
max-width: 400px;
}
2014-01-11 19:51:59 +01:00
img[src$="svg"]{
width: 70%;
max-width: 2560px;
2014-01-11 19:51:59 +01:00
.gradient_vertical (@egw_color_2_e, @egw_color_2_e);
}
2013-12-12 21:27:20 +01:00
}
}
2013-11-11 19:45:33 +01:00
2013-12-12 21:27:20 +01:00
// Anmeldefenster / Box mit Mesaage + Form
div#centerBox{
2014-04-01 11:14:34 +02:00
margin: 0% auto;
2013-12-12 21:27:20 +01:00
width: 444px;
2014-02-12 09:10:04 +01:00
background-color: @gray_0;
2013-12-12 21:27:20 +01:00
z-index: 100;
2013-12-30 18:32:42 +01:00
.border_radius (5px, 5px, 5px, 25px);
2014-04-01 11:14:34 +02:00
/*.bordered (@egw_color_1_a, @egw_color_1_a, @egw_color_2_e, @egw_color_2_e );*/
2014-02-12 09:10:04 +01:00
border-width: 14px;
2013-11-11 19:45:33 +01:00
2013-12-12 21:27:20 +01:00
// Meldung
#loginScreenMessage{
margin: 1em;
2013-12-12 21:27:20 +01:00
}
2013-11-11 19:45:33 +01:00
2013-12-12 21:27:20 +01:00
// Message
#loginCdMessage{
margin: 1em;
2013-12-12 21:27:20 +01:00
.border_radius_button_lefttop;
color: red;
text-align: center;
padding-top: 1em;
2013-11-11 19:45:33 +01:00
2013-12-12 21:27:20 +01:00
// Text der Meldung
span {
padding: 0.5em;
font-size: 1.2em;
// .background-color-hint;
2013-12-30 18:32:42 +01:00
color: @color_hint;
2013-12-12 21:27:20 +01:00
text-shadow: -1px -1px 0px #101010, 1px 1px 0px #505050;
width: 100%;
}
}
2013-11-11 19:45:33 +01:00
2013-12-12 21:27:20 +01:00
// Formular
form{
margin: 1em;
2013-11-11 19:45:33 +01:00
2013-12-12 21:27:20 +01:00
table.divLoginbox {
2013-11-11 19:45:33 +01:00
2013-12-12 21:27:20 +01:00
// background-color: red;
.box_shadow_standard_light;
.border_radius_button_lefttop;
2013-11-11 19:45:33 +01:00
2013-12-12 21:27:20 +01:00
tr.divLoginboxHeader{}
2013-11-11 19:45:33 +01:00
2013-12-12 21:27:20 +01:00
td { padding: 0.5em;}
2013-11-11 19:45:33 +01:00
2013-12-12 21:27:20 +01:00
select {
.Complete_Button_select;
}
2013-11-11 19:45:33 +01:00
2013-12-12 21:27:20 +01:00
select:hover {
.Complete_Button_select_hover;
}
2013-11-11 19:45:33 +01:00
2013-12-12 21:27:20 +01:00
input {
.Complete_Button_input;
}
input:hover{
.Complete_Button_input_hover;
}
2013-11-11 19:45:33 +01:00
2013-12-12 21:27:20 +01:00
input:focus{
.Complete_Button_input_focus;
}
2013-11-11 19:45:33 +01:00
2013-12-12 21:27:20 +01:00
input[type="submit"] {
2013-12-30 18:32:42 +01:00
.background_color_egw_normal; // Orange
2013-12-12 21:27:20 +01:00
// Hintergrund in EGW Farbe
2013-12-30 18:32:42 +01:00
.color_100_gray;
2013-11-11 19:45:33 +01:00
2013-12-12 21:27:20 +01:00
}
2013-11-11 19:45:33 +01:00
2013-12-12 21:27:20 +01:00
input[type="submit"]:focus {
.Complete_Button_input_focus;
}
2013-11-11 19:45:33 +01:00
2013-12-12 21:27:20 +01:00
}
2013-11-11 19:45:33 +01:00
2013-12-12 21:27:20 +01:00
} // Formular
2013-11-11 19:45:33 +01:00
2013-12-12 21:27:20 +01:00
} //center box
2013-11-11 19:45:33 +01:00
2013-12-12 21:27:20 +01:00
} // #loginMainDiv
2013-11-11 19:45:33 +01:00
2013-12-12 21:27:20 +01:00
// Ende Login / Start #################################################
2013-11-11 19:45:33 +01:00
2014-01-18 09:11:23 +01:00
#wrap{
/* float: left;
z-index: -1;
margin: 0 auto;
background-color:transparent;
width: 100%;*/
div.animation_login{
2014-01-18 09:11:23 +01:00
margin: 0.3em;
position: fixed;
width: 100%;
bottom: 0;
}
2014-01-18 09:11:23 +01:00
img[src$="svg"],
background-image[url$="svg"]{
.gradient_vertical (@egw_color_2_e, @egw_color_2_e);
}
2014-01-18 09:11:23 +01:00
}
2014-01-18 09:11:23 +01:00
#img1, #img2, #img3, #img4 , #img5 , #img6 , #img7 , #img8 {
width:12%;
/*height:100%;*/
/*position:fixed;*/
/*top: 10em;*/
2014-01-11 19:51:59 +01:00
z-index:-1;
2014-01-11 19:51:59 +01:00
animation-name: test;
2014-01-14 09:20:19 +01:00
animation-duration: 8s;
animation-iteration-count: infinite;
2014-01-14 09:20:19 +01:00
-webkit-animation-name: test;
-webkit-animation-duration: 8s;
-webkit-animation-iteration-count: infinite;
2014-01-11 19:51:59 +01:00
opacity:0;
}
2014-01-14 09:20:19 +01:00
#img1 {
animation-delay:0s;
-webkit-animation-delay:0s
}
2014-01-11 19:51:59 +01:00
#img2 {
2014-01-18 09:11:23 +01:00
animation-delay:3s;
-webkit-animation-delay:3s
2014-01-11 19:51:59 +01:00
}
#img3 {
2014-01-18 09:11:23 +01:00
animation-delay:6s;
-webkit-animation-delay:6s
2014-01-11 19:51:59 +01:00
}
#img4 {
2014-01-18 09:11:23 +01:00
animation-delay:9s;
-webkit-animation-delay:9s
}
#img5 {
animation-delay:12s;
-webkit-animation-delay:12s
}
#img6 {
animation-delay:15s;
-webkit-animation-delay:15s
}
#img7 {
animation-delay:18s;
-webkit-animation-delay:18s
}
#img8 {
animation-delay:21s;
-webkit-animation-delay:21s
2014-01-11 19:51:59 +01:00
}
2014-01-14 09:20:19 +01:00
2014-01-11 19:51:59 +01:00
@-webkit-keyframes test {
0% {
opacity: 0;
}
50% {
opacity: 1;
}
100% {
2014-01-14 09:20:19 +01:00
opacity: 0;
2014-01-11 19:51:59 +01:00
}
}
2014-01-11 19:51:59 +01:00
@keyframes test {
0% {
opacity: 0;
}
50% {
opacity: 1;
}
100% {
2014-01-14 09:20:19 +01:00
opacity: 0;
2014-01-11 19:51:59 +01:00
}
}
2013-12-30 18:32:42 +01:00
//