2013-04-03 23:49:54 +04:00
|
|
|
:root {
|
|
|
|
font: caption;
|
|
|
|
}
|
|
|
|
|
2012-11-30 12:07:59 +04:00
|
|
|
html {
|
2012-12-18 11:54:00 +04:00
|
|
|
background-color: #111;
|
|
|
|
background-image: url("chrome://browser/skin/newtab/noise.png");
|
2012-11-30 12:07:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2012-12-18 11:54:00 +04:00
|
|
|
font-family: Arial, sans-serif;
|
|
|
|
color: white;
|
2012-11-30 12:07:59 +04:00
|
|
|
max-width: 600px;
|
2012-12-18 11:54:00 +04:00
|
|
|
margin: 30px auto 0;
|
|
|
|
box-shadow: 0 2px 3px black;
|
|
|
|
background-color: #3C3E40;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
margin: 0;
|
|
|
|
padding: 20px;
|
|
|
|
background-color: rgba(0,0,0,0.12);
|
|
|
|
background-image: radial-gradient(ellipse farthest-corner at center top , rgb(159, 223, 255), rgba(101, 203, 255, 0.3)), radial-gradient(ellipse farthest-side at center top , rgba(101, 203, 255, 0.4), rgba(101, 203, 255, 0));
|
|
|
|
background-size: 100% 2px, 100% 5px;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
border-bottom: 1px solid rgba(0,0,0,0.1);
|
2012-11-30 12:07:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
label {
|
|
|
|
display: block;
|
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
label > span {
|
|
|
|
display: inline-block;
|
|
|
|
min-width: 150px;
|
|
|
|
text-align: right;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#submit {
|
|
|
|
margin-left: 160px;
|
|
|
|
}
|
|
|
|
|
2012-12-18 11:54:00 +04:00
|
|
|
input:invalid {
|
|
|
|
box-shadow: 0 0 2px 2px #F06;
|
|
|
|
}
|
2012-11-30 12:07:59 +04:00
|
|
|
|
2012-12-18 11:54:00 +04:00
|
|
|
section {
|
|
|
|
min-height: 160px;
|
|
|
|
margin: 60px 20px;
|
|
|
|
display: none; /* By default, hidden */
|
2012-11-30 12:07:59 +04:00
|
|
|
}
|
|
|
|
|
2012-12-18 11:54:00 +04:00
|
|
|
.error-message {
|
|
|
|
color: red;
|
2012-11-30 12:07:59 +04:00
|
|
|
}
|
|
|
|
|
2012-12-18 11:54:00 +04:00
|
|
|
.error-message:not(.active) {
|
2012-11-30 12:07:59 +04:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
body:not(.actors-mode):not(.connecting) > #connection-form {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
body.actors-mode > #actors-list {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
body.connecting > #connecting {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
#connecting {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2012-12-18 11:54:00 +04:00
|
|
|
#connecting > p > img {
|
|
|
|
vertical-align: top;
|
2012-11-30 12:07:59 +04:00
|
|
|
}
|
|
|
|
|
2012-12-21 21:29:08 +04:00
|
|
|
.actors {
|
2012-11-30 12:07:59 +04:00
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
|
2012-12-21 21:29:08 +04:00
|
|
|
.actors > a {
|
2012-11-30 12:07:59 +04:00
|
|
|
display: block;
|
|
|
|
margin: 5px;
|
|
|
|
padding: 5px;
|
2012-12-18 11:54:00 +04:00
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.remote-process {
|
|
|
|
font-style: italic;
|
|
|
|
opacity: 0.8;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
|
|
|
padding: 10px;
|
|
|
|
background-color: rgba(0,0,0,0.12);
|
|
|
|
border-top: 1px solid rgba(0,0,0,0.1);
|
|
|
|
font-size: small;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer > a,
|
|
|
|
footer > a:visited {
|
|
|
|
color: white;
|
2012-11-30 12:07:59 +04:00
|
|
|
}
|