2013-10-30 07:01:52 +08:00
|
|
|
/* All Smartphones in portrait and landscape ----------- */
|
|
|
|
@media only screen
|
|
|
|
and (min-device-width : 320px)
|
|
|
|
and (max-device-width : 480px) {
|
|
|
|
/* YOUR STYLE GOES HERE */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* All Smartphones in landscape ----------- */
|
|
|
|
@media only screen
|
|
|
|
and (min-width : 321px) {
|
|
|
|
/* YOUR STYLE GOES HERE */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* All Smartphones in portrait ----------- */
|
|
|
|
@media only screen
|
|
|
|
and (max-width : 479px) {
|
|
|
|
/* YOUR STYLE GOES HERE */
|
|
|
|
}
|
|
|
|
|
|
|
|
/***** ANDROID DEVICES *****/
|
|
|
|
|
|
|
|
/* Android 240 X 320 ----------- */
|
|
|
|
@media only screen
|
|
|
|
and (max-width: 241px){
|
|
|
|
/* YOUR STYLE GOES HERE */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Android(Samsung Galaxy) in portrait 380 X 685 ----------- */
|
|
|
|
@media only screen
|
|
|
|
and (min-width: 375px)
|
|
|
|
and (max-width: 385px){
|
|
|
|
/* YOUR STYLE GOES HERE */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Android(Samsung Galaxy) in Landscape 685 X 380 ----------- */
|
|
|
|
@media only screen
|
|
|
|
and (min-width: 680px)
|
|
|
|
and (max-width: 690px){
|
|
|
|
/* YOUR STYLE GOES HERE */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Kindle Portrait 600 X 1024 ----------- */
|
|
|
|
@media only screen
|
|
|
|
and (min-width: 595px)
|
|
|
|
and (max-width: 610px){
|
|
|
|
/* YOUR STYLE GOES HERE */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Kindle Landscape 1024 X 600 ----------- */
|
|
|
|
@media only screen
|
|
|
|
and (min-width: 1000px)
|
|
|
|
and (max-width: 1030px){
|
|
|
|
/* YOUR STYLE GOES HERE */
|
|
|
|
}
|
|
|
|
|
|
|
|
/***** ALL GENERATION IPADS *****/
|
|
|
|
|
|
|
|
/* iPads in portrait and landscape----------- */
|
|
|
|
@media only screen
|
|
|
|
and (min-device-width : 768px)
|
|
|
|
and (max-device-width : 1024px) {
|
|
|
|
/* YOUR STYLE GOES HERE */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* iPad in landscape----------- */
|
|
|
|
@media only screen
|
|
|
|
and (min-device-width : 768px)
|
|
|
|
and (max-device-width : 1024px)
|
|
|
|
and (orientation : landscape) {
|
|
|
|
/* YOUR STYLE GOES HERE */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* iPad in portrait----------- */
|
|
|
|
@media only screen
|
|
|
|
and (min-device-width : 768px)
|
|
|
|
and (max-device-width : 1024px)
|
|
|
|
and (orientation : portrait){
|
|
|
|
/* YOUR STYLE GOES HERE */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/***** Retina IPAD 3 & 4*****/
|
|
|
|
|
|
|
|
/* Retina iPad 3 & 4 in portrait and landscape----------- */
|
|
|
|
@media only screen
|
|
|
|
and (min-device-width : 768px)
|
|
|
|
and (max-device-width : 1024px)
|
|
|
|
and (-webkit-min-device-pixel-ratio: 2){
|
|
|
|
/* YOUR STYLE GOES HERE */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Retina iPad 3 & 4 in landscape----------- */
|
|
|
|
|
|
|
|
@media only screen
|
|
|
|
and (min-device-width : 768px)
|
|
|
|
and (max-device-width : 1024px)
|
|
|
|
and (orientation : landscape)
|
|
|
|
and (-webkit-min-device-pixel-ratio: 2){
|
|
|
|
/* YOUR STYLE GOES HERE */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Retina iPad 3 & 4 in landscape----------- */
|
|
|
|
|
|
|
|
@media only screen
|
|
|
|
and (min-device-width : 768px)
|
|
|
|
and (max-device-width : 1024px)
|
|
|
|
and (orientation : portrait)
|
|
|
|
and (-webkit-min-device-pixel-ratio: 2){
|
|
|
|
/* YOUR STYLE GOES HERE */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/***** IPAD 1 & 2 (ALSO IPAD MINI)*****/
|
|
|
|
|
|
|
|
/* iPad 1 & 2 in portrait and landscape ----------- */
|
|
|
|
@media only screen
|
|
|
|
and (min-device-width : 768px)
|
|
|
|
and (max-device-width : 1024px)
|
|
|
|
and (-webkit-min-device-pixel-ratio: 1){
|
|
|
|
/* YOUR STYLE GOES HERE */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* iPad 1 & 2 in landscape ----------- */
|
|
|
|
@media only screen
|
|
|
|
and (min-device-width : 768px)
|
|
|
|
and (max-device-width : 1024px)
|
|
|
|
and (orientation : landscape)
|
|
|
|
and (-webkit-min-device-pixel-ratio: 1) {
|
|
|
|
/* YOUR STYLE GOES HERE */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* iPad 1 & 2 in portrait ----------- */
|
|
|
|
@media only screen
|
|
|
|
and (min-device-width : 768px)
|
|
|
|
and (max-device-width : 1024px)
|
|
|
|
and (orientation : portrait)
|
|
|
|
and (-webkit-min-device-pixel-ratio: 1){
|
|
|
|
/* YOUR STYLE GOES HERE */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Large screens ----------- */
|
|
|
|
@media only screen
|
|
|
|
and (min-width : 1824px) {
|
|
|
|
/* YOUR STYLE GOES HERE */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Only iPhone 4 ----------- */
|
|
|
|
@media
|
|
|
|
only screen and (-webkit-min-device-pixel-ratio : 1.5),
|
|
|
|
only screen and (min-device-pixel-ratio : 1.5) {
|
|
|
|
/* YOUR STYLE GOES HERE */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Desktops and laptops ----------- */
|
|
|
|
@media only screen
|
|
|
|
and (min-width : 1224px) {
|
|
|
|
|
2013-09-24 21:13:09 +08:00
|
|
|
html,body,#container, #session-view, #layout{
|
2012-12-10 04:34:32 +08:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2013-09-24 21:13:09 +08:00
|
|
|
body {
|
|
|
|
overflow: hidden;
|
|
|
|
font: 12px Arial, Helvetica, "Helvetica Neue", sans-serif;
|
2013-10-31 04:09:56 +08:00
|
|
|
color:#666;
|
2013-09-24 21:13:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
img.logo {
|
|
|
|
bottom: 5%;
|
|
|
|
height: 50px;
|
|
|
|
left: 35%;
|
|
|
|
position: absolute;
|
|
|
|
width: 50px;
|
2012-12-10 04:34:32 +08:00
|
|
|
}
|
2013-09-28 00:07:38 +08:00
|
|
|
|
2013-10-30 07:01:52 +08:00
|
|
|
#layout {
|
|
|
|
background: #ddd;
|
2012-09-17 02:06:12 +08:00
|
|
|
position: relative;
|
2013-09-24 21:13:09 +08:00
|
|
|
overflow: scroll;
|
2012-09-17 02:06:12 +08:00
|
|
|
}
|
2013-09-28 00:07:38 +08:00
|
|
|
|
2013-10-30 07:01:52 +08:00
|
|
|
#whiteboard {
|
2013-09-24 21:13:09 +08:00
|
|
|
position: relative;
|
2013-10-30 07:01:52 +08:00
|
|
|
background: #ddd;
|
2013-09-24 21:13:09 +08:00
|
|
|
top: 6vh;
|
2012-09-17 02:06:12 +08:00
|
|
|
left: -1px;
|
2013-09-24 21:13:09 +08:00
|
|
|
width:100%;
|
|
|
|
bottom: 2vh;
|
2012-12-13 10:04:43 +08:00
|
|
|
z-index: 1;
|
2013-09-25 02:05:28 +08:00
|
|
|
border-top: none;
|
2013-10-30 07:01:52 +08:00
|
|
|
/* border-left: 1px solid #999999;
|
|
|
|
border-right: 1px solid #999999; */
|
2013-09-25 02:05:28 +08:00
|
|
|
border-bottom: none;
|
2013-02-16 02:28:13 +08:00
|
|
|
vertical-align: middle;
|
2013-09-24 21:13:09 +08:00
|
|
|
text-align: center;
|
|
|
|
overflow: hidden;
|
|
|
|
height:88vh;
|
2012-09-17 02:06:12 +08:00
|
|
|
}
|
2013-10-30 07:01:52 +08:00
|
|
|
|
2012-09-17 02:06:12 +08:00
|
|
|
#chat {
|
|
|
|
position: absolute;
|
2013-09-25 02:05:28 +08:00
|
|
|
right: 0;
|
2013-09-24 21:13:09 +08:00
|
|
|
top: 35vh;
|
2013-10-30 07:01:52 +08:00
|
|
|
bottom: 0vh;
|
2013-09-24 21:13:09 +08:00
|
|
|
width: 22vw;
|
2013-10-30 07:01:52 +08:00
|
|
|
background: #fff;
|
2013-09-24 21:13:09 +08:00
|
|
|
z-index: 6;
|
|
|
|
display:none;
|
|
|
|
overflow: hidden;
|
2013-10-30 07:01:52 +08:00
|
|
|
border-left:1px solid #ccc;
|
2012-09-17 02:06:12 +08:00
|
|
|
}
|
2013-10-30 07:01:52 +08:00
|
|
|
|
2013-09-24 21:13:09 +08:00
|
|
|
#video {
|
|
|
|
position: absolute;
|
|
|
|
top: 6vh;
|
|
|
|
right: 0;
|
|
|
|
background: blue;
|
|
|
|
z-index: 5;
|
|
|
|
width:22vw;
|
|
|
|
height:29vh;
|
|
|
|
display:none;
|
|
|
|
overflow: hidden;
|
2012-09-17 02:06:12 +08:00
|
|
|
}
|
|
|
|
|
2012-12-15 08:58:14 +08:00
|
|
|
#whiteboard object {
|
2013-09-25 02:05:28 +08:00
|
|
|
display: block;
|
2012-09-17 02:06:12 +08:00
|
|
|
position: absolute;
|
2013-09-25 02:05:28 +08:00
|
|
|
max-width: 100%;
|
|
|
|
max-height: 100%;
|
2012-09-17 02:06:12 +08:00
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
2013-09-25 02:05:28 +08:00
|
|
|
right: 0;
|
2012-09-17 02:06:12 +08:00
|
|
|
margin: auto;
|
|
|
|
}
|
2013-10-30 07:01:52 +08:00
|
|
|
|
2012-09-17 02:06:12 +08:00
|
|
|
#navbar {
|
2012-12-18 03:17:51 +08:00
|
|
|
position: fixed;
|
2013-09-24 21:13:09 +08:00
|
|
|
top: 0;
|
2012-09-17 02:06:12 +08:00
|
|
|
left: 0;
|
|
|
|
right: 0;
|
2013-09-24 21:13:09 +08:00
|
|
|
height: 6vh;
|
2013-10-05 04:20:09 +08:00
|
|
|
min-height: 0.75cm;
|
2012-09-17 02:06:12 +08:00
|
|
|
background: #333;
|
2012-09-28 21:54:40 +08:00
|
|
|
background: -moz-linear-gradient(top, #494c56, #42444c);
|
|
|
|
background: -webkit-linear-gradient(top, #494c56, #42444c);
|
2013-09-24 21:13:09 +08:00
|
|
|
background: -ms-linear-gradient(top,#494c56, #42444c);
|
|
|
|
background: -o-linear-gradient(top, #494c56, #42444c);
|
2013-09-25 02:05:28 +08:00
|
|
|
border-left: none;
|
|
|
|
border-right: none;
|
2012-09-28 21:54:40 +08:00
|
|
|
border-bottom: 1px solid #2f3138;
|
2012-09-17 02:06:12 +08:00
|
|
|
text-align: center;
|
2013-09-24 21:13:09 +08:00
|
|
|
z-index: 13; /* over #whiteboard and sidebars */
|
|
|
|
}
|
|
|
|
|
|
|
|
#hide-menu-btn{
|
|
|
|
position:absolute;
|
|
|
|
right: 0px;
|
|
|
|
top: 0;
|
|
|
|
z-index: 12
|
2012-12-10 04:34:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#navbar a {
|
2013-09-25 02:05:28 +08:00
|
|
|
color: #ffffff;
|
2012-12-10 04:34:32 +08:00
|
|
|
text-decoration: none;
|
2012-09-17 02:06:12 +08:00
|
|
|
}
|
|
|
|
|
2013-09-24 21:13:09 +08:00
|
|
|
.navbar-btngroup-left {
|
2012-09-17 02:06:12 +08:00
|
|
|
border-left: 1px solid #222;
|
|
|
|
border-right: 1px solid #555;
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 0;
|
2013-09-24 21:13:09 +08:00
|
|
|
vertical-align: middle;
|
|
|
|
text-align: left;
|
|
|
|
white-space: nowrap;
|
|
|
|
position: absolute;
|
|
|
|
left:0;
|
|
|
|
height:6vh;
|
2013-10-05 04:20:09 +08:00
|
|
|
|
2013-10-05 03:01:50 +08:00
|
|
|
position: block;
|
2012-09-17 02:06:12 +08:00
|
|
|
}
|
2013-09-24 21:13:09 +08:00
|
|
|
|
|
|
|
.navbar-btngroup-right {
|
|
|
|
border-left: 1px solid #222;
|
|
|
|
border-right: 1px solid #555;
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 0;
|
|
|
|
vertical-align: middle;
|
|
|
|
text-align: right;
|
|
|
|
white-space: nowrap;
|
2012-09-17 02:06:12 +08:00
|
|
|
position: absolute;
|
2013-09-24 21:13:09 +08:00
|
|
|
height:6vh;
|
2013-10-05 04:57:26 +08:00
|
|
|
width: 8vh;
|
2013-10-05 03:01:50 +08:00
|
|
|
right:8vh;
|
2012-09-17 02:06:12 +08:00
|
|
|
}
|
2013-09-24 21:13:09 +08:00
|
|
|
|
2012-09-17 02:06:12 +08:00
|
|
|
.navbar-btn {
|
2013-10-04 05:16:42 +08:00
|
|
|
/*display: inline-block;*/
|
2013-10-05 03:01:50 +08:00
|
|
|
width: 8vh;
|
2013-09-24 21:13:09 +08:00
|
|
|
height: 6vh;
|
2013-10-05 04:20:09 +08:00
|
|
|
min-height: 0.75cm;
|
|
|
|
min-width: 1cm;
|
2013-09-24 21:13:09 +08:00
|
|
|
padding: 0;
|
2012-09-28 21:54:40 +08:00
|
|
|
background: -moz-linear-gradient(top, #494c56, #42444c);
|
|
|
|
background: -webkit-linear-gradient(top, #494c56, #42444c);
|
2013-09-24 21:13:09 +08:00
|
|
|
background: -ms-linear-gradient(top,#494c56, #42444c);
|
|
|
|
background: -o-linear-gradient(top, #494c56, #42444c);
|
2012-09-17 02:06:12 +08:00
|
|
|
border-top: none;
|
2012-09-28 21:54:40 +08:00
|
|
|
border-left: 1px solid #62646c;
|
|
|
|
border-right: 1px solid #2f3138;
|
2012-09-17 02:06:12 +08:00
|
|
|
border-bottom: none;
|
2013-09-25 02:05:28 +08:00
|
|
|
color: #ffffff;
|
|
|
|
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
|
2012-09-17 02:06:12 +08:00
|
|
|
text-transform: uppercase;
|
2013-10-04 00:05:23 +08:00
|
|
|
position:relative;
|
2012-12-10 04:34:32 +08:00
|
|
|
cursor: pointer;
|
2013-09-24 21:13:09 +08:00
|
|
|
text-align: center;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-bottom: 0;
|
2013-10-30 07:01:52 +08:00
|
|
|
font-size: 2.5vh;
|
2013-09-24 21:13:09 +08:00
|
|
|
line-height:4vh;
|
2012-09-17 02:06:12 +08:00
|
|
|
}
|
2013-10-30 07:01:52 +08:00
|
|
|
|
2013-10-04 00:05:23 +08:00
|
|
|
.icon{
|
2013-10-05 04:57:26 +08:00
|
|
|
height:6vh;
|
|
|
|
width:4vh;
|
2013-10-05 04:20:09 +08:00
|
|
|
min-height: 1.5625cm;
|
|
|
|
min-width: 1.75cm;
|
2013-10-04 00:05:23 +08:00
|
|
|
}
|
|
|
|
|
2012-09-17 02:06:12 +08:00
|
|
|
.navbar-btn:hover {
|
2012-09-28 21:54:40 +08:00
|
|
|
background: #6d6f77;
|
|
|
|
color: #ffffff;
|
2013-10-31 04:09:56 +08:00
|
|
|
|
2012-09-17 02:06:12 +08:00
|
|
|
}
|
2013-09-24 21:13:09 +08:00
|
|
|
|
2012-09-17 02:06:12 +08:00
|
|
|
.navbar-btn:active, .navbar-btn.active {
|
2012-09-28 21:54:40 +08:00
|
|
|
background: #33343b;
|
|
|
|
color: #999a9d;
|
2013-09-25 02:05:28 +08:00
|
|
|
border-top: none;
|
2013-10-31 04:09:56 +08:00
|
|
|
|
2012-09-28 21:54:40 +08:00
|
|
|
border-right: 1px solid #33343b;
|
2013-09-25 02:05:28 +08:00
|
|
|
border-bottom: none;
|
|
|
|
}
|
2013-10-30 07:01:52 +08:00
|
|
|
|
2013-09-25 02:05:28 +08:00
|
|
|
.navbar-btn:active {
|
|
|
|
background: #33343b;
|
|
|
|
color: #999a9d;
|
|
|
|
border-top: none;
|
2012-09-28 21:54:40 +08:00
|
|
|
border-left: 1px solid #33343b;
|
2013-09-25 02:05:28 +08:00
|
|
|
border-right: 1px solid #33343b;
|
|
|
|
border-bottom: none;
|
2013-10-31 04:09:56 +08:00
|
|
|
background-image: -moz-linear-gradient(top, #33343b, #33343b), -moz-linear-gradient(bottom, #58ade3, #58ade3);
|
|
|
|
background-image: -webkit-linear-gradient(top, #33343b, #33343b), -webkit-linear-gradient(bottom, #58ade3, #58ade3);
|
|
|
|
background-size: 100px 45px, 100% 98%;
|
2013-09-25 02:05:28 +08:00
|
|
|
background-repeat: no-repeat;
|
2013-10-31 04:09:56 +08:00
|
|
|
/* background-position: 0 63px, 0 0; */
|
2012-09-28 21:54:40 +08:00
|
|
|
}
|
2013-09-24 21:13:09 +08:00
|
|
|
|
2012-09-28 21:54:40 +08:00
|
|
|
.navbar-btn.active:hover {
|
2013-10-31 04:09:56 +08:00
|
|
|
background-image: -moz-linear-gradient(top, #33343b, #33343b), -moz-linear-gradient(bottom, #58ade3, #58ade3);
|
|
|
|
background-image: -webkit-linear-gradient(top, #33343b, #33343b), -webkit-linear-gradient(bottom, #58ade3, #58ade3);
|
|
|
|
background-image: -ms-linear-gradient(top, #33343b, #33343b3),-ms-linear-gradient(bottom, #58ade3, #58ade3);
|
|
|
|
background-image: -o-linear-gradient(top, #33343b, #33343b),-o-linear-gradient(bottom, #58ade3, #58ade3);
|
2012-09-28 21:54:40 +08:00
|
|
|
color: #ffffff;
|
|
|
|
}
|
2013-09-24 21:13:09 +08:00
|
|
|
|
2012-09-28 21:54:40 +08:00
|
|
|
.navbar-btn.active, .navbar-btn.active:active {
|
2013-10-31 04:09:56 +08:00
|
|
|
background-image: -moz-linear-gradient(top, #33343b, #33343b), -moz-linear-gradient(bottom, #58ade3, #58ade3);
|
|
|
|
background-image: -webkit-linear-gradient(top, #33343b, #33343b), -webkit-linear-gradient(bottom, #58ade3, #58ade3);
|
|
|
|
background-image: -ms-linear-gradient(top, #33343b, #33343b),-ms-linear-gradient(bottom, #58ade3, #58ade);
|
|
|
|
background-image: -o-linear-gradient(top, #33343b, #33343b),-o-linear-gradient(bottom, #58ade3, #58ade);
|
|
|
|
background-size: 100px 45px, 100% 98%;
|
2012-09-28 21:54:40 +08:00
|
|
|
background-repeat: no-repeat;
|
2013-10-31 04:09:56 +08:00
|
|
|
/* background-position: 0 63px, 0 0; */
|
2012-09-28 21:54:40 +08:00
|
|
|
color: #999a9d;
|
2012-09-17 02:06:12 +08:00
|
|
|
}
|
2013-10-30 07:01:52 +08:00
|
|
|
|
2012-09-17 02:06:12 +08:00
|
|
|
.navbar-btn .notification {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
2012-09-28 21:54:40 +08:00
|
|
|
background: #a72424;
|
2013-09-24 21:13:09 +08:00
|
|
|
background-image: -moz-linear-gradient(top, #a72424, #8f1f1f);
|
|
|
|
background-image: -webkit-linear-gradient(top, #a72424, #8f1f1f);
|
|
|
|
background-image: -ms-linear-gradient(top, #a72424, #8f1f1f);
|
|
|
|
background-image: -o-linear-gradient(top, #a72424, #8f1f1f);
|
2012-09-28 21:54:40 +08:00
|
|
|
text-shadow: 0 -1px rgba(0,0,0,0.5);
|
|
|
|
border-top: 1px solid #cc7e7e;
|
2013-10-30 07:01:52 +08:00
|
|
|
top: 10px;
|
2013-09-25 02:05:28 +08:00
|
|
|
left: none;
|
2013-10-30 07:01:52 +08:00
|
|
|
right: 5px;
|
2013-09-25 02:05:28 +08:00
|
|
|
bottom: none;
|
|
|
|
background: #a72424;
|
|
|
|
background-image: -moz-linear-gradient(top, #a72424, #8f1f1f);
|
|
|
|
background-image: -webkit-linear-gradient(top, #a72424, #8f1f1f);
|
|
|
|
text-shadow: 0 -1px rgba(0, 0, 0, 0.5);
|
|
|
|
border-top: 1px solid #cc7e7e;
|
2012-09-28 21:54:40 +08:00
|
|
|
padding: 1px 4px;
|
2013-09-25 02:05:28 +08:00
|
|
|
font-size: 9.1px;
|
2012-09-28 21:54:40 +08:00
|
|
|
border-radius: 2px;
|
|
|
|
line-height: 12px;
|
2013-09-25 02:05:28 +08:00
|
|
|
color: #ffffff;
|
2012-09-17 02:06:12 +08:00
|
|
|
font-weight: bold;
|
2013-09-25 02:05:28 +08:00
|
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
|
2012-09-17 02:06:12 +08:00
|
|
|
}
|
|
|
|
|
2013-09-28 00:07:38 +08:00
|
|
|
|
2012-09-17 02:06:12 +08:00
|
|
|
button::-moz-focus-inner, input::-moz-focus-inner {
|
|
|
|
border: 0;
|
|
|
|
}
|
2013-09-24 21:13:09 +08:00
|
|
|
|
2012-09-17 02:06:12 +08:00
|
|
|
button:focus, textarea:focus, input:focus {
|
2012-09-28 21:54:40 +08:00
|
|
|
box-shadow: 0 0 4px rgba(88,173,227,0.5) inset;
|
2012-09-17 02:06:12 +08:00
|
|
|
outline: none;
|
2013-09-24 21:13:09 +08:00
|
|
|
z-index: 11;
|
2012-09-17 02:06:12 +08:00
|
|
|
}
|
2013-10-30 07:01:52 +08:00
|
|
|
|
2012-09-17 02:06:12 +08:00
|
|
|
#chat-entry {
|
|
|
|
position: absolute;
|
2013-09-24 21:13:09 +08:00
|
|
|
bottom: 1em;
|
2012-09-17 02:06:12 +08:00
|
|
|
left: 0;
|
|
|
|
right: 0;
|
2013-10-30 07:01:52 +08:00
|
|
|
bottom: 10px;
|
|
|
|
height:35px;
|
|
|
|
background:#f7f7f7;
|
|
|
|
border-top:1px solid #ccc;
|
2013-10-31 04:09:56 +08:00
|
|
|
z-index:10;
|
2012-09-17 02:06:12 +08:00
|
|
|
}
|
2013-09-24 21:13:09 +08:00
|
|
|
|
2012-09-17 02:06:12 +08:00
|
|
|
#chat-entry > textarea {
|
|
|
|
position: absolute;
|
2013-09-25 02:05:28 +08:00
|
|
|
bottom: 0;
|
2013-09-24 21:13:09 +08:00
|
|
|
left: 5%;
|
2012-09-17 02:06:12 +08:00
|
|
|
font-family: sans-serif;
|
2013-09-24 21:13:09 +08:00
|
|
|
font-size: 1em;
|
2013-10-31 04:09:56 +08:00
|
|
|
width: 68%;
|
2013-09-24 21:13:09 +08:00
|
|
|
height: 16px;
|
2012-09-17 02:06:12 +08:00
|
|
|
resize: none;
|
2013-09-25 02:05:28 +08:00
|
|
|
background: #ffffff;
|
2012-09-17 02:06:12 +08:00
|
|
|
border: 1px solid #ccc;
|
|
|
|
margin: 0;
|
|
|
|
padding: 3px;
|
|
|
|
border-radius: 4px 0 0 4px;
|
|
|
|
}
|
2013-09-24 21:13:09 +08:00
|
|
|
|
2012-09-17 02:06:12 +08:00
|
|
|
#chat-entry > button {
|
|
|
|
position: absolute;
|
2013-09-25 02:05:28 +08:00
|
|
|
bottom: 0;
|
2013-09-24 21:13:09 +08:00
|
|
|
right: 5%;
|
|
|
|
width: 20%;
|
|
|
|
height: 24px;
|
2012-09-17 02:06:12 +08:00
|
|
|
margin: 0;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
border-left: none;
|
|
|
|
border-radius: 0 4px 4px 0;
|
|
|
|
background: -moz-linear-gradient(top, #fff, #ddd);
|
|
|
|
background: -webkit-linear-gradient(top, #fff, #ddd);
|
2013-09-24 21:13:09 +08:00
|
|
|
background: -ms-linear-gradient(top, #fff, #ddd);
|
|
|
|
background: -o-linear-gradient(top, #fff, #ddd);
|
|
|
|
font-size: 1em;
|
2012-09-17 02:06:12 +08:00
|
|
|
}
|
2013-09-24 21:13:09 +08:00
|
|
|
|
2012-09-17 02:06:12 +08:00
|
|
|
#chat-entry > button:active {
|
2013-09-25 02:05:28 +08:00
|
|
|
background: #dddddd;
|
2012-09-17 02:06:12 +08:00
|
|
|
}
|
2013-09-24 21:13:09 +08:00
|
|
|
|
2012-12-11 02:28:30 +08:00
|
|
|
#chat-messages {
|
2013-09-24 21:13:09 +08:00
|
|
|
clear: both;
|
|
|
|
font-size: 1em;
|
2013-10-30 07:01:52 +08:00
|
|
|
height: 80%;
|
2013-09-24 21:13:09 +08:00
|
|
|
line-height: 1em;
|
|
|
|
overflow: scroll;
|
2013-10-31 04:09:56 +08:00
|
|
|
position: relative;
|
2013-10-30 07:01:52 +08:00
|
|
|
padding:15px;
|
|
|
|
font-size:12px;
|
|
|
|
color:#999;
|
|
|
|
line-height:14px;
|
|
|
|
margin-bottom:15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#chat-messages p {
|
|
|
|
font-size:12px;
|
|
|
|
color:#999;
|
|
|
|
line-height:14px;
|
|
|
|
margin-bottom:15px;
|
|
|
|
}
|
2013-09-28 00:07:38 +08:00
|
|
|
|
2013-10-30 07:01:52 +08:00
|
|
|
#chat-messages p span {
|
|
|
|
font-weight:bold;
|
|
|
|
color:#666;
|
2013-09-24 21:13:09 +08:00
|
|
|
}
|
|
|
|
|
2013-10-30 07:01:52 +08:00
|
|
|
|
2013-09-24 21:13:09 +08:00
|
|
|
.private-chat-box{
|
|
|
|
overflow-y:scroll;
|
2013-10-31 04:09:56 +08:00
|
|
|
height:auto;
|
|
|
|
position:relative;
|
|
|
|
width:auto;
|
|
|
|
background:#fff;
|
2013-09-24 21:13:09 +08:00
|
|
|
font-size:1em;
|
2013-10-31 04:09:56 +08:00
|
|
|
padding:15px;
|
|
|
|
height:100%;
|
|
|
|
z-index:9;
|
2012-09-17 02:06:12 +08:00
|
|
|
}
|
|
|
|
|
2013-10-30 07:01:52 +08:00
|
|
|
#users > h3, #chatbox-head > h3 {
|
|
|
|
/* background: -moz-linear-gradient(top, #fff, #ddd);
|
2012-09-17 02:06:12 +08:00
|
|
|
background: -webkit-linear-gradient(top, #fff, #ddd);
|
2013-09-24 21:13:09 +08:00
|
|
|
background: -ms-linear-gradient(top, #fff, #ddd);
|
|
|
|
background: -o-linear-gradient(top, #fff, #ddd);
|
2013-10-30 07:01:52 +08:00
|
|
|
*/
|
|
|
|
background:#f7f7f7;
|
|
|
|
font-size: 1em;
|
2013-09-24 21:13:09 +08:00
|
|
|
line-height: 2em;
|
2012-09-17 02:06:12 +08:00
|
|
|
font-weight: bold;
|
|
|
|
color: #666;
|
2013-10-30 07:01:52 +08:00
|
|
|
border-bottom: 1px solid #d7d7d7;
|
|
|
|
padding: 5px 10px;
|
|
|
|
|
|
|
|
|
2012-09-17 02:06:12 +08:00
|
|
|
}
|
2013-10-30 07:01:52 +08:00
|
|
|
|
2013-09-24 21:13:09 +08:00
|
|
|
#chatbox-head {
|
2013-10-30 07:01:52 +08:00
|
|
|
/* background: -moz-linear-gradient(top, #fff, #ddd);
|
2013-09-24 21:13:09 +08:00
|
|
|
background: -webkit-linear-gradient(top, #fff, #ddd);
|
|
|
|
background: -ms-linear-gradient(top, #fff, #ddd);
|
|
|
|
background: -o-linear-gradient(top, #fff, #ddd);
|
|
|
|
font-size: 2em;
|
|
|
|
line-height: 2em;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #666;
|
|
|
|
border-bottom: 1px solid #aaa;
|
|
|
|
text-align: center;
|
2013-10-30 07:01:52 +08:00
|
|
|
height: 6vh; */
|
2012-09-17 02:06:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#slide {
|
2013-09-24 21:13:09 +08:00
|
|
|
position: absolute;
|
2012-09-17 02:06:12 +08:00
|
|
|
margin: 0 auto;
|
|
|
|
overflow:hidden; /* so they don't overlap */
|
2013-02-16 02:28:13 +08:00
|
|
|
width: 99%;
|
|
|
|
height: 99%;
|
|
|
|
border: 1px solid #888;
|
2012-09-17 02:06:12 +08:00
|
|
|
}
|
|
|
|
|
2013-09-28 00:07:38 +08:00
|
|
|
|
2012-09-17 02:06:12 +08:00
|
|
|
.textinput {
|
2013-09-25 02:05:28 +08:00
|
|
|
font-family: Arial, Helvetica, "Helvetica Neue", sans-serif;
|
|
|
|
font-size: 14px;
|
|
|
|
/* keep in pixels*/
|
|
|
|
resize: none;
|
|
|
|
display: block;
|
|
|
|
}
|
2012-09-17 02:06:12 +08:00
|
|
|
.user {
|
2013-09-24 21:13:09 +08:00
|
|
|
height: 16px;
|
|
|
|
line-height: 16px;
|
2012-09-17 02:06:12 +08:00
|
|
|
padding: 0 8px;
|
2013-10-30 07:01:52 +08:00
|
|
|
text-align:center;
|
2012-09-17 02:06:12 +08:00
|
|
|
}
|
2013-09-24 21:13:09 +08:00
|
|
|
|
2012-09-17 02:06:12 +08:00
|
|
|
.user:nth-child(even) {
|
2013-09-25 02:05:28 +08:00
|
|
|
background: #eeeeee;
|
2012-09-17 02:06:12 +08:00
|
|
|
}
|
2013-10-30 07:01:52 +08:00
|
|
|
|
2012-09-17 02:06:12 +08:00
|
|
|
.user:before {
|
|
|
|
content: "\f007";
|
|
|
|
font-family: FontAwesome;
|
|
|
|
font-weight: normal;
|
|
|
|
font-style: normal;
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
2013-10-30 07:01:52 +08:00
|
|
|
|
2013-09-25 02:05:28 +08:00
|
|
|
.user:nth-child(even).selected {
|
|
|
|
color: #ffffff;
|
|
|
|
background: #007fff;
|
|
|
|
background: -moz-linear-gradient(top, #007fff, #005fdf);
|
|
|
|
background: -webkit-linear-gradient(top, #007fff, #005fdf);
|
|
|
|
}
|
2013-10-30 07:01:52 +08:00
|
|
|
|
2012-09-17 02:06:12 +08:00
|
|
|
.presenter:before {
|
|
|
|
content: "\f0d0";
|
|
|
|
}
|
2013-10-30 07:01:52 +08:00
|
|
|
|
2012-09-17 02:06:12 +08:00
|
|
|
.clickable {
|
2013-09-25 02:05:28 +08:00
|
|
|
cursor: pointer;
|
2012-09-17 02:06:12 +08:00
|
|
|
}
|
2013-10-30 07:01:52 +08:00
|
|
|
|
2013-09-25 02:05:28 +08:00
|
|
|
.selected {
|
|
|
|
color: #ffffff;
|
2012-12-11 09:29:56 +08:00
|
|
|
background: #007fff;
|
2012-09-17 02:06:12 +08:00
|
|
|
background: -moz-linear-gradient(top, #007fff, #005fdf);
|
|
|
|
background: -webkit-linear-gradient(top, #007fff, #005fdf);
|
2013-09-24 21:13:09 +08:00
|
|
|
background: -ms-linear-gradient(top, #007fff, #005fdf);
|
|
|
|
background: -o-linear-gradient(top, #007fff, #005fdf);
|
2012-09-17 02:06:12 +08:00
|
|
|
}
|
2013-10-30 07:01:52 +08:00
|
|
|
|
2012-09-17 02:06:12 +08:00
|
|
|
#chat_input {
|
|
|
|
clear: both;
|
|
|
|
display: block;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2012-12-14 01:26:02 +08:00
|
|
|
#slide-upload-controls {
|
2013-09-24 21:13:09 +08:00
|
|
|
display:none;
|
|
|
|
width:200px;
|
|
|
|
height:100px;
|
|
|
|
position:absolute;
|
|
|
|
top:-350px;
|
|
|
|
left:50px;
|
|
|
|
border: 5px double grey;
|
|
|
|
z-index:20;
|
|
|
|
background:#cccccc;
|
2012-09-17 02:06:12 +08:00
|
|
|
}
|
|
|
|
|
2013-09-28 00:07:38 +08:00
|
|
|
|
2012-09-17 02:06:12 +08:00
|
|
|
#chat_title {
|
|
|
|
padding-left: 25px;
|
|
|
|
}
|
2013-10-30 07:01:52 +08:00
|
|
|
|
2012-09-17 02:06:12 +08:00
|
|
|
#listUsers {
|
|
|
|
float: right;
|
|
|
|
}
|
2013-10-30 07:01:52 +08:00
|
|
|
|
2012-12-15 08:58:14 +08:00
|
|
|
#current-users {
|
2012-09-17 02:06:12 +08:00
|
|
|
position: absolute;
|
2013-09-24 21:13:09 +08:00
|
|
|
bottom: auto;
|
2012-09-17 02:06:12 +08:00
|
|
|
left: 0;
|
|
|
|
background: #fff;
|
2013-09-24 21:13:09 +08:00
|
|
|
width:100%;
|
2012-09-17 02:06:12 +08:00
|
|
|
}
|
2013-10-30 07:01:52 +08:00
|
|
|
|
2012-12-09 06:54:05 +08:00
|
|
|
#switch-presenter {
|
2012-09-17 02:06:12 +08:00
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
2013-09-24 21:13:09 +08:00
|
|
|
bottom:1vh;
|
|
|
|
margin-left: 16px;
|
2012-09-17 02:06:12 +08:00
|
|
|
text-align: center;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
border-radius: 4px;
|
|
|
|
background: -moz-linear-gradient(top, #fff, #ddd);
|
|
|
|
background: -webkit-linear-gradient(top, #fff, #ddd);
|
2013-09-24 21:13:09 +08:00
|
|
|
background: -ms-linear-gradient(top, #fff, #ddd);
|
|
|
|
background: -o-linear-gradient(top, #fff, #ddd);
|
2012-12-11 09:29:56 +08:00
|
|
|
cursor: pointer;
|
2013-09-24 21:13:09 +08:00
|
|
|
z-index:10;
|
2012-09-17 02:06:12 +08:00
|
|
|
}
|
2013-10-30 07:01:52 +08:00
|
|
|
|
2012-09-17 02:06:12 +08:00
|
|
|
#ChatAndControls {
|
2013-09-25 02:05:28 +08:00
|
|
|
float: right;
|
2012-09-17 02:06:12 +08:00
|
|
|
}
|
2013-10-30 07:01:52 +08:00
|
|
|
|
2012-09-17 02:06:12 +08:00
|
|
|
#logout {
|
|
|
|
float: right;
|
|
|
|
}
|
2013-10-30 07:01:52 +08:00
|
|
|
|
2012-09-17 02:06:12 +08:00
|
|
|
#send_chat {
|
2013-09-25 02:05:28 +08:00
|
|
|
float: right;
|
2012-09-17 02:06:12 +08:00
|
|
|
}
|
2013-10-30 07:01:52 +08:00
|
|
|
|
2012-12-14 01:26:02 +08:00
|
|
|
#slide-controls {
|
2013-09-25 02:05:28 +08:00
|
|
|
display: none;
|
2012-12-14 01:26:02 +08:00
|
|
|
width: 800px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
2013-10-30 07:01:52 +08:00
|
|
|
|
2012-12-14 01:26:02 +08:00
|
|
|
#slide-controls form {
|
2012-09-17 02:06:12 +08:00
|
|
|
display: inline;
|
|
|
|
}
|
2013-10-30 07:01:52 +08:00
|
|
|
|
2012-12-18 03:17:51 +08:00
|
|
|
#slide-controls * {
|
|
|
|
float: left;
|
|
|
|
margin: 5px 10px 0 0;
|
|
|
|
}
|
2013-10-30 07:01:52 +08:00
|
|
|
|
2012-12-14 09:54:10 +08:00
|
|
|
#thickness-slider {
|
2012-09-17 02:06:12 +08:00
|
|
|
width: 60px;
|
|
|
|
}
|
2013-10-30 07:01:52 +08:00
|
|
|
|
2012-12-13 10:04:43 +08:00
|
|
|
#colour-text {
|
2012-09-17 02:06:12 +08:00
|
|
|
width: 50px;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
2013-10-30 07:01:52 +08:00
|
|
|
|
2012-12-13 10:04:43 +08:00
|
|
|
#colour-view {
|
2012-09-17 02:06:12 +08:00
|
|
|
margin-left: 5px;
|
2013-09-25 02:05:28 +08:00
|
|
|
cursor: pointer;
|
2012-09-17 02:06:12 +08:00
|
|
|
}
|
2013-10-30 07:01:52 +08:00
|
|
|
|
2012-12-13 10:04:43 +08:00
|
|
|
#colour-picker {
|
2012-12-14 01:26:02 +08:00
|
|
|
position: absolute;
|
2013-09-25 02:05:28 +08:00
|
|
|
z-index: 9;
|
|
|
|
/* over everything */
|
2012-12-13 10:04:43 +08:00
|
|
|
|
2013-09-25 02:05:28 +08:00
|
|
|
}
|
2013-10-30 07:01:52 +08:00
|
|
|
|
2012-09-17 02:06:12 +08:00
|
|
|
.canvas {
|
2013-09-25 02:05:28 +08:00
|
|
|
border: 1px solid #0000ff;
|
2012-09-17 02:06:12 +08:00
|
|
|
position: absolute;
|
|
|
|
}
|
2012-12-10 04:34:32 +08:00
|
|
|
|
2013-09-24 21:13:09 +08:00
|
|
|
/*js/views/login.coffee*/
|
2013-09-28 00:07:38 +08:00
|
|
|
|
2012-12-10 04:34:32 +08:00
|
|
|
#login-view {
|
2013-09-25 02:05:28 +08:00
|
|
|
width: 100%;
|
2012-12-10 04:34:32 +08:00
|
|
|
margin: 50px auto;
|
2013-09-25 02:05:28 +08:00
|
|
|
border: 10x solid #dddddd;
|
2012-12-10 04:34:32 +08:00
|
|
|
padding: 10px;
|
2013-09-25 02:05:28 +08:00
|
|
|
background: #30406b;
|
|
|
|
color: white;
|
2012-12-10 04:34:32 +08:00
|
|
|
}
|
2013-10-30 07:01:52 +08:00
|
|
|
|
2012-12-10 04:34:32 +08:00
|
|
|
#login-view h1 {
|
2013-09-25 02:05:28 +08:00
|
|
|
font-size: 23.8px;
|
2012-12-10 04:34:32 +08:00
|
|
|
font-weight: bold;
|
|
|
|
text-align: center;
|
|
|
|
margin: 5px 0 20px 0;
|
2012-12-12 03:37:32 +08:00
|
|
|
}
|
2013-10-30 07:01:52 +08:00
|
|
|
|
2013-09-25 02:05:28 +08:00
|
|
|
#login-container {
|
|
|
|
text-align: center;
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
}
|
2013-10-30 07:01:52 +08:00
|
|
|
|
2013-09-25 02:05:28 +08:00
|
|
|
#slide {
|
|
|
|
position: relative;
|
|
|
|
margin: 0 auto;
|
|
|
|
overflow: hidden;
|
|
|
|
/* so they don't overlap */
|
2012-12-12 03:37:32 +08:00
|
|
|
|
2013-09-25 02:05:28 +08:00
|
|
|
width: 99%;
|
|
|
|
height: 99%;
|
|
|
|
border: 1px solid #888;
|
|
|
|
}
|
2013-10-30 07:01:52 +08:00
|
|
|
|
2012-12-12 03:37:32 +08:00
|
|
|
#slide .preupload-image {
|
|
|
|
display: none;
|
|
|
|
}
|
2013-10-30 07:01:52 +08:00
|
|
|
|
2012-12-12 04:48:38 +08:00
|
|
|
#slide > svg {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2013-02-16 02:28:13 +08:00
|
|
|
margin: 0 auto;
|
2012-12-12 04:48:38 +08:00
|
|
|
}
|
2013-01-06 07:40:29 +08:00
|
|
|
|
2013-09-28 00:07:38 +08:00
|
|
|
|
2013-01-06 07:40:29 +08:00
|
|
|
#slide-controls {
|
2013-01-07 03:46:25 +08:00
|
|
|
display: none;
|
|
|
|
}
|
2013-09-24 21:13:09 +08:00
|
|
|
|
2013-01-06 07:40:29 +08:00
|
|
|
#users {
|
2013-09-24 21:13:09 +08:00
|
|
|
z-index: 11;
|
2013-10-30 07:01:52 +08:00
|
|
|
border: 3px solid #33343b;
|
2013-01-06 07:40:29 +08:00
|
|
|
display: none;
|
2013-09-24 21:13:09 +08:00
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 6vh;
|
2013-10-30 07:01:52 +08:00
|
|
|
min-height:35vh;
|
|
|
|
background: #ffffff;
|
2013-09-24 21:13:09 +08:00
|
|
|
overflow: scroll;
|
|
|
|
resize:both;
|
|
|
|
min-width: 16vw;
|
2013-10-30 07:01:52 +08:00
|
|
|
-webkit-border-bottom-right-radius: 5px;
|
|
|
|
-webkit-border-bottom-left-radius: 5px;
|
|
|
|
-moz-border-radius-bottomright: 5px;
|
|
|
|
-moz-border-radius-bottomleft: 5px;
|
|
|
|
border-bottom-right-radius: 5px;
|
|
|
|
border-bottom-left-radius: 5px;
|
2013-01-06 07:40:29 +08:00
|
|
|
}
|
2013-09-24 21:13:09 +08:00
|
|
|
|
|
|
|
#slide-upload-button,#tool-toggle-btn,#tool-zoom-btn{
|
|
|
|
height: 100%;
|
2013-01-07 03:46:25 +08:00
|
|
|
}
|
2013-09-24 21:13:09 +08:00
|
|
|
|
|
|
|
#tableheader{
|
|
|
|
width:100%;
|
|
|
|
text-align: center;
|
|
|
|
position:relative;
|
2013-01-06 07:40:29 +08:00
|
|
|
}
|
2013-09-24 21:13:09 +08:00
|
|
|
|
|
|
|
#usertable{
|
|
|
|
width:100%;
|
|
|
|
position:absolute;
|
|
|
|
top:0;
|
2013-10-30 07:01:52 +08:00
|
|
|
left:0;
|
|
|
|
text-align:left;
|
|
|
|
color:#666;
|
|
|
|
}
|
2013-09-28 00:07:38 +08:00
|
|
|
|
2013-10-30 07:01:52 +08:00
|
|
|
#usertable tr {
|
|
|
|
border-bottom:1px solid #f2f2f2;
|
|
|
|
}
|
|
|
|
|
|
|
|
#usertable tr:hover {
|
|
|
|
background-color:#f6f6f6;
|
2013-01-07 03:46:25 +08:00
|
|
|
}
|
2013-09-24 21:13:09 +08:00
|
|
|
|
|
|
|
#usertable td {
|
2013-10-30 07:01:52 +08:00
|
|
|
/* width:15px;
|
|
|
|
height:10px; */
|
|
|
|
padding:8px;
|
2013-09-24 21:13:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#closeUploadWindow{
|
|
|
|
position: absolute;
|
|
|
|
right:0;
|
|
|
|
bottom:0;
|
|
|
|
}
|
|
|
|
|
|
|
|
image {
|
|
|
|
position:absolute;
|
|
|
|
top:0;
|
|
|
|
margin: 10px auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#chat-options-bar {
|
2013-10-31 04:09:56 +08:00
|
|
|
height:3vh;
|
2013-09-24 21:13:09 +08:00
|
|
|
width:100%;
|
|
|
|
position:relative;
|
|
|
|
font-size:1.5em;
|
2013-10-30 07:01:52 +08:00
|
|
|
border-bottom:1px solid #ccc;
|
2013-09-24 21:13:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#chat-options-bar button:active{
|
|
|
|
background: -moz-linear-gradient(top, #fff, #ddd);
|
|
|
|
background: -webkit-linear-gradient(top, #fff, #ddd);
|
|
|
|
background: -ms-linear-gradient(top, #fff, #ddd);
|
|
|
|
background: -o-linear-gradient(top, #fff, #ddd);
|
|
|
|
}
|
|
|
|
|
|
|
|
#all-users-list {
|
2013-10-31 04:09:56 +08:00
|
|
|
border:1px solid #ccc;
|
|
|
|
background:#fff;
|
2013-09-24 21:13:09 +08:00
|
|
|
width: 7vw;
|
2013-10-31 04:09:56 +08:00
|
|
|
height:auto;
|
2013-09-24 21:13:09 +08:00
|
|
|
overflow-y: scroll;
|
|
|
|
display:none;
|
2013-01-07 03:46:25 +08:00
|
|
|
position: absolute;
|
2013-10-31 04:09:56 +08:00
|
|
|
top: 7.5vh;
|
|
|
|
left: 8.1vh;
|
2013-09-24 21:13:09 +08:00
|
|
|
z-index:7;
|
2013-10-31 04:09:56 +08:00
|
|
|
padding:5px;
|
|
|
|
-webkit-border-bottom-right-radius: 3px;
|
|
|
|
-webkit-border-bottom-left-radius: 3px;
|
|
|
|
-moz-border-radius-bottomright: 3px;
|
|
|
|
-moz-border-radius-bottomleft: 3px;
|
|
|
|
border-bottom-right-radius: 3px;
|
|
|
|
border-bottom-left-radius: 3px;
|
2013-09-24 21:13:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.private-chat-box .icon-remove-sign {
|
|
|
|
position: absolute;
|
|
|
|
top:0;
|
2013-10-31 04:09:56 +08:00
|
|
|
right:1vh;
|
2013-09-24 21:13:09 +08:00
|
|
|
font-size: 1.5em;
|
|
|
|
line-height: 1.5em;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
i.icon-remove-sign:hover{
|
|
|
|
color:red;
|
|
|
|
}
|
|
|
|
|
|
|
|
i.icon-angle-up{
|
|
|
|
position:absolute;
|
|
|
|
right:0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#chatButtonWrapper{
|
2013-10-31 04:09:56 +08:00
|
|
|
float:left;
|
2013-09-24 21:13:09 +08:00
|
|
|
height: 100%;
|
|
|
|
overflow-y: scroll;
|
2013-01-07 03:46:25 +08:00
|
|
|
top: 0;
|
|
|
|
}
|
2013-09-24 21:13:09 +08:00
|
|
|
|
|
|
|
#chatButtonWrapper button{
|
|
|
|
cursor: pointer;
|
|
|
|
height: 100%;
|
|
|
|
margin-bottom: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 0;
|
|
|
|
text-align: center;
|
2013-09-25 02:05:28 +08:00
|
|
|
vertical-align: middle;
|
2013-10-31 04:09:56 +08:00
|
|
|
width: auto;
|
|
|
|
display:block;
|
|
|
|
padding: 0 10px;
|
|
|
|
margin:0;
|
|
|
|
border:0;
|
|
|
|
background:#fff;
|
|
|
|
border-right:1px solid #ccc;
|
|
|
|
color:#666;
|
2013-09-25 02:05:28 +08:00
|
|
|
}
|
2013-09-24 21:13:09 +08:00
|
|
|
|
|
|
|
#publicChat{
|
|
|
|
cursor: pointer;
|
|
|
|
display: inline-block;
|
2013-10-30 07:01:52 +08:00
|
|
|
height: 100%;
|
2013-09-24 21:13:09 +08:00
|
|
|
left: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
padding-left: 0;
|
|
|
|
padding-right: 0;
|
|
|
|
position: relative;
|
|
|
|
text-align: center;
|
|
|
|
vertical-align: middle;
|
2013-10-31 04:09:56 +08:00
|
|
|
padding:0 10px;
|
|
|
|
border:0;
|
|
|
|
margin:0;
|
|
|
|
background:#fff;
|
|
|
|
border-right:1px solid #ccc;
|
|
|
|
float:left;
|
|
|
|
margin:0;
|
|
|
|
color:#666;
|
2013-09-24 21:13:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#privateChat{
|
2013-09-25 02:05:28 +08:00
|
|
|
cursor: pointer;
|
2013-09-24 21:13:09 +08:00
|
|
|
display: inline-block;
|
2013-10-31 04:09:56 +08:00
|
|
|
height: 100%;
|
2013-09-24 21:13:09 +08:00
|
|
|
overflow: hidden;
|
|
|
|
padding: 0;
|
|
|
|
position: relative;
|
|
|
|
text-align: center;
|
|
|
|
vertical-align: middle;
|
2013-10-31 04:09:56 +08:00
|
|
|
padding:0 5px;
|
|
|
|
border:0;
|
|
|
|
margin:0;
|
|
|
|
background:#fff;
|
|
|
|
float:left;
|
|
|
|
color:#666;
|
2013-09-25 02:05:28 +08:00
|
|
|
}
|
2013-09-24 21:13:09 +08:00
|
|
|
|
|
|
|
#generalbutton{
|
|
|
|
height: 100%;
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
2013-10-31 04:09:56 +08:00
|
|
|
width: 100%;
|
2013-09-25 02:05:28 +08:00
|
|
|
}
|
2013-09-24 21:13:09 +08:00
|
|
|
|
|
|
|
i{
|
|
|
|
cursor: pointer;
|
2013-09-25 02:05:28 +08:00
|
|
|
}
|
2013-09-24 21:13:09 +08:00
|
|
|
|
|
|
|
#leftcol{
|
|
|
|
float:left;
|
|
|
|
width:25%;
|
|
|
|
height:50%;
|
|
|
|
border-bottom: 2px solid black;
|
|
|
|
position:relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
#centercol{
|
|
|
|
border: 2px solid black;
|
|
|
|
float: left;
|
|
|
|
height: 90%;
|
|
|
|
position: relative;
|
|
|
|
width: 50%;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#rightcol{
|
|
|
|
border-bottom: 2px solid black;
|
|
|
|
float: left;
|
|
|
|
height: 50%;
|
|
|
|
width: 24%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#system-check{
|
|
|
|
border:1px solid black;
|
|
|
|
width:50%;
|
|
|
|
height:90%;
|
|
|
|
position:relative;
|
|
|
|
margin-left:25%;
|
|
|
|
margin-right:24%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.system-check-table-td{
|
|
|
|
border-right:1px solid black;
|
|
|
|
text-align:left;
|
|
|
|
width:70%;
|
|
|
|
|
|
|
|
}
|
|
|
|
#system-check-table{
|
|
|
|
margin-top:10px;
|
|
|
|
width:100%;
|
2013-01-07 03:46:25 +08:00
|
|
|
}
|
|
|
|
|
2013-09-24 21:13:09 +08:00
|
|
|
#system-check-title{
|
|
|
|
border-bottom:1px solid black;
|
|
|
|
width:100%;
|
|
|
|
|
2013-09-28 00:07:38 +08:00
|
|
|
}
|
|
|
|
|
2013-10-30 07:38:52 +08:00
|
|
|
|
2013-10-07 01:29:14 +08:00
|
|
|
#user-name {
|
|
|
|
margin-left:15px;
|
|
|
|
padding: 10px;
|
|
|
|
margin-bottom: 0 ;
|
|
|
|
width: 206px;
|
|
|
|
background-color: #ffffff;
|
|
|
|
border: 1px solid #cccccc;
|
|
|
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
|
|
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
|
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
|
|
-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
|
|
|
|
-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
|
|
|
|
-o-transition: border linear 0.2s, box-shadow linear 0.2s;
|
|
|
|
transition: border linear 0.2s, box-shadow linear 0.2s;
|
|
|
|
display: inline-block;
|
|
|
|
height: 20px;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 20px;
|
|
|
|
color: #555555;
|
|
|
|
vertical-align: middle;
|
|
|
|
-webkit-border-radius: 4px;
|
|
|
|
-moz-border-radius: 4px;
|
|
|
|
border-radius: 4px;
|
2013-10-30 07:01:52 +08:00
|
|
|
}
|
|
|
|
|
2013-10-07 01:29:14 +08:00
|
|
|
|
|
|
|
.submit_btn {
|
|
|
|
-webkit-border-radius: 2px;
|
|
|
|
-moz-border-radius: 2px;
|
|
|
|
border-radius: 2px;
|
|
|
|
background-image: none;
|
|
|
|
box-shadow: none;
|
|
|
|
border: none;
|
|
|
|
font-size: 15px;
|
|
|
|
padding: 13px 10px;
|
|
|
|
margin:0 0 0 15px;
|
|
|
|
background: #76ab3b;
|
|
|
|
background: -moz-linear-gradient(top, #90c356 0%, #649a27 100%);
|
|
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#90c356), color-stop(100%,#649a27));
|
|
|
|
background: -webkit-linear-gradient(top, #90c356 0%,#649a27 100%);
|
|
|
|
background: -o-linear-gradient(top, #90c356 0%,#649a27 100%);
|
|
|
|
background: -ms-linear-gradient(top, #90c356 0%,#649a27 100%);
|
|
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#90c356', endColorstr='#649a27',GradientType=0 );
|
|
|
|
background: linear-gradient(top, #90c356 0%,#649a27 100%);
|
|
|
|
color: #fff !important;
|
|
|
|
text-shadow: 0 -1px 0 rgba(0,0,0,.4);
|
|
|
|
width:140px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.submit_btn:hover {
|
|
|
|
background:#649a27;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
#meeting-id{
|
|
|
|
font-size:20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#welcomeMsg{
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#bbb-title{
|
|
|
|
display:inline;
|
|
|
|
font-size: 60px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*#bbb-logo{
|
|
|
|
display:"inline";
|
2013-10-30 07:38:52 +08:00
|
|
|
}*/
|
|
|
|
|