multiColumnTemplate.css
multiColumnTemplate.css
@charset "UTF-8";

html, body {
    height: 100%; /* Make html and body take up the full viewport height */
    margin: 0; /* Reset default body margin */
	overflow: auto;
	font-family: Calibri !important;
}

body {
	margin-top: 10px !important;
	font-family: Calibri;
	background-color: #148fa1;
}
h3 {
	font-weight: bold;
	font-size:larger;
}
.container {
	background-color: #148fa1;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	border-bottom-width: 0px;
	padding-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
}

/* Links */
.esu-link a{
	text-decoration: none;
}

.esu-link a:hover {
	text-decoration: underline;
}

/* Header for Mockups */
.esu-header {
	background-color: #112761;
	padding: 10px;
	border: none;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
	font-family: Calibri;

}

.esu-header a{
	color: white;
	padding: 10px;
	text-decoration: none;
}

.esu-header a:hover{
	background-color: #148fa1;
}

/* Footer */
.esu-footer {
	line-height: 50%;
	font-family: Calibri;
	text-align: center;
    opacity: 1;
	background-color: #112761;
    /*background-color: rgb(17 39 97 / var(--tw-bg-opacity));
    background-image: linear-gradient(to bottom left, #148fa1, #112761);*/
	padding: 5px;
	color: white;
	flex-shrink: 0;

}

main {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: auto;
	padding: 20px;
	width: 100%;
	padding-bottom: 100px;
}

/* NebSIS Logo */
.logo-cont {
	margin-left: auto;
	margin-right: auto;
	justify-content: center;
	display: flex;
	align-items: center;
}

.logo {
	width: 25%;
	padding-bottom: 20px;
}

.logo-text {
	font-family: Calibri;
	color: #87143d;
	font-weight: 900;
	font-size: 80px;
	margin-left: 5%;
}

/* District Logo */
.district-logo {
	display: block;
	margin: auto;
	width: 15%;
}

/* Announcement */
.a-cont {
	color: #112761;
	text-align: center !important;
	font-family: Calibri;
	width: 80%;
	margin: auto;
}

.a-cont p {
	color: #717171;
	margin-top: -15px;
	font-family: Calibri;
}

/* Privacy Policy Link */
.privacy {
	font-family: Calibri;
	display: block;
	text-align: center !important;
	color: #148fa1;
	cursor: pointer;
	text-decoration: none !important;
	margin-bottom: 40px;
}

.privacy:hover {
	text-decoration: underline !important;
}

/* Medium Gray Focus Box */
.focus-box {
	margin: auto;
	background-color: #f0f0f0;
	padding: 10px;
	border-radius: .375rem;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2) !important;
	width: 50%;
	margin-bottom: 40px;
	min-width: 250px;
}

/* Light Gray Focus Box */
.login-container {
	background-color: #fff;
	padding: 20px;
	width: 70%;
	min-width: 200px;
	display: block;
	margin: auto;
	border-radius: .375rem;
	margin-bottom: 40px;
	margin-top: 40px;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2) !important;

}

.mobile.login-container {
	background-color: #fff;
	padding: 20px;
	width: 50%;
	min-width: 200px;
	display: block;
	margin: auto;
	border-radius: .375rem;
	margin-bottom: 40px;
	margin-top: 40px;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2) !important;
}

/* Input Fields for Username and Password */
.input-field {
	display: block;
	margin: auto;
	/*margin-bottom: 20px;*/
	width: 100%;
	padding: 5px;
	border-radius: .375rem;
	background-color: #eee;
	border: none;
	color: #333;
	font-size: 1.1em;
	box-sizing: border-box;
	transition: background-color 0.2s ease;
}

.input-field:hover {
	background-color: #ddd;
}

.input-field:focus {
	outline: none;
	border-color: #148fa1;
    box-shadow: 0 0 5px rgba(0, 128, 128, 0.5);
}

/* Login Button */
.login-button {
	display: block;
	margin: auto;
	width: 100%;
	border: none;
    background-color: #148fa1;
    font-weight: bold;
    text-decoration: none !important;
    color: #E5E7EB;
    padding: 6px 15px; /* px-4 py-2 (converted to rem) */
    border-radius: 0.375rem;
	box-sizing: border-box;
	font-size: 1.25em;
    transition: background-color 0.3s ease;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.login-text {
	font-family: Calibri;
	color: #717171;
	text-align: center;
	
}

.login-button:hover {
    background-color: rgb(14 116 144); /*bg-cyan-700*/
	color: white;
}

/* ESU #3 Disclamimer Below Focus Box */
.disclaimer {
	font-family: Calibri;
	color: #E5E7EB;
	width: 80%;
	min-width: 250px;
	font-size: 12px;
	text-align: center;

}

/* District Dropdown List */
.dropdown-container {
	font-family: Calibri;
	position: relative;
	width: 99%;
	/*margin: 0 auto 20px auto;*/
}

.dropdown-button {
	background-color: #eee;
	border: none;
	border-radius: .375rem;
	padding: 5px;
	font-size: 1.1em;
	color: #333 !important;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background-color 0.2s ease;
	box-sizing: border-box;
	width: 99%;
}

.mobile.dropdown-button {
	background-color: #eee;
	border: none;
	border-radius: .375rem;
	padding: 20px;
	font-size: 1.1em;
	color: #333 !important;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background-color 0.2s ease;
	box-sizing: border-box;
}

.dropdown-button:hover {
  background-color: #ddd; /* Match input field hover */
}

.dropdown-button::after {
  content: '\25BC'; /* Down arrow character */
  font-size: 0.8em;
}

.dropdown-list {
  position: absolute;
  top: 100%; /* Position below the button */
  left: 0;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ccc; /* Add a border */
  border-top: none; /* Remove top border to connect visually */
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 10; /* Ensure it's above other elements */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow */
  max-height: 200px; /* Limit the height for scrolling */
  overflow-y: auto;
  display: none; /* Initially hidden */
  box-sizing: border-box; /* Ensure padding doesn't affect width */
}

.dropdown-list.open {
  display: block;
}

.dropdown-list li {
  padding: 15px 20px;
  font-size: 1.1em;
  color: #333;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.dropdown-list li:hover {
  background-color: #f0f0f0;
}

/* Forgot Password Link */
.forgot-password a{
	font-family: Calibri;
	text-decoration: none;
}

.forgot-password a:hover {
	text-decoration: underline;
}

/* Predefined Styles */
.row {
	width: 100%;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	display: inline-block
}
.row.blockDisplay {
	display: block;
}
.column_half {
	width: 50%;
	float: left;
	margin-top: 0px;
}
.columns {
	width: 25%;
	float: left;
	font-family: "Source Sans Pro";
	color: #A5A5A5;
	line-height: 24px;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: justify;
	margin-top: 15px;
	margin-bottom: 15px;
	padding-left: 0px;
	padding-right: 0px;
	margin-left: 0px;
	margin-right: 0px;
}
.row .columns p {
	padding-left: 10%;
	padding-right: 10%;
}
.container .columns h4 {
	text-align: center;
	color: #01B2D1;
}
.primary_header {
	width: 100%;
	background-color: #52bad5;
	padding-top: 10px;
	padding-bottom: 10px;
	clear: left;
	border-bottom: 2px solid #2C9AB7;
}
.secondary_header {
	width: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: #B3B3B3;
	clear: left;
}
.container .secondary_header ul {
	margin-top: 0%;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
	width: 100%;
}
.secondary_header ul li {
	font-family: Calibri;
	list-style: none;
	float: left;
	margin-right: auto;
	margin-top: 0px;
	font-weight: normal;
	color: #FFFFFF;
	letter-spacing: 1px;
	margin-left: auto;
	text-align: center;
	width: 16%;
	transition: all 0.3s linear;
}
.secondary_header ul li:hover {
	background-color: red;
	cursor: pointer;
}
.left_article {
	background-color: #FFFFFF;
	width: 60%;
	float: left;
	font-family: "Source Sans Pro";
	color: #343434;
	padding-bottom: 15px;
}
.noDisplay {
	display: none;
}
.container .left_article h3 {
	padding-left: 5%;
	padding-right: 5%;
	margin-top: 5%;
	color: #717070;
	font-weight: bold;
	text-transform: uppercase;
}
.container .left_article p {
	padding-left: 5%;
	padding-right: 5%;
	text-align: justify;
	line-height: 24px;
	margin-top: 30px;
	margin-bottom: 15px;
	color: #B3B3B3;
}
.right_article {
	width: 40%;
	float: left;
	background-color: #F6F6F6;
}
.container .right_article ul {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.right_article ul li {
	font-family: "Source Sans Pro";
	list-style: none;
	text-align: center;
	background-color: #B3B3B3;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	margin-bottom: 10px;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #FFFFFF;
	font-weight: bold;
	border-radius: 0px;
	transition: all 0.3s linear;
	border-left: 5px solid #717070;
}
.right_article ul li:hover {
	background-color: #717070;
	cursor: pointer;
}
.footer {
	background-color: #717070;
}
.title {
	font-weight: bold;
	font-style: normal;
	font-family: "Source Sans Pro";
	text-align: center;
	color: #FFFFFF;
	letter-spacing: 2px;
}
.placeholder {
	/* [disabled]max-width: 400px;
*/
	/* [disabled]max-height: 200px;
*/
	width: 100%;
	padding-top: 30px;
	/* [disabled]padding-left: 19px;
*/
	padding-bottom: 30px;
	height: 100%;
}
.left_half {
	background-color: #52BAD5;
}
.container .column_half.left_half h2 {
	color: #FFFFFF;
	font-family: "Source Sans Pro";
	text-align: center;
}
.right_half {
	background-color: #01B2D1;
	color: #FFFFFF;
	font-family: "Source Sans Pro";
	text-align: center;
	font-weight: bold;
}
.column_title {
	padding-top: 25px;
	padding-bottom: 25px;
}
.copyright {
	text-align: center;
	background-color: #717070;
	color: #FFFFFF;
	text-transform: uppercase;
	font-weight: lighter;
	letter-spacing: 2px;
	border-top-width: 2px;
	font-family: "Source Sans Pro";
}
body {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

/* Mobile Friendly Styles */
@media (max-width: 320px) {
	
/* Footer */	
.esu-footer {
	font-size: .9em;
	line-height: normal;
}
	
/* Header */
.esu-header {
	display: block;
	text-align: center;
	padding-bottom: 20px;
}
	
.esu-header a {
	display: block;
	width: 100%;
	padding: 10px;
	text-align: center;
}
	
/* Logo Resize */
.logo {
	height: 2em;
	padding: 0px;
}
	
.logo-text{
	font-size: 2em;
}

/* Predefined Styles */
.secondary_header ul li {
	float: none;
	margin-top: 28px;
	margin-left: 0px;
	width: 100%;
}
.container .secondary_header ul {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	height: auto;
	width: 100%;
	text-align: center;
}
.secondary_header {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 1px;
	padding-bottom: 40px;
}
.left_article {
	width: 100%;
	height: auto;
}
.right_article {
	width: 100%;
	height: auto;
}
.placeholder {
	width: 100%;
	margin-top: 22PX;
	margin-right: 0px;
	margin-bottom: 22PX;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	max-width: 400px;
	max-height: 200px;
	height: auto;
}
.columns {
	width: 100%;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;

	padding-top: 0PX;
	padding-right: 0PX;
	padding-bottom: 0PX;
	padding-left: 0PX;
}
.columns p {
	padding-left: 10px;
	padding-right: 10px;
}
.column_half.left_half {
	width: 100%;
}
.column_half.right_half {
	width: 100%;
}
.copyright {
	padding-top: 25px;
	padding-bottom: 0px;
	margin-bottom: 0px;
}
.container .left_article h3 {
	margin-top: 30px;
}
.social .social_icon img {
	width: 80%;
}
.container .secondary_header {
}
}


@media (min-width: 321px) and (max-width: 768px) {
/* Logo Resize */
.logo {
	padding-bottom: 0px;
}
.logo-text {
	font-size: 40px;
}
	
/* Predefined Styles */
.secondary_header ul li {
	float: none;
	margin-top: 28px;
	margin-left: 0px;
	width: 100%;
}
.container .secondary_header ul {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	height: auto;
	width: 100%;
	text-align: center;
}
.secondary_header {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 1px;
	padding-bottom: 40px;
}
.left_article {
	width: 100%;
	height: auto;
}
.right_article {
	width: 100%;
	height: auto;
	padding-bottom: 25px;
}
.placeholder {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	width: 100%;
	max-width: 100%;
	height: auto;
	max-height: 100%;
}
.columns {
	width: 100%;
	margin-top: 6px;
	margin-right: 0px;
	margin-bottom: 6px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.columns p {
	padding-left: 14px;
	padding-right: 14px;
}
.column_half.left_half {
	width: 100%;
}
.column_half.right_half {
	width: 100%;
}
}

@media (min-width: 769px) and (max-width: 1000px) {
/*Logo Resize */
.logo {
	padding-bottom: 0px;
}
	
.logo-text {
	font-size: 60px;
}

/*Predefined Styles */
.secondary_header {
	overflow: auto;
	padding-top: 30px;
	padding-bottom: 30px;
}
.secondary_header ul li {
	margin-top: 10px;
	margin-right: 7%;
	margin-bottom: 10px;
	margin-left: 7%;
}
.left_article {
	height: auto;
}
.right_article {
	height: auto;
	padding-bottom: 27px;
}
.placeholder {
	width: 100%;
	margin-left: 0px;
	margin-right: 0px;
	padding-left: 0px;
	padding-right: 0px;
}
.columns {
	width: 50%;
	float: left;
	padding-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
}
.container .columns p {
	padding-left: 25px;
	padding-right: 25px;
}
}

@media (min-width: 1001px) {
	
}

/* Predefined Styles */
.thumbnail {
	width: 100px;
	border-radius: 200px;
	height: 100px;
	margin-left: auto;
}
.thumbnail_align {
	text-align: center;
}
.social {
	text-align: center;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 100%;
	background-color: #414141;
	clear: both;
	overflow: auto;
}
.social_icon {
	width: 25%;
	text-align: center;
	float: left;
	transition: all 0.3s linear;
	line-height: 0px;
	padding-top: 7px;
}
.container .social .social_icon:hover {
	cursor: pointer;
	opacity: 0.5;
}
#menu {
}