2015-06-18 16:59:41 +00:00
|
|
|
|
2014-08-25 12:48:16 +00:00
|
|
|
#disable_welcome {
|
|
|
|
display:none;
|
|
|
|
}
|
|
|
|
|
2014-08-27 10:28:08 +00:00
|
|
|
.disable_welcome_position
|
|
|
|
{
|
|
|
|
margin: -139px auto 0px auto;
|
|
|
|
padding-left: 39px;
|
|
|
|
padding-top: 7px;
|
|
|
|
width: 269px;
|
|
|
|
height: 31px;
|
|
|
|
display:block;
|
|
|
|
}
|
|
|
|
|
2014-08-25 12:48:16 +00:00
|
|
|
#disable_welcome + label
|
|
|
|
{
|
|
|
|
background-image: url(../images/welcome_page/disable-welcome.png);
|
|
|
|
cursor: pointer;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 16px;
|
|
|
|
color: #acacac;
|
2014-08-26 10:54:43 +00:00
|
|
|
z-index: 2;
|
2014-08-25 12:48:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#disable_welcome:checked + label
|
|
|
|
{
|
|
|
|
background-image: url(../images/welcome_page/disable-welcome-selected.png);
|
|
|
|
cursor: pointer;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 16px;
|
|
|
|
color: #acacac;
|
2014-08-26 10:54:43 +00:00
|
|
|
z-index: 2;
|
2014-08-25 12:48:16 +00:00
|
|
|
}
|
|
|
|
|
2014-08-26 10:54:43 +00:00
|
|
|
#enter_room_form {
|
2016-02-26 23:19:03 +00:00
|
|
|
border-radius: 1px;
|
2014-08-26 10:54:43 +00:00
|
|
|
background-color: #FFFFFF;
|
2014-08-25 12:48:16 +00:00
|
|
|
border: none;
|
2016-02-26 23:19:03 +00:00
|
|
|
-moz-border-radius: 1px;
|
|
|
|
-webkit-border-radius: 1px;
|
2014-08-25 12:48:16 +00:00
|
|
|
-webkit-appearance: none;
|
|
|
|
height: 55px;
|
2014-08-26 10:54:43 +00:00
|
|
|
box-shadow: none;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
#domain_name
|
|
|
|
{
|
|
|
|
float: left;
|
2016-06-23 19:48:38 +00:00
|
|
|
height: 55px;
|
|
|
|
line-height: 55px;
|
2014-08-26 10:54:43 +00:00
|
|
|
font-size: 18px;
|
|
|
|
font-weight: 500;
|
2016-06-23 19:48:38 +00:00
|
|
|
padding-left: 20px;
|
2014-08-26 10:54:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#enter_room_field {
|
2014-09-22 12:24:44 +00:00
|
|
|
font-size: 15px;
|
2014-08-26 10:54:43 +00:00
|
|
|
border: none;
|
|
|
|
-webkit-appearance: none;
|
|
|
|
width: 228px;
|
|
|
|
height: 55px;
|
2016-06-23 19:48:38 +00:00
|
|
|
line-height: 55px;
|
2014-08-25 12:48:16 +00:00
|
|
|
font-weight: 500;
|
|
|
|
box-shadow: none;
|
2014-08-26 10:54:43 +00:00
|
|
|
float: left;
|
|
|
|
background-color: #FFFFFF;
|
|
|
|
position: relative;
|
2014-08-25 12:48:16 +00:00
|
|
|
z-index: 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
#enter_room_button {
|
|
|
|
width: 73px;
|
|
|
|
height: 45px;
|
2016-06-23 19:48:38 +00:00
|
|
|
background-color: #21B9FC;
|
2016-02-26 23:19:03 +00:00
|
|
|
moz-border-radius: 1px;
|
|
|
|
-webkit-border-radius: 1px;
|
2014-08-25 12:48:16 +00:00
|
|
|
color: #ffffff;
|
|
|
|
font-weight: 600;
|
|
|
|
border: none;
|
|
|
|
margin-top: 5px;
|
|
|
|
font-size: 19px;
|
|
|
|
padding-top: 6px;
|
|
|
|
outline: none;
|
2014-08-26 10:54:43 +00:00
|
|
|
float:left;
|
|
|
|
position: relative;
|
|
|
|
z-index: 2;
|
2014-08-25 12:48:16 +00:00
|
|
|
}
|
|
|
|
|
2014-08-26 10:54:43 +00:00
|
|
|
#enter_room_container {
|
2014-08-25 12:48:16 +00:00
|
|
|
margin: 70px auto 0px auto;
|
2014-08-27 13:12:13 +00:00
|
|
|
display: table;
|
2014-08-26 10:54:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#enter_room{
|
|
|
|
float:left;
|
|
|
|
padding-right: 5px;
|
2014-08-25 12:48:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#welcome_page_header
|
|
|
|
{
|
|
|
|
background-image: url(../images/welcome_page/pattern-header.png);
|
|
|
|
height: 290px;
|
|
|
|
width: 100%;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
#welcome_page_main
|
|
|
|
{
|
|
|
|
background-image:url(../images/welcome_page/pattern-body.png);
|
|
|
|
width: 100%;
|
|
|
|
position: absolute;
|
|
|
|
margin-top: 290px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#brand_header
|
|
|
|
{
|
|
|
|
background-image:url(../images/welcome_page/header-big.png);
|
|
|
|
width: 583px;
|
|
|
|
height: 274px;
|
2014-08-27 13:12:13 +00:00
|
|
|
margin: -110px auto 0px auto;
|
2014-08-25 12:48:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#header_text
|
|
|
|
{
|
|
|
|
width: 885px;
|
|
|
|
height: 100px;
|
|
|
|
color: #ffffff;
|
|
|
|
font-size: 24px;
|
|
|
|
text-align: center;
|
2014-08-27 10:28:08 +00:00
|
|
|
margin: 0px auto 0px auto;
|
2014-08-25 12:48:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#features
|
|
|
|
{
|
|
|
|
margin-top: 30px;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.feature_row
|
|
|
|
{
|
|
|
|
position: relative;
|
|
|
|
width: 976px;
|
|
|
|
margin: 0px auto 30px auto;
|
|
|
|
padding-right: 75px;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.feature_holder
|
|
|
|
{
|
|
|
|
float:left;
|
|
|
|
width: 169px;
|
|
|
|
padding-left: 75px;
|
2014-09-02 10:42:35 +00:00
|
|
|
padding-bottom: 30px;
|
2014-08-25 12:48:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.feature_icon
|
|
|
|
{
|
|
|
|
background-image:url(../images/welcome_page/bubble.png);
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
width: 169px;
|
|
|
|
height: 169px;
|
|
|
|
color: #ffffff;
|
|
|
|
font-size: 22px;
|
|
|
|
/*font-weight: bold;*/
|
|
|
|
text-align: center;
|
|
|
|
display: table-cell;
|
2014-09-02 10:42:35 +00:00
|
|
|
padding: 50px 26px 0px 20px;
|
2014-08-25 12:48:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.feature_description
|
|
|
|
{
|
2014-09-02 10:42:35 +00:00
|
|
|
width: 190px;
|
2014-08-25 12:48:16 +00:00
|
|
|
color: #ffffff;
|
|
|
|
font-size: 16px;
|
|
|
|
padding-top: 30px;
|
|
|
|
line-height: 22px;
|
|
|
|
font-weight: 200;
|
2014-08-27 10:59:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#reload_roomname
|
|
|
|
{
|
|
|
|
width: 30px;
|
|
|
|
height: 19px;
|
|
|
|
color: #acacac;
|
|
|
|
margin-top: 22px;
|
|
|
|
z-index: 3;
|
|
|
|
float: left;
|
|
|
|
cursor: pointer;
|
|
|
|
text-align: center;
|
2014-10-01 19:21:57 +00:00
|
|
|
display: none;
|
|
|
|
}
|