2012-09-21 04:46:45 +00:00
|
|
|
/* Welcome to Compass.
|
|
|
|
|
* In this file you should write your main styles. (or centralize your imports)
|
|
|
|
|
* Import this file using the following HTML or equivalent:
|
|
|
|
|
* <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@import "compass/reset";
|
|
|
|
|
@import "compass/css3/images";
|
|
|
|
|
@import "compass/css3/background-size";
|
|
|
|
|
|
2012-10-03 00:54:29 +00:00
|
|
|
@import "client/common.css.scss";
|
2012-09-21 04:46:45 +00:00
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
color: $text;
|
|
|
|
|
/*
|
|
|
|
|
@include background-image(
|
|
|
|
|
linear-gradient(top, $color7, scale-lightness($color7, 30%)));
|
|
|
|
|
*/
|
|
|
|
|
background-color: shade($color7, 10%);
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 1200px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
font-family: 'LatoRegular', Arial, sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
cursor:pointer;
|
|
|
|
|
color: $link;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
form {
|
|
|
|
|
clear:both;
|
|
|
|
|
margin: 1em;
|
|
|
|
|
}
|
2012-09-29 17:48:23 +00:00
|
|
|
form .body {
|
|
|
|
|
/* TODO - size with layout */
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 40%;
|
|
|
|
|
max-height: 40%;
|
|
|
|
|
overflow:auto;
|
|
|
|
|
}
|
2012-09-21 04:46:45 +00:00
|
|
|
fieldset {
|
2012-09-29 17:48:23 +00:00
|
|
|
/*border: 1px solid #555;*/
|
|
|
|
|
/*padding: 1em;*/
|
|
|
|
|
/*margin: 2em 1em;*/
|
|
|
|
|
/*width:auto;*/
|
|
|
|
|
/*float:left;*/
|
|
|
|
|
}
|
|
|
|
|
fieldset.unstyled {
|
|
|
|
|
border: 1px solid #f00;
|
2012-09-21 04:46:45 +00:00
|
|
|
}
|
|
|
|
|
.formrow {
|
2012-09-29 17:48:23 +00:00
|
|
|
margin: 1em;
|
|
|
|
|
padding: 1em;
|
|
|
|
|
border: 1px solid #555;
|
|
|
|
|
float:left;
|
2012-09-21 04:46:45 +00:00
|
|
|
}
|
2012-10-26 03:24:05 +00:00
|
|
|
|
2012-09-21 04:46:45 +00:00
|
|
|
label {
|
|
|
|
|
display:block;
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-26 03:24:05 +00:00
|
|
|
.hidden {
|
|
|
|
|
display:none;
|
|
|
|
|
}
|
|
|
|
|
|
2012-09-21 04:46:45 +00:00
|
|
|
.curtain {
|
|
|
|
|
background-color: shade($color7, 10%);
|
|
|
|
|
}
|
|
|
|
|
|
2012-11-03 00:29:58 +00:00
|
|
|
.notify {
|
|
|
|
|
background-color: $color8;
|
|
|
|
|
color:#000;
|
|
|
|
|
}
|
|
|
|
|
.notify a {
|
|
|
|
|
color:#000;
|
|
|
|
|
font-weight:bold;
|
|
|
|
|
}
|
|
|
|
|
|
2012-09-21 04:46:45 +00:00
|
|
|
.header h1 {
|
|
|
|
|
margin:22px;
|
|
|
|
|
font-size:300%;
|
|
|
|
|
font-family: 'LatoLight', Arial, sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.userinfo {
|
|
|
|
|
position:absolute;
|
|
|
|
|
right:0px;
|
|
|
|
|
top:0px;
|
|
|
|
|
width: 266px;
|
|
|
|
|
z-index:5;
|
|
|
|
|
}
|
|
|
|
|
.userinfo img.avatar {
|
|
|
|
|
float:left;
|
|
|
|
|
}
|
|
|
|
|
.userinfo .username {
|
|
|
|
|
float:left;
|
|
|
|
|
margin-top: 18px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
.userinfo h2 {
|
|
|
|
|
font-size:120%;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
float:left;
|
|
|
|
|
margin-right:4px;
|
|
|
|
|
}
|
|
|
|
|
.userinfo .profile-toggle {
|
|
|
|
|
display:inline-block;
|
|
|
|
|
}
|
|
|
|
|
.userinfo ul {
|
|
|
|
|
clear:both;
|
|
|
|
|
background: $color7;
|
|
|
|
|
display:none;
|
|
|
|
|
}
|
|
|
|
|
.userinfo li {
|
|
|
|
|
display:block;
|
|
|
|
|
margin: 2px;
|
|
|
|
|
padding: 2px;
|
|
|
|
|
background: scale-lightness($color7, 10%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.screen.secondary {
|
|
|
|
|
}
|
|
|
|
|
.screen.secondary .footer {
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom:0px;
|
|
|
|
|
right:0px;
|
|
|
|
|
z-index:5;
|
|
|
|
|
background-color:$translucent1;
|
|
|
|
|
width:100%;
|
|
|
|
|
/*text-align:right;*/
|
|
|
|
|
}
|
|
|
|
|
.screen.secondary .footer button {
|
|
|
|
|
margin:1em 0em 1em 1em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.screen.secondary .breadcrumb {
|
|
|
|
|
margin-bottom:3em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.screen.secondary .breadcrumb p {
|
|
|
|
|
float:left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.screen.secondary p {
|
|
|
|
|
margin: .5em;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font-size: 120%;
|
|
|
|
|
}
|
|
|
|
|
.screen.secondary p.current {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.homecard {
|
|
|
|
|
cursor:pointer;
|
|
|
|
|
border: 1px solid $translucent1;
|
|
|
|
|
}
|
|
|
|
|
.homecard h2 {
|
|
|
|
|
position:absolute;
|
|
|
|
|
bottom:0px;
|
|
|
|
|
margin: 18px;
|
|
|
|
|
font-size:240%;
|
|
|
|
|
font-weight: 300;
|
|
|
|
|
font-family: 'LatoLight', Arial, sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.homecard.hover {
|
|
|
|
|
border: 1px solid $translucent2 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.homecard.createsession {
|
|
|
|
|
background-color: $color10;
|
|
|
|
|
@include background-image(
|
|
|
|
|
linear-gradient(bottom left, $color10, scale-lightness($color10, $gradient-diff)));
|
|
|
|
|
}
|
|
|
|
|
.homecard.findsession {
|
|
|
|
|
background-color: $color6;
|
|
|
|
|
@include background-image(
|
|
|
|
|
linear-gradient(bottom left, $color6, scale-lightness($color6, $gradient-diff)));
|
|
|
|
|
}
|
|
|
|
|
.homecard.practice {
|
|
|
|
|
background-color: $color9;
|
|
|
|
|
@include background-image(
|
|
|
|
|
linear-gradient(bottom left, $color9, scale-lightness($color9, $gradient-diff)));
|
|
|
|
|
}
|
|
|
|
|
.homecard.bands {
|
|
|
|
|
background-color: $color1;
|
|
|
|
|
@include background-image(
|
|
|
|
|
linear-gradient(bottom left, $color1, scale-lightness($color1, $gradient-diff)));
|
|
|
|
|
}
|
|
|
|
|
.homecard.recordings {
|
|
|
|
|
background-color: $color5;
|
|
|
|
|
@include background-image(
|
|
|
|
|
linear-gradient(bottom left, shade($color5, $gradient-diff), $color5));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar {
|
|
|
|
|
background-color: rgba($color8, 0.1);
|
|
|
|
|
}
|
|
|
|
|
.sidebar .panel-header {
|
|
|
|
|
background-color: rgba(#fff, 0.2);
|
|
|
|
|
}
|
|
|
|
|
.sidebar h2 {
|
|
|
|
|
padding: 12px;
|
|
|
|
|
font-size: 180%;
|
|
|
|
|
font-family: LatoLight, Arial, sans-serif;
|
|
|
|
|
}
|
|
|
|
|
.sidebar .expander {
|
|
|
|
|
cursor:pointer;
|
|
|
|
|
background-color: $color8;
|
|
|
|
|
color: $color12;
|
|
|
|
|
}
|
|
|
|
|
.sidebar .expander p {
|
|
|
|
|
font-size: 100%;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
font-family: LatoBold, Arial, sans-serif;
|
|
|
|
|
padding: 8px;
|
|
|
|
|
}
|
|
|
|
|
.sidebar li {
|
|
|
|
|
position: relative;
|
|
|
|
|
height: 48px;
|
|
|
|
|
line-height:48px;
|
|
|
|
|
background-color: rgba($color8, 0.1);
|
|
|
|
|
margin: 4px 0px 4px 24px;
|
|
|
|
|
}
|
|
|
|
|
.sidebar li.offline {
|
|
|
|
|
color: shade($text, 40%);
|
|
|
|
|
}
|
|
|
|
|
.sidebar li img {
|
|
|
|
|
margin: 8px;
|
|
|
|
|
float:left;
|
|
|
|
|
}
|
|
|
|
|
.sidebar .name {
|
|
|
|
|
display:block;
|
|
|
|
|
position:absolute;
|
|
|
|
|
line-height: 18px;
|
|
|
|
|
height: 18px;
|
|
|
|
|
left: 48px;
|
|
|
|
|
top: 10px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
font-family: LatoBold, Arial, sans-serif;
|
|
|
|
|
font-size:110%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar .status {
|
|
|
|
|
display:block;
|
|
|
|
|
position:absolute;
|
|
|
|
|
line-height:12px;
|
|
|
|
|
height: 12px;
|
|
|
|
|
left: 48px;
|
|
|
|
|
top: 26px;
|
|
|
|
|
font-style: italic;
|
|
|
|
|
font-family: LatoItalic, Arial, sans-serif;
|
|
|
|
|
font-size: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
|
display: block;
|
|
|
|
|
float:left;
|
|
|
|
|
}
|
|
|
|
|
.avatar.medium {
|
|
|
|
|
width: 48px;
|
|
|
|
|
height: 48px;
|
|
|
|
|
margin-right: 12px;
|
|
|
|
|
}
|
|
|
|
|
.avatar.small {
|
|
|
|
|
width: 32px;
|
|
|
|
|
height: 32px;
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-22 02:55:05 +00:00
|
|
|
/* Session Tracks */
|
|
|
|
|
.session-track {
|
|
|
|
|
width: 125px;
|
|
|
|
|
height: 300px;
|
|
|
|
|
border: 1px solid #fff;
|
|
|
|
|
position:relative;
|
2012-10-26 14:46:04 +00:00
|
|
|
float:left;
|
2012-10-22 02:55:05 +00:00
|
|
|
}
|
|
|
|
|
.session-track [track-role] { margin:4px; }
|
|
|
|
|
.session-track .latency { text-align:center; }
|
|
|
|
|
.session-track .latency.good { color:#00ff00; }
|
|
|
|
|
.session-track .latency.medium { color:#ffff00; }
|
|
|
|
|
.session-track .latency.bad { color:#ff0000; }
|
|
|
|
|
|
|
|
|
|
.session-track .mute {
|
|
|
|
|
background-color:#bbb; color:#000;
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 80px;
|
|
|
|
|
width: 117px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.session-track .name {
|
|
|
|
|
background-color:#ddd; color:#000;
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 60px;
|
|
|
|
|
width: 117px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
.session-track .part {
|
|
|
|
|
background-color:#fff; color:#000;
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 40px;
|
|
|
|
|
width: 117px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.session-track .avatar {
|
|
|
|
|
position:absolute;
|
|
|
|
|
width: 32px;
|
|
|
|
|
height: 32px;
|
|
|
|
|
bottom:4px;
|
|
|
|
|
left: 46px;
|
|
|
|
|
}
|
|
|
|
|
.session-track .avatar img {
|
|
|
|
|
width: 32px; height: 32px;
|
|
|
|
|
}
|
|
|
|
|
|