Created
March 29, 2012 19:06
-
-
Save RelativeMedia/2242221 to your computer and use it in GitHub Desktop.
frontend-master css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* =Sidebar Left | |
| this is the styling for the left sidebar section of the | |
| MapIt system. | |
| ------------------------------------------------------*/ | |
| /** | |
| * Sidebar container styling | |
| */ | |
| #map_sidebar_controls_container{ | |
| position:relative; | |
| } | |
| #map_directory_sidebar{ | |
| float: left; | |
| z-index: 1001; | |
| position: absolute; | |
| width: 34px; | |
| height:615px; | |
| } | |
| .left_sidebar_control{ | |
| width:0; | |
| overflow:hidden; | |
| float:left; | |
| } | |
| .left_sidebar_button_container { | |
| z-index: 1001; | |
| left: 0; | |
| padding: 0; | |
| width: 33px; | |
| margin: 100px 0 0 0; | |
| position: relative; | |
| float: left; | |
| } | |
| #event-guru-button-container{ | |
| margin-top: 170px; | |
| margin-left: -33px; | |
| } | |
| /** | |
| * Browse Directory Specific Styling | |
| */ | |
| /** left sidebar, search by company name */ | |
| #search-sidebar { | |
| margin-bottom: 10px; | |
| } | |
| #search-directory-form { | |
| text-align: center; | |
| padding-top: 5px; | |
| } | |
| #search-sidebar input[type="text"] { | |
| padding: 6px; | |
| -webkit-border-radius: 6px; | |
| -moz-border-radius: 6px; | |
| border-radius: 6px; | |
| width: 95%; | |
| height: 20px; | |
| margin-bottom: 5px; | |
| } | |
| .ui-autocomplete { | |
| width: 239px !important; | |
| border-top: 0; | |
| -ms-overflow-y: scroll; | |
| overflow-y: scroll; | |
| height: 200px; | |
| } | |
| .ui-menu-item { | |
| white-space: nowrap; | |
| list-style: none; | |
| padding: 4px; | |
| } | |
| /** left sidebar, browse by category */ | |
| #browse-by-category { | |
| margin-bottom: 10px; | |
| position: relative; | |
| } | |
| #sidebar-search-buttons { | |
| text-align: center; | |
| margin-top: 5px; | |
| } | |
| #reset,#submit { | |
| padding: 4px; | |
| width: 42%; | |
| -webkit-border-radius: 6px; | |
| -moz-border-radius: 6px; | |
| border-radius: 6px; | |
| cursor: pointer; | |
| } | |
| #submit { | |
| margin-left: 34px; | |
| } | |
| #browse-by-category ul { | |
| list-style: none; | |
| font-size: 8px; | |
| height: 490px; | |
| -ms-overflow-y: scroll; | |
| overflow-y: scroll; | |
| overflow-x: hidden; | |
| } | |
| /** | |
| * IE Specific Styles | |
| */ | |
| .ie8 #button{ | |
| filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); | |
| margin-left:0; | |
| } | |
| .ie7 #button{ | |
| filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); | |
| z-index:1000 !important; | |
| margin-left:0; | |
| } | |
| .ie7 #map_sidebar_controls_container{ | |
| top:10px !important; | |
| } | |
| .ie7 .category{ | |
| width:20px; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment