Personal-Site/css/main.css
2017-11-28 17:41:02 -08:00

49 lines
791 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 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
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;
}