@import 'reset.less'; /****************************KEEP***************/ #content{ width: 100%; background: #fff; } aside{ float:right; width:288px; } .inner{ padding: 15px; background-color:#fff; } .clearfix:before, .clearfix:after { content: "\0020"; display: block; height: 0; visibility: hidden; } .clearfix:after { clear: both; } /* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */ .ie7 .clearfix { zoom: 1; } .ie6 .clearfix { height:1%; } .commonBlue{ color:#157ABB; } /****************MIXIN FUNCTIONS*******************/ @common-orange: #FF990A; @common-blue: #003263; /*border*/ .border(@top:1px solid #000, @right:1px solid #000, @bottom:1px solid #000, @left:1px solid #000) { border-top:@top; border-right:@right; border-bottom:@bottom; border-left:@left; } .border-radius( @radius: 8px ) { -webkit-border-radius: @radius; -moz-border-radius: @radius; border-radius: @radius; } .border-radius-top-left( @radius: 8px ){ -webkit-border-top-left-radius: @radius; -moz-border-radius-topleft: @radius; border-top-left-radius: @radius; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; } .border-radius-top-right( @radius: 8px ){ -webkit-border-top-right-radius: @radius; -moz-border-radius-topright: @radius; border-top-right-radius: @radius; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; } .border-radius-bottom-left( @radius: 8px ){ -webkit-border-bottom-left-radius: @radius; -moz-border-radius-bottomleft: @radius; border-bottom-left-radius: @radius; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; } .border-radius-bottom-right( @radius: 8px ){ -webkit-border-bottom-right-radius: @radius; -moz-border-radius-bottomright: @radius; border-bottom-right-radius: @radius; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; } .border-radius-top( @radius: 8px ) { .border-radius-top-left( @radius ); .border-radius-top-right( @radius ); -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; } .border-radius-right( @radius: 8px ) { .border-radius-top-right( @radius ); .border-radius-bottom-right( @radius ); -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; } .border-radius-bottom( @radius: 8px ) { .border-radius-bottom-left( @radius ); .border-radius-bottom-right( @radius ); -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; } .border-radius-left( @radius: 8px ) { .border-radius-top-left( @radius ); .border-radius-bottom-left( @radius ); -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; } /*gradients*/ .bg-gradient(@color1: #ddd, @color2: #999) { background-color: @color2; background: -webkit-gradient(linear, 0 0, 0 100%, from(@color1), to(@color2)); background: -moz-linear-gradient(top, @color1, @color2); background: -ms-linear-gradient(top, @color1, @color2); } .bg-gradient-horizontal(@color1: #ddd, @color2: #999){ background-color: @color2; background: -moz-linear-gradient(left, @color1, @color2); background: -webkit-gradient(linear, left center, right center, from(@color1), to(@color2)); background: -ms-linear-gradient(left, @color1, @color2); } /*display*/ .inline-block( @align: top ){ display: -moz-inline-stack; display: inline-block; zoom: 1; /* zoom and *display = ie7 hack for display:inline-block */ *display: inline; vertical-align: @align; } /*box*/ .box-shadow(@x:3px, @y:3px, @blur:5px, @spread:0, @color:rgba(0,0,0,0.5)) { -webkit-box-shadow:@x @y @blur @spread @color; -moz-box-shadow:@x @y @blur @spread @color; box-shadow:@x @y @blur @spread @color; } .box-shadow-inset(@x:3px, @y:3px, @blur:5px, @spread:0, @color:rgba(0,0,0,0.5)) { -webkit-box-shadow:inset @x @y @blur @spread @color; -moz-box-shadow:inset @x @y @blur @spread @color; box-shadow:inset @x @y @blur @spread @color; } .box-shadow-clear() { -webkit-box-shadow:none; -moz-box-shadow:none; box-shadow:none; } .drop-shadow(@xAxis: 0, @yAxis: 1px, @blur: 2px, @alpha: 0.1) { -webkit-box-shadow: @xAxis @yAxis @blur rgba(0, 0, 0, @alpha); -moz-box-shadow: @xAxis @yAxis @blur rgba(0, 0, 0, @alpha); box-shadow: @xAxis @yAxis @blur rgba(0, 0, 0, @alpha); } .drop-shadow-custom(@shadow) { -webkit-box-shadow: @shadow; -moz-box-shadow: @shadow; box-shadow: @shadow; } .box-sizing(@type: border-box) { -moz-box-sizing: @type; -webkit-box-sizing: @type; box-sizing: @type; } /*columns*/ .css3-columns(@count:3, @gap:15) { -webkit-column-count:@count; -moz-column-count:@count; column-count:@count; -webkit-column-gap:@gap; -moz-column-gap:@gap; column-gap:@gap; } /*transitions*/ .transition(@what:all, @length:1s, @easing:ease-in-out) { -webkit-transition:@what @length @easing; -moz-transition:@what @length @easing; transition:@what @length @easing; } /****************************end keep***************/ /***********************HEADER********************/ header{ position: relative; height: 100px; margin-bottom: 8px; .left{ width:auto; } ul{ position: absolute; right: 0; bottom: 0; width:auto; li{ .inline-block(middle); & :first-child{ margin-right: 10px; font-size:14px; color:#fff; } }/*end:li*/ }/*end:ul*/ }/*end:header*/ nav{ .border-radius-top; height: 36px; width: 100%; line-height: 36px; background: url(../images/nav_bg.jpg) repeat-x; ul{ li{ padding: 0px 25px; background-image: url(../images/nav_divider.png); background-repeat: no-repeat; background-position: 0 12px; height: 36px; .inline-block; & :first-child{ background: none; } }/*end:li*/ }/*end:ul*/ a{ & :link, & :active, & :visited{ color: #9c9c9c; text-transform: uppercase; text-decoration: none; font-weight: bold; font-size: 14px; } & ::hover{ color: #666; } }/*end:a*/ }/*end:nav*/ /***********************end header********************/ /*******************FOOTER************************/ footer{ position:relative; padding:14px; .bg-gradient(#ffffff, #cecdcd); .border-radius-bottom; height:32px; ul{ float:right; li{ .inline-block(middle); list-style:none; padding-right:15px; a{ color:#9C9C9C; text-decoration:none; font-size:14px; &:visited{ color:#666; } } }/*end:li*/ &:first-child{ float:left; } } div{ position:absolute; bottom:-55px; text-align:left; color:#773000; font-size:10px; height:45px; line-height:45px; display:block; width:100%; ul{ float:right; width:auto; li{ .inline-block; margin-right:10px; a:link, a:active, a:hover, a:visited{ color:#773000; font-size:10px; text-decoration:underline; } } }/*end:ul*/ }/*end:div*/ }/*end:footer*/ /*********************************end footer****************************/ /***************************LEFT OVERS***********************/ #inner .right img { margin-bottom: 10px; } #recentComments { height: 40px; width: 100%; line-height: 40px; font-weight: bold; color: #fff; .bg-gradient(#6199BC,#417DA2); .border-radius-top; span{ .inline-block; color:#fff; margin-left:50px; font-size:16px; font-weight:200; } img{ position:relative; left:35px; top:6px; } }/*end:#recentComments*/ #social { position: absolute; bottom: 0px; right: 0px; } #banner { width: 100%; height: 250px; border-bottom: 7px solid #d5edf7; } #banner.tennis{ background: url(../images/bg_tennis.jpg) no-repeat; } #banner.baseball{ background: url(../images/bg_baseball.jpg) no-repeat; } #banner.football{ background: url(../images/bg_football.jpg) no-repeat; } #banner.soccer{ background: url(../images/bg_soccer.jpg) no-repeat; } #banner h1 { color: #fff; font-size: 32px; font-weight: bold; position: relative; top:30px; left: 30px; text-transform: uppercase; width: 537px; margin: 0px; padding: 0px; display: block; line-height: 29px; } #searchHolder { position: relative; top: 47px; left: 22px; width: 537px; } #searchBG{ width: 100%; height: 90px; .bg-gradient(#848383, #2d2d2d); } #school { margin-left: 30px; } .round { -moz-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px; } .round-small { -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; } #searchBG input { padding: 0px; margin-top: 8px ; margin-bottom: 8px ; } #searchBox { width: 392px; margin-left: 8px; font-size: 19px; color: #ff990a; height:36px; } #searchButton { width: 110px; border: none; text-transform: uppercase; font-size: 16px; font-weight: bold; height: 40px; color: #fff; margin-left: 8px; .bg-gradient(#6199BC, #417DA2); -moz-box-shadow: 3px 3px 4px #333; -webkit-box-shadow: 3px 3px 4px #333; box-shadow: 3px 3px 4px #333; &:hover{ .bg-gradient(#417DA2, #6199BC); } cursor: pointer; } .left { float: left; } .right { float: right; } .clearit { clear: both; } .roundBottom { -moz-border-radius: 0px 0px 8px 8px; -webkit-border-radius: 0px 0px 8px 8px; border-radius: 0px 0px 8px 8px; } .box { padding: 8px; border: 1px solid #8F8F8F; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; } .pill_green { border: 1px solid #5f7555; background-image: -webkit-gradient( linear, left bottom, left top, color-stop(1, rgb(111,197,74)), color-stop(0, rgb(67,139,33))); background-image: -moz-linear-gradient( center bottom, rgb(111,197,74) 100%, rgb(67,139,33) 0%); } .pill_orange{ border: 1px solid #c35611; .bg-gradient(#e27006, #ca5100); } #rateBoxFooter .pill_orange { float: right; } #rateBoxFooter a { position: relative; top: 6px; font-size:12px; color: #333; left:10px; } .shadow { -moz-box-shadow: 0px 3px 11px #8f8f8f; -webkit-box-shadow: 0px 3px 11px #8f8f8f; box-shadow: 0px 3px 11px #8f8f8f; position: relative; z-index: 50; } #topContainer { width: 100%; background: #fff; } a:link, a:hover, a:active, a:visited { color: #13527c; } .blueGradButton { color:#fff; .bg-gradient(#6199bc, #437c9f); } .lightBlueGrad { background-color: #ffffff; .bg-gradient(#ffffff, #dee7ed); border:1px solid #8f8f8f; } #coachId .lightBlueGrad { margin: 15px auto 0px auto; text-align: left; line-height: 50px; font-size: 20px; color: #4f809f; font-weight: lighter; position: relative; padding-bottom: 8px; } #coachId .lightBlueGrad div { height:21px; } #callToAction div { margin-bottom: 8px; padding-left: 57px; color: #fff; line-height: 47px; height: 47px; font-size: 16px; width: 283px; cursor: pointer; } #coachId .lightBlueGrad .pill{ float: right; display: block; } .textModalLink { color: #4a4a4a; cursor: pointer; font-size: 12px; margin-top: 20px; line-height: 21px; text-decoration: underline; } #coachId .box input { width: 83%; height: 38px; font-size: 22px; line-height: 38px; padding: 0px 8px; margin: 0px 8px; } .searchResultTable .odd, #inner .left .odd { } .slider { float: left; width: 80%; } .amount { font-size: 20px; float: right; color:#FF990A; margin-left: 10px; border: 0px; width: 10%; cursor: default; } /****************SEARCH ************/ #searchTabHolder { width: 100%; float: left; background: #e1ecf3; border:1px solid #A6C9E2; } #search #tabs ul li + li{ float:right; position:relative; right:-2px; } #search .ui-tabs .ui-tabs-nav li{ margin:0; } #subHeader{ width:960px; height:157px; } #search .left{ width:275px; } #tabs ul li a img{ height:14px; } #pagination { width: 100%; margin-top: 10px; font-size: 1.2em; } #pagination div { float: right; margin-right: 10px; } #pagination span, #pagination b{ display: inline-block; margin:0px 5px; } #pagination span{ border: 1px solid #ccc; padding: 3px 4px; .bg-gradient(#f8f8f8, #c9c9c9); } #pagination span a { color: #3c5e75; text-decoration: none; } #tabs-1 .greenSearchButton, #tabs-2 .greenSearchButton { float: right; } #searchTabHolder input[type=text] { width: 200px; font-size: 11px; border: 1px solid #aeaeae; padding:3px; height: 20px; } .greenSearchButton { font-size: 15px; .bg-gradient(#76c853, #448b20); -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid #5f7555; color: #fff; padding: 4px 7px; width: auto; cursor: pointer; } #allCats { height: 30px; width: 280px; padding-left: 10px; font-size: 17px; color: #fff; font-family: Arial, Veranda; line-height: 30px; background: url(../images/allcats_bg.png) no-repeat; margin: 10px 0px; position: relative; left: -3px; } #searchResults { float: right; width: 600px; } .searchResultTable { border: 8px solid #cbcbcb; width: 100%; } .searchResultTable td { padding: 10px; border: 1px solid #989898; text-align: left; } .searchResultTable th { color: #fff; padding: 6px 0px; background:#437C9F; } #numOfResults { color: #dc5800; font-family: Lucida Grande; font-size: 13px; padding-bottom: 10px; } #noResultsFound { background: #ffe2c3; border: 1px solid #e0b689; height: 30px; line-height: 25px; text-align: center; color: #4d3d2c; padding: 0px 15px; font-size: 14px; height: auto; } .searchDropDowns { margin: 10px 0px; } .searchDropDowns select { float: right; width:220px; } /***************GUIDES**************/ #featuredContent { border-top: 20px solid white; padding: 20px; height: 260px; margin-bottom: 20px; width: 920px; background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0.33, rgb(203,225,238)), color-stop(0.67, rgb(228,238,244)) ); background-image: -moz-linear-gradient( center bottom, rgb(203,225,238) 33%, rgb(228,238,244) 67% ); } #featuredContent .right { width: 520px; } .horzBlue, .horzGreen { height: 35px; line-height: 35px; padding-left: 20px; font-size: 17px; font-family: Arial, Veranda; } #featuredContent img { border: 8px solid #fff; } .horzGreen { color: #bff9a6; background-image: -webkit-gradient( linear, right top, left top, color-stop(0.33, rgb(119,190,88)), color-stop(0.67, rgb(69,135,38)) ); background-image: -moz-linear-gradient( right center, rgb(119,190,88) 33%, rgb(69,135,38) 67% ); } .greyButtonGrad { padding: 10px; color: #000; margin-bottom: 8px; cursor: pointer; border: 1px solid #b1c5d3; background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0.21, rgb(232,232,232)), color-stop(0.81, rgb(255,255,255)) ); background-image: -moz-linear-gradient( center bottom, rgb(232,232,232) 21%, rgb(255,255,255) 81% ); } .greyButtonGrad b { font-weight: bold; color: #3c82ae; } .guideSectionHolder { padding: 15px; border-width:0px 1px 1px 1px; border-color: #8F8F8F; border-style: solid; margin-bottom: 8px; } #guidesHolder { width: 940px; margin: 0 auto; } #guidesHolder .right, #guidesHolder .left { width: 48%; } .guideSectionHolder img { border: 1px solid #ccc; padding: 8px; float: left; margin-right: 15px; } .guideSectionHolder div { float: right; width: 218px; margin-top: 10px; color: #213b4b; } #content #inner .left .box div ol, #content #inner .left .box div ul { margin-left: 25px; list-style: disc; } #content #inner .left .box div { padding: 20px; } #content #inner .left .box div h2 { font-size: 18px; color: #000; } /*************COLLEGE ID *******************/ #school .left span{ color: #C35611; font-size: 1.25em; } #school hr { margin:10px 0px; } #school-comment-wrapper{ margin-bottom: 8px; } #school-comment-wrapper h2{ margin-bottom: 8px; } h2.lightBlueGrad, #school-comment-wrapper{ font-size: 20px; color: #13547d; } h2.lightBlueGrad { height: 51px; line-height: 51px; padding-left: 10px; } .comment-coaches-table { width: 100%; background:#fff; } .comment-coaches-table tr.horzBlue { text-align: left; font-size: 14px; color: #fff; height: 10px; line-height: 20px; } #school .ui-tabs .ui-tabs-panel{ padding:3px; background-color:#E3EDF4; border:1px solid #A6C9E2; } .comment-coaches-table td, .comment-coaches-table th{ padding: 8px; } .comment-coaches-table td { border: 1px solid #dde6eb; } #flashMessage { background: #fff; height: 30px; text-align: center; line-height: 30px; color: #003263; font-size: 18px; } #flashMessage span { border: 1px solid #333333; color: #333333; cursor: pointer; font-size: 13px; font-weight: bold; margin-left: 8px; padding: 0 4px; } /**************DASHBOARD************/ #dashNav { height: 32px; line-height: 32px; width: 100%; background: #d2e0f7; border-width: 1px 0px; border-color: #bbb; border-style: solid; margin-bottom: 25px; position: relative; top: 10px; } #dashNav li { display: inline; padding: 10px 20px; border-width: 0px 1px; border-style: solid; border-color: #bbb; background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0, rgb(255,255,255)), color-stop(1, rgb(210,224,247)) ); background-image: -moz-linear-gradient( center bottom, rgb(255,255,255) 0%, rgb(210,224,247) 100% ); } #dashNav li a { text-decoration: none; color: #000; font-size: 1.2em; } .red { color: red; } /********** HOME PAGE *************/ #home #inner .left ul{ padding: 20px; } #home #inner .left ul li{ padding:20px 20px 20px 10px; color: #414141; display: block; border-bottom: 1px dotted #bbb; } #home #inner .left ul li .left{ width: 16%; text-align: center; } #home #inner .left ul li .left b{ font-size: 20px; color: #ff990a; font-weight: bold; } #home #inner .left ul li .right{ width:80%; } #home #inner .left ul li.first{ padding-top: 0px; } #home #inner .left ul li.last{ border-bottom: none; padding-bottom: 0px; } #home #inner .left ul li h2{ color: #1d6fa1; font-family: Lucida Grande, Arial; font-size: 14px; } #home #inner .left ul li span{ color:#2c9310; font-style: italic; } /**********QUOTES PAGE***********/ #quotes h1{ height:32px; line-height: 32px; color: #fff; padding-left: 15px; font-size: 17px; } #quotes .results-table td a{ float:right; display: block; font-size: 11px; color: #437c9f; text-decoration: underline; } #quotes table tr td{ font-size: 15px; } /*************GENERIC**************/ .results-table{ width:100%; border-width:0 1px 1px 1px; border-style: solid; border-color:#DEE7ED; } .results-table td{ padding:8px; } aside{ .featured-content{ text-decoration:none !important; .bg-gradient(#fff, #d4d4d4); max-width:100%; height:80px; color:#818181; display:block; padding:8px; margin-bottom:8px; .border-radius; cursor:pointer; border:1px solid #ddd; &:hover, &:link, &:active, &:visited{ color:#818181; } .title{ font-family: Myriad Pro; color:#ff7d00; font-size:18px; font-weight:bold; margin-bottom:8px; font-style:italic; display:block } img{ float:left; margin-right:8px; } } } .ie7 aside .featured-content{ min-height:95px; .title + span{ margin-bottom:8px; } } .resultTable { border: 1px solid #DEE7ED; width: 100%; .border-radius-top; caption{ background-color: #F5FAFC; .bg-gradient(#F5FAFC, #DEEDF7); border-color: #E0E8ED; border-style: solid; border-width: 1px 1px 0; color: #13547D; font-size: 18px; line-height: 18px; padding: 15px 0 15px 8px; text-align: left; .border-radius-top; } tr{ &.odd{ background: #e8f2f6; } td{ padding: 8px; }/*end:td*/ th{ padding-left: 8px; color: #fff; font-weight: bold; height: 30px; line-height: 30px; text-align: left; background: #437c9f; } }/*end:tr*/ tfoot{ background: #437c9f; text-align: right; border: 1px solid #437C9F; } }/*end:.resultTable*/ /*****************COACH ID***************/ #coach .commonBlue{ top:6px; position:relative; } /***************COLLEGE ID **************/ #school #collegeID{ margin-bottom: 20px; } #school #inner #collegeID .left{ width:615px; } #collegeInfo{ width:195px; float:left; } #map_canvas{ width:350px; padding:4px; border:1px solid #ccc; float:right; }