Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Initial checkin
nckroy committed Jan 3, 2018
1 parent d96d455 commit dec871f
Showing 691 changed files with 343,607 additions and 0 deletions.
15 changes: 15 additions & 0 deletions all-entities.html
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>InCommon Federation Entities</title>

<script type="text/javascript">
var url = "./info/all-entities.html";
window.location.replace( url );
</script>
</head>
<body>
<p>The address has changed: <a href="./info/all-entities.html">./info/all-entities.html</a></p>
</body>
</html>
236 changes: 236 additions & 0 deletions css/fm-template.css
@@ -0,0 +1,236 @@
/* navigation */
#primary-nav-bar {
height: 25px;
background-repeat: repeat;
background-color: black;
}
.login-link-container {
vertical-align: middle;
float: right;
margin-right: 3em;
}
#login-link {
color: white;
}
#other-login-links {
font-size: smaller;
}
#secondary-nav-bar {
height: 25px;
width: 100%;
font-size: 90%;
border-bottom: 1px solid #999999;
}
#secondary-nav-bar-prompt {
margin: 0 0.5em 0 3em;
vertical-align: middle;
font-weight: bold;
}
.nav-component {
margin-right: 0.5em;
vertical-align: middle;
}

.js #page-content { /* to prevent a "flash of unstyled content" */
display: none;
}
#loading {
display: none;
position: fixed;
background-color: #FFFFFF;
width: 31px;
height: 31px;
}

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 0 3em;
border-bottom: 1px solid #999999;
}
.body {
margin: 3ex 3em 0 3em;
}
.body-left {
/* unused */
}
.body-right {
float: right;
}
.footer {
margin: 3ex 3em;
border-top: 1px solid #999999;
padding-top: 5px;
font-size: smaller;
}
#footer-separator {
height: 20px;
width: 100%;
margin-bottom: 0.5ex;
}
.footer-left {
/* unused */
}
.footer-right {
float: right;
width: 20em;
}
#small-participant-logo {
float: left;
margin: 0 8px 0 0;
}
#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;
}
.boxed-right {
float: right;
text-align: center;
margin-left: 2em;
padding: 1.0ex 1.0em;
border: 1px solid #999999;
}

/* unused */
.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 {
width: 68em;
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 */
}

/* sorted tables */
table.tablesorter {
/* font-family: arial; */
background-color: #CDCDCD;
margin: 10px 0pt 15px;
font-size: 80%;
/* font-size: 8pt;
width: 100%; */
text-align: left;
}
table.tablesorter thead tr th, table.tablesorter tfoot tr th {
background-color: #dfeffc; /* heading color for unsorted columns */
border: 1px solid #FFF;
/* font-size: 8pt; */
padding: 4px;
}
table.tablesorter thead tr .header {
background-image: url(../images/bg.gif);
background-repeat: no-repeat;
background-position: center right;
cursor: pointer;
}
table.tablesorter tbody td {
color: #3D3D3D;
padding: 4px;
background-color: #FFF;
vertical-align: top;
}
table.tablesorter tbody tr.odd td {
background-color: #F0F0F6;
}
table.tablesorter thead tr .headerSortUp {
background-image: url(../images/asc.gif);
}
table.tablesorter thead tr .headerSortDown {
background-image: url(../images/desc.gif);
}
table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp {
background-color: #86afdb; /* heading color for sorted columns */
}

/* used exclusively be entity.html and org.html */
.metadata-table {
border-collapse: separate;
}
.metadata-table-row {
vertical-align: top;
}
.metadata-table-heading {
font-weight: bold;
text-align: right;
vertical-align: baseline;
width: 14em;
}
.metadata-table-content {
vertical-align: baseline;
border-left: inset 6pt transparent;
}

0 comments on commit dec871f

Please sign in to comment.