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 {
|
2012-11-22 19:36:43 +00:00
|
|
|
color: $ColorText;
|
|
|
|
|
background-color: $ColorUIBackground;
|
2012-09-21 04:46:45 +00:00
|
|
|
width: 100%;
|
2012-11-22 19:36:43 +00:00
|
|
|
height: 100%;
|
2012-09-21 04:46:45 +00:00
|
|
|
overflow: hidden;
|
2012-12-31 20:56:18 +00:00
|
|
|
font-family: Raleway, Arial, Helvetica, sans-serif;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 300;
|
2012-09-21 04:46:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
cursor:pointer;
|
2012-11-22 19:36:43 +00:00
|
|
|
color: $ColorLink;
|
2012-09-21 04:46:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-11 03:43:30 +00:00
|
|
|
a.arrow-up {
|
|
|
|
|
float:right;
|
|
|
|
|
margin-right:5px;
|
|
|
|
|
display:block;
|
|
|
|
|
margin-top:6px;
|
|
|
|
|
width: 0;
|
|
|
|
|
height: 0;
|
|
|
|
|
border-left: 7px solid transparent;
|
|
|
|
|
border-right: 7px solid transparent;
|
|
|
|
|
border-bottom: 7px solid #333;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a.arrow-down {
|
|
|
|
|
float:right;
|
|
|
|
|
margin-right:5px;
|
|
|
|
|
display:block;
|
|
|
|
|
margin-top:6px;
|
|
|
|
|
width: 0;
|
|
|
|
|
height: 0;
|
|
|
|
|
border-left: 7px solid transparent;
|
|
|
|
|
border-right: 7px solid transparent;
|
|
|
|
|
border-top: 7px solid #333;
|
|
|
|
|
}
|
|
|
|
|
|
2012-09-21 04:46:45 +00:00
|
|
|
form {
|
|
|
|
|
clear:both;
|
|
|
|
|
margin: 1em;
|
|
|
|
|
}
|
2013-01-11 03:43:30 +00:00
|
|
|
|
2012-09-29 17:48:23 +00:00
|
|
|
form .body {
|
|
|
|
|
/* TODO - size with layout */
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 40%;
|
|
|
|
|
max-height: 40%;
|
|
|
|
|
overflow:auto;
|
|
|
|
|
}
|
2013-01-11 03:43:30 +00:00
|
|
|
|
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;*/
|
|
|
|
|
}
|
2013-01-11 03:43:30 +00:00
|
|
|
|
2012-09-29 17:48:23 +00:00
|
|
|
fieldset.unstyled {
|
|
|
|
|
border: 1px solid #f00;
|
2012-09-21 04:46:45 +00:00
|
|
|
}
|
2013-01-11 03:43:30 +00:00
|
|
|
|
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-11-11 20:34:05 +00:00
|
|
|
.button1 {
|
|
|
|
|
background: $color1;
|
|
|
|
|
color: #fff !important;
|
|
|
|
|
font-weight:bold;
|
|
|
|
|
font-size: 120%;
|
|
|
|
|
margin: 2px;
|
|
|
|
|
padding:8px;
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-11 03:43:30 +00:00
|
|
|
input[type="button"] {
|
|
|
|
|
margin:0px 8px 0px 8px;
|
|
|
|
|
background-color:#666;
|
|
|
|
|
border: solid 1px #868686;
|
|
|
|
|
outline:solid 2px #666;
|
|
|
|
|
padding:3px 10px;
|
|
|
|
|
font-family:raleway;
|
|
|
|
|
font-size:12px;
|
|
|
|
|
font-weight:300;
|
|
|
|
|
cursor:pointer;
|
|
|
|
|
color:#ccc;
|
|
|
|
|
}
|
|
|
|
|
|
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%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
|
display: block;
|
|
|
|
|
float:left;
|
|
|
|
|
}
|
2013-01-11 03:43:30 +00:00
|
|
|
|
2012-09-21 04:46:45 +00:00
|
|
|
.avatar.medium {
|
|
|
|
|
width: 48px;
|
|
|
|
|
height: 48px;
|
|
|
|
|
margin-right: 12px;
|
|
|
|
|
}
|
2013-01-11 03:43:30 +00:00
|
|
|
|
2012-09-21 04:46:45 +00:00
|
|
|
.avatar.small {
|
|
|
|
|
width: 32px;
|
|
|
|
|
height: 32px;
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
2012-11-08 15:13:47 +00:00
|
|
|
/* Invitations */
|
|
|
|
|
#invitation-controls {
|
|
|
|
|
clear:both;
|
|
|
|
|
}
|
|
|
|
|
|
2012-11-11 20:34:05 +00:00
|
|
|
/* TODO - generalize */
|
|
|
|
|
.instrument, .invitation {
|
2012-11-08 15:13:47 +00:00
|
|
|
margin: 1px;
|
2012-11-22 19:36:43 +00:00
|
|
|
background: $ColorElementPrimary;
|
|
|
|
|
color:$ColorText;
|
2012-11-08 15:13:47 +00:00
|
|
|
padding: 3px;
|
|
|
|
|
width:auto;
|
|
|
|
|
float:left;
|
|
|
|
|
}
|
|
|
|
|
|
2012-11-11 20:34:05 +00:00
|
|
|
.instrument span, .invitation span {
|
2012-11-08 15:13:47 +00:00
|
|
|
font-size:85%;
|
|
|
|
|
font-weight:bold;
|
|
|
|
|
cursor:pointer;
|
|
|
|
|
}
|
|
|
|
|
|
2012-11-11 20:34:05 +00:00
|
|
|
.profiency {
|
|
|
|
|
float:left;
|
|
|
|
|
}
|
|
|
|
|
|
2012-11-08 15:13:47 +00:00
|
|
|
/* Autocomplete */
|
|
|
|
|
.autocomplete {
|
|
|
|
|
border:1px solid #999;
|
2012-11-22 19:36:43 +00:00
|
|
|
background:$ColorElementPrimary;
|
|
|
|
|
color:$ColorText;
|
2012-11-08 15:13:47 +00:00
|
|
|
cursor:default;
|
|
|
|
|
text-align:left;
|
|
|
|
|
max-height:350px;
|
|
|
|
|
overflow:auto;
|
|
|
|
|
margin:-6px 6px 6px -6px;
|
|
|
|
|
/* IE6 specific: */ _height:350px;
|
|
|
|
|
_margin:0;
|
|
|
|
|
_overflow-x:hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.autocomplete .selected { background:#F0F0F0; }
|
|
|
|
|
|
|
|
|
|
.autocomplete div { padding:2px 5px; white-space:nowrap; overflow:hidden; }
|
|
|
|
|
|
|
|
|
|
.autocomplete strong { font-weight:normal; color:#3399FF; }
|
|
|
|
|
|
2013-01-11 03:43:30 +00:00
|
|
|
.multiselect-dropdown {
|
|
|
|
|
position:relative;
|
|
|
|
|
z-index:99;
|
|
|
|
|
width: 175px;
|
|
|
|
|
-webkit-border-radius: 6px;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
background-color:#C5C5C5;
|
|
|
|
|
border: none;
|
|
|
|
|
color:#333;
|
|
|
|
|
font-weight:400;
|
|
|
|
|
padding:0px 0px 0px 8px;
|
|
|
|
|
height:20px;
|
|
|
|
|
line-height:20px;
|
|
|
|
|
overflow:hidden;
|
|
|
|
|
-webkit-box-shadow: inset 2px 2px 3px 0px #888;
|
|
|
|
|
box-shadow: inset 2px 2px 3px 0px #888;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.multiselect-dropdown a {
|
|
|
|
|
color:#333;
|
|
|
|
|
text-decoration:none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.list-items {
|
|
|
|
|
float:left;
|
|
|
|
|
width:175px;
|
|
|
|
|
height:127px;
|
|
|
|
|
overflow:auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.list-item-text {
|
|
|
|
|
font-size:11px;
|
|
|
|
|
float:left;
|
|
|
|
|
width:135px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input[type="text"] {
|
|
|
|
|
background-color: $ColorTextBoxBackground;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mr10 {
|
|
|
|
|
margin-right:10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mr20 {
|
|
|
|
|
margin-right:20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mr30 {
|
|
|
|
|
margin-right:30px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ml10 {
|
|
|
|
|
margin-left:10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ml20 {
|
|
|
|
|
margin-left:20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ml30 {
|
|
|
|
|
margin-left:30px;
|
|
|
|
|
}
|
2012-10-22 02:55:05 +00:00
|
|
|
|
2013-01-11 03:43:30 +00:00
|
|
|
.op50 {
|
|
|
|
|
opacity: .5;
|
|
|
|
|
-ms-filter: "alpha(opacity=50)";
|
|
|
|
|
}
|