2014-11-06 21:50:01 +00:00
// Place all the styles related to the Projects controller here.
// They will automatically be included in application.css.
// You can use Sass (SCSS) here: http://sass-lang.com/
2014-11-07 20:37:59 +00:00
//colors
$color_storm_dust_approx : #646464 ;
$alabaster : #fafafa ;
$color_celeste_approx : #cecece ;
$color_dodger_blue_approx : #1d84fb ;
$color_logan_approx : #aaaacc ;
$color_white_approx : #fefeff ;
$white : #fff ;
$color_ebony_clay_approx : #223344 ;
$color_arapawa_approx : #111166 ;
$color_mischka_approx : #ccccdd ;
$color_stratos_approx : #000044 ;
$color_picton_blue_approx : #3ab1fe ;
//fonts
$font_0 : ' Open Sans ' ;
$font_1 : ' Open Sans Light ' ;
$font_2 : ' Open Sans Bold ' ;
//@extend-elements
//original selectors
//.navbar-bright a, .navbar-bright .navbar-brand, #masthead h4
% extend_1 {
color : $color_mischka_approx ;
font-size : 14 px ;
text-transform : uppercase ;
letter-spacing : .08 em ;
}
@import url( 'http://fonts.googleapis.com/css?family=Open+Sans:400,300,600' ) ;
body {
color : $color_storm_dust_approx ;
background-color : #FAFAFA ;
}
2014-11-07 20:44:39 +00:00
2014-11-07 20:37:59 +00:00
h1 {
font-family : $font_0 , $font_1 , $font_2 ;
}
2014-11-07 20:44:39 +00:00
2014-11-07 20:37:59 +00:00
h2 {
font-family : $font_0 , $font_1 , $font_2 ;
}
2014-11-07 20:44:39 +00:00
2014-11-07 20:37:59 +00:00
h3 {
font-family : $font_0 , $font_1 , $font_2 ;
}
2014-11-07 20:44:39 +00:00
2014-11-07 20:37:59 +00:00
. highlight {
font-family : $font_0 , $font_1 , $font_2 ;
}
2014-11-07 20:44:39 +00:00
2014-11-07 20:37:59 +00:00
. navbar {
a {
font-family : $font_0 , $font_1 , $font_2 ;
}
& . affix {
position : fixed ;
top : 0 ;
width : 100 % ;
}
}
2014-11-07 20:44:39 +00:00
2014-11-07 20:37:59 +00:00
# masthead {
min-height : 311 px ;
background-color : #1D84FB ;
color : $color_logan_approx ;
background-image : url( '/assets/bg_header.png' ) ;
background-repeat : no-repeat ;
background-attachment : fixed ;
background-position : center 0 ;
h4 {
font-family : $font_0 , $font_1 , $font_2 ;
@extend % extend_1 ;
}
h1 {
font-size : 55 px ;
line-height : 1 ;
color : $color_white_approx ;
margin-top : 50 px ;
}
. well {
clear : both ;
background-color : #1D84FB ;
border : none ;
//Instead of the line below you could use @includebox-shadow($shadow-1, $shadow-2, $shadow-3, $shadow-4, $shadow-5, $shadow-6, $shadow-7, $shadow-8, $shadow-9, $shadow-10)
box-shadow : none ;
color : $white ;
}
}
2014-11-07 20:44:39 +00:00
2014-11-07 20:37:59 +00:00
footer {
margin-top : 40 px ;
padding-top : 40 px ;
padding-bottom : 40 px ;
background-color : $color_celeste_approx ;
}
2014-11-07 20:44:39 +00:00
2014-11-07 20:37:59 +00:00
# topPanel {
padding-top : 0 ;
padding-left : 22 px ;
padding-right : 22 px ;
. panel-body {
padding-top : 0 ;
}
}
2014-11-07 20:44:39 +00:00
2014-11-07 20:37:59 +00:00
. top-spacer {
background-color : $white ;
height : 40 px ;
}
2014-11-07 20:44:39 +00:00
2014-11-07 20:37:59 +00:00
a {
color : $color_ebony_clay_approx ;
text-decoration : none ;
& : hover {
color : $color_ebony_clay_approx ;
text-decoration : none ;
}
}
2014-11-07 20:44:39 +00:00
2014-11-07 20:37:59 +00:00
. icon-bar {
background-color : $white ;
}
2014-11-07 20:44:39 +00:00
2014-11-07 20:37:59 +00:00
@media screen and ( min-width : 768 px ) {
# masthead h1 {
font-size : 80 px ;
}
}
2014-11-07 20:44:39 +00:00
2014-11-07 20:37:59 +00:00
. navbar-bright {
background-color : $color_arapawa_approx ;
color : $white ;
margin-bottom : 0 ;
border-width : 0 ;
a {
@extend % extend_1 ;
}
. navbar-brand {
@extend % extend_1 ;
}
li > a : hover {
background-color : $color_stratos_approx ;
}
}
2014-11-07 20:44:39 +00:00
2014-11-07 20:37:59 +00:00
. dropdown-menu {
min-width : 250 px ;
}
2014-11-07 20:44:39 +00:00
2014-11-07 20:37:59 +00:00
. caret {
color : $white ;
}
2014-11-07 20:44:39 +00:00
2014-11-07 20:37:59 +00:00
. navbar-toggle {
color : $white ;
border-width : 0 ;
& : hover {
background-color : $white ;
}
}
2014-11-07 20:44:39 +00:00
2014-11-07 20:37:59 +00:00
. panel {
clear : both ;
margin-top : - 120 px ;
background-color : $white ;
border-radius : 15 ;
padding : 15 px ;
box-shadow : 2 px 2 px 3 px #aaaaaa ;
. lead {
overflow : hidden ;
height : 90 px ;
}
}
2014-11-07 20:44:39 +00:00
2014-11-07 20:37:59 +00:00
. thumbnail {
margin-bottom : 8 px ;
}
2014-11-07 20:44:39 +00:00
2014-11-07 20:37:59 +00:00
. img-container {
overflow : hidden ;
height : 170 px ;
img {
min-width : 280 px ;
min-height : 180 px ;
max-width : 380 px ;
max-height : 280 px ;
}
}
2014-11-07 20:44:39 +00:00
2014-11-07 20:37:59 +00:00
. txt-container {
overflow : hidden ;
height : 100 px ;
}
2014-11-07 20:44:39 +00:00
2014-11-07 20:37:59 +00:00
. label-float {
margin : 0 auto ;
position : absolute ;
top : 0 ;
z-index : 1 ;
width : 100 % ;
opacity : .9 ;
padding : 6 px ;
color : $white ;
}
2014-11-07 20:44:39 +00:00
2014-11-07 20:37:59 +00:00
. navbar-form input {
width : auto ;
}
2014-11-07 20:44:39 +00:00
2014-11-07 20:37:59 +00:00
. form-inline input {
width : auto ;
}