49 lines
788 B
CSS
49 lines
788 B
CSS
:root {
|
|
--main-color: #3f51b5;
|
|
--main-dark-color: #002984;
|
|
--main-light-color: #757de8;
|
|
}
|
|
|
|
body {
|
|
/*min-height: 2000px;*/
|
|
padding-top: 70px;
|
|
padding-bottom: 40px;
|
|
}
|
|
|
|
.navbar, .fixed-top {
|
|
background-color: var(--main-color) !important;
|
|
box-shadow: 0 0 8px rgba(0,0,0,0.12),0 8px 8px rgba(0,0,0,0.24);
|
|
border-bottom: var(--main-dark-color) 1px solid;
|
|
}
|
|
|
|
a:not(.nav-link):not(.navbar-brand) {
|
|
color: var(--main-color);
|
|
text-decoration: underline;
|
|
}
|
|
|
|
a:hover {
|
|
color: var(--main-light-color);
|
|
}
|
|
|
|
li.col-md-6 {
|
|
padding-left: 0px;
|
|
}
|
|
|
|
.cover {
|
|
text-align: center;
|
|
}
|
|
|
|
.cover-page {
|
|
background: url(../img/EWU_Campus_Pic.jpg) no-repeat center center fixed;
|
|
background-size: cover;
|
|
height: 100%;
|
|
}
|
|
|
|
.required {
|
|
color: red;
|
|
}
|
|
|
|
.invalid-captcha {
|
|
box-shadow: 0 0 1.5px 1px red;
|
|
}
|