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;
|
|
|
|
|
font-family: 'LatoRegular', Arial, sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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-11-11 20:34:05 +00:00
|
|
|
.button1 {
|
|
|
|
|
background: $color1;
|
|
|
|
|
color: #fff !important;
|
|
|
|
|
font-weight:bold;
|
|
|
|
|
font-size: 120%;
|
|
|
|
|
margin: 2px;
|
|
|
|
|
padding:8px;
|
|
|
|
|
}
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
.avatar.medium {
|
|
|
|
|
width: 48px;
|
|
|
|
|
height: 48px;
|
|
|
|
|
margin-right: 12px;
|
|
|
|
|
}
|
|
|
|
|
.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; }
|
|
|
|
|
|
2012-10-22 02:55:05 +00:00
|
|
|
|