Hi, I am using Mobilizer simulator to view webix pages but the webix pages are not uniform in all simulators. I do have an urgent requirement. Can someone help me on this asap?
Below is the code -
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="../../codebase/webix.css" type="text/css" media="screen" charset="utf-8">
<script src="../../codebase/webix.js" type="text/javascript" charset="utf-8"></script>
<title>Login Page</title>
<style>
.webix_layout_toolbar1 {
color: #1E2022!important;
background-color: #2281BB;
background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#EAF3FF),color-stop(50%,#2281BB),color-stop(100%,#2281BB));
background-image: -webkit-linear-gradient(top,#2281BB 0,#2281BB 50%,#2281BB 100%);
background-image: -moz-linear-gradient(top,#2281BB 0,#2281BB 60%,#2281BB 100%);
background-image: -ms-linear-gradient(top,#2281BB 0,#2281BB 60%,#2281BB 100%);
background-image: -o-linear-gradient(top,#2281BB 0,#2281BB 60%,#2281BB 100%);
background-position: 0 1px;
background-repeat: repeat-x;
}
.bt_1 input{
font-weight:bold;
}
.bt_1 input:active{
background: #396D9E;
}
.t02 input{
border-radius:12px; -moz-border-radius:12px; -webkit-border-radius:12px;
background: #F2F4F5;
background: -moz-linear-gradient(top, #F2F4F5 0% , #F2F4F5 100%);
border:1px solid #F2F4F5;
box-shadow: inset 0px 1px 1px #F2F4F5;
-webkit-box-shadow: inset 0px 1px 1px #F2F4F5;
color:#000000;
text-shadow:0 -1px 0 #000000;
font-family:Tahoma;
}
.t01{
border-radius:12px; -moz-border-radius:12px; -webkit-border-radius:12px;
background: #F2F4F5;
background: -moz-linear-gradient(top, #F2F4F5 0% , #F2F4F5 100%);
border:1px solid #F2F4F5;
box-shadow: inset 0px 1px 1px #F2F4F5;
-webkit-box-shadow: inset 0px 1px 1px #F2F4F5;
color:#000000;
text-shadow:0 -1px 0 #000000;
font-family:Tahoma;
}
</style>
</head>
<body style="background: #F2F4F5">
<div id='layout_div' style=" position:absolute;width:300px;height:200px;z-index:15;top:45%;left:47%;margin:-100px 0 0 -150px;"></div>
<div id='areaB' align="center"></div>
<script type="text/javascript" charset="utf-8">
webix.ui({
container:"layout_div",
type:"clean",
id:"layout",
align:"center",
rows:[
{},
{container:"header",
view:"toolbar",
css:"webix_layout_toolbar1",
cols:[
{ view:"label",label:"<font color=white align=center><b>XXXXXXXXXX</b></font>",align:"center"}
]},
{
id:"a1",
container:"areaA",
view:"form", scroll:false,
elements:[
{ view:"text", placeholder:"Email",width:301,align:"center"},
{ view:"text", type:'password',placeholder:"Password",width:301,align:"center"},
{view:"button",css:"bt_1",value:"Login" ,type:"form",width:301,align:"center",click:"navigation"},
{ view:"label", label:"<a href='forgot Password.html'><b>Forgot Password?</b></a>",align:"right"},
{ view:"label", label:"xxxxxxx<a href='vvvvv.html'><b>Sign Up</b></a>",align:"center"},
]
}
]
}).show();
</script>
</body>
</html>