BUGMI 2014
Eddie Bachle
Albion College
"The Cascade theme provides Web 2.0 functionality within Banner Self-Service. This theme adds rich user interaction to Banner Self-Service such as auto complete functionality, button mouse-over state changes and in page refreshes to provide the end user a compelling user experience." -- Banner Web Tailor User Guide
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
<div id="content" style="display: block;">
<div id="bodyContainer">
<div id="pageheader">
<div id="pagetitle"></div>
<div id="crumb" class="anonymous">
<div class="breadCrumb">
<a class="">
Home
</a>
<div class="breadcrumbSeperator">
>
</div>
<a class="selected" style="cursor: default;">
homepage
</a>
</div>
</div>
</div>
<div id="pagebody" class="anonymous home">
<div id="mainBannerImage"></div>
<div id="contentHolder" style="display: none;">
<div id="contentBelt"></div>
</div>
<div id="row1">
<div class="anonymousHomeLinks" style="height: 71px;">
<h3>
<a id="contentItem0">
Enter Secure Area
</a>
</h3>
<p>
<a id="contentItem0">
Login here to view your personal information.
</a>
</p>
</div>
<div class="anonymousHomeLinks" style="height: 71px;">
<h3>
<a id="contentItem1">
General Financial Aid
</a>
</h3>
<p>
<a id="contentItem1">
Financial Aid Application and Information Links.
</a>
</p>
</div>
<div class="anonymousHomeLinks" style="height: 71px;">
<h3>
<a id="contentItem2">
Campus Directory
</a>
</h3>
<p>
<a id="contentItem2">
Contact Information for campus employees.
</a>
</p>
</div>
<div class="anonymousHomeLinks" style="height: 71px;">
<h3>
<a id="contentItem3">
Course Catalog
</a>
</h3>
<p>
<a id="contentItem3">
View course information, including course description.
</a>
</p>
</div>
</div>
<div id="row2">
<div class="anonymousHomeLinks" style="height: 71px;">
<h3>
<a id="contentItem4">
Proxy Login
</a>
</h3>
<p>
<a id="contentItem4">
Login here to view information available to you as a proxy.
</a>
</p>
</div>
</div><br style="clear:both" />
<br />
<div class="disclaimer">
<h5>
<br />
© 2014 Ellucian Company L.P. and its affiliates.<br />
This software contains confidential and proprietary
information of Ellucian or its subsidiaries.<br />
Use of this software is limited to Ellucian licensees,
and is subject to the terms and conditions of one or more
written license agreements between Ellucian and such licensees.
</h5>
</div>
</div>
<div id="pagefooter" class="footertext">
<div class="reltext">
Release: 8.6.1
</div>
</div>
<div id="globalFooter" class="footertext"></div>
</div>
</div>
</body>
</html>
html,
body {
margin: 0;
}
p {
margin: 0 0 15px;
line-height: 131%;
}
a:hover {
text-decoration: underline;
}
.purple {
color: #592041;
}
body #header {
border-bottom: 5px #d69d00 solid;
background: #592041;
}
body #header #globalNav > div > ul li a.helpText {
background: url("albion/glyphicons/question_mark_white.png") no-repeat 5px center;
background-size: 15px;
border-left: 1px #d69d00 solid;
}
body #content #bodyContainer #pagebody #footerLinks ul li a:link,
body #content #bodyContainer #pagebody #footerLinks ul li a:active {
color: #592041;
padding: 0 10px;
}
body #content #search {
z-index: 1000;
top: 62px;
right: 81px;
background: none;
}"Less is a CSS pre-processor, meaning that it extends the CSS language, adding features that allow variables, mixins, functions and many other techniques that allow you to make CSS that is more maintainable, themable and extendable." -- LessCSS.org Getting Started
@nice-blue: #5B83AD; #header { color: @nice-blue; } .bordered {
border-top: dotted 1px black; border-bottom: solid 2px black; } #menu a { color: #111; .bordered; }
#header {
color: #5B83AD;
}
.bordered {
border-top: dotted 1px black;
border-bottom: solid 2px black;
}
#menu a {
color: #111;
border-top: dotted 1px black;
border-bottom: solid 2px black;
}#header {
color: black;
.navigation {
font-size: 12px;
}
> .logo {
width: 300px;
}
}
#header {
color: black;
}
#header .navigation {
font-size: 12px;
}
#header > .logo {
width: 300px;
}h1, .h1 {
color: #592041;
&.item-page-title {
color: #d69d00;
}
}
a {
color: #d69d00;
&:hover {text-decoration: underline;}
}
h1,
.h1 {
color: #592041;
}
h1.item-page-title,
.h1.item-page-title {
color: #d69d00;
}
a {
color: #d69d00;
}
a:hover {
text-decoration: underline;
}