jam-cloud/app/assets/stylesheets/client/jamkazam.css.scss

143 lines
2.4 KiB
SCSS
Raw Normal View History

/* 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";
body {
color: $ColorText;
background-color: $ColorUIBackground;
width: 100%;
height: 100%;
overflow: hidden;
font-family: 'LatoRegular', Arial, sans-serif;
}
a {
cursor:pointer;
color: $ColorLink;
}
a:hover {
text-decoration: underline;
}
form {
clear:both;
margin: 1em;
}
form .body {
/* TODO - size with layout */
width: 100%;
height: 40%;
max-height: 40%;
overflow:auto;
}
fieldset {
/*border: 1px solid #555;*/
/*padding: 1em;*/
/*margin: 2em 1em;*/
/*width:auto;*/
/*float:left;*/
}
fieldset.unstyled {
border: 1px solid #f00;
}
.formrow {
margin: 1em;
padding: 1em;
border: 1px solid #555;
float:left;
}
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;
}
.hidden {
display:none;
}
.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;
}
/* Invitations */
#invitation-controls {
clear:both;
}
2012-11-11 20:34:05 +00:00
/* TODO - generalize */
.instrument, .invitation {
margin: 1px;
background: $ColorElementPrimary;
color:$ColorText;
padding: 3px;
width:auto;
float:left;
}
2012-11-11 20:34:05 +00:00
.instrument span, .invitation span {
font-size:85%;
font-weight:bold;
cursor:pointer;
}
2012-11-11 20:34:05 +00:00
.profiency {
float:left;
}
/* Autocomplete */
.autocomplete {
border:1px solid #999;
background:$ColorElementPrimary;
color:$ColorText;
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; }