Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
inc-md-js/css/shared-styles.css
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
124 lines (123 sloc)
1.9 KB
This file contains 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
#loading { | |
display: none; | |
position: fixed; | |
width: 100%; | |
height: 100%; | |
} | |
#loading-indicator { | |
/* unused */ | |
} | |
body { | |
background-color: #FFFFFF; | |
margin: 0; | |
padding: 0; | |
font-family: Verdana, Arial, Helvetica, sans-serif; | |
font-size: 90%; | |
color: #333333; | |
} | |
iframe { | |
border: 0; | |
} | |
#incommon-header { | |
height: 85px; | |
border-bottom: 1px solid #999999; | |
text-align: left; | |
background-repeat: repeat; | |
background-color: #86AFDB; | |
} | |
#error-line { | |
font-weight: bold; | |
font-size: larger; | |
} | |
.header { | |
margin: 3ex 3em; | |
border-bottom: 1px solid #999999; | |
} | |
.body { | |
margin: 0 3em; | |
} | |
.body-left { | |
/* unused */ | |
} | |
.body-right { | |
float: right; | |
} | |
.footer { | |
margin: 3ex 3em; | |
border-top: 1px solid #999999; | |
font-size: smaller; | |
} | |
.footer-left { | |
/* unused */ | |
} | |
.footer-right { | |
float: right; | |
width: 20em; | |
} | |
#orgDisplayName { | |
font-style: italic; | |
} | |
#orgURL { | |
/* unused */ | |
} | |
#sp_logo { | |
margin-bottom: 1ex; | |
} | |
.sp_displayname { | |
font-style: italic; | |
} | |
.idp_displayname { | |
font-style: italic; | |
} | |
.boxed-content { | |
margin: 2ex 3em; | |
padding: 0.5ex 1.0em; | |
border: 1px solid #999999; | |
} | |
/* used exclusively by all-entities.html and all-orgs.html */ | |
.search-widget-container { | |
text-align: right; | |
margin: 1ex 0; | |
font-size: 0.85em; | |
} | |
.search-widget-input { | |
width: 20em; | |
margin-top: 4px; | |
} | |
.ui-menu { | |
font-size: 0.85em; | |
} | |
.ui-autocomplete { | |
max-height: 100px; | |
max-width: 20em; | |
overflow-y: auto; | |
/* prevent horizontal scrollbar */ | |
overflow-x: hidden; | |
/* add padding to account for vertical scrollbar */ | |
/*padding-right: 20px;*/ | |
} | |
/* IE 6 doesn't support max-height | |
* we use height instead, but this forces the menu to always be this tall | |
*/ | |
* html .ui-autocomplete { | |
height: 100px; | |
} | |
#intro { | |
margin: 2ex 3em; | |
font-style: italic; | |
font-size: smaller; | |
} | |
.heading { | |
font-size: 18pt; | |
font-weight: bold; | |
margin-bottom: 1ex; | |
} | |
.alpha-selector { | |
/* for future use */ | |
} | |
.section_header { | |
margin-top: 2ex; | |
} | |
.section_content { | |
/* for future use */ | |
} |