Files
nashua.codes/main.css
Tommy Parnell 50e0c54f44 ok stop
2018-12-01 19:24:17 -05:00

163 lines
3.0 KiB
CSS

.main > section:nth-child(odd) {
background-color: #373837;
color: white;
}
body {
margin: 0%;
font-family: "Helvetica";
}
.sub {
-webkit-appearance: button;
-moz-appearance: button;
appearance: button;
margin-bottom: 0.4em;
padding: 0.35em;
background-color: white;
color: black;
text-decoration: none;
border-radius: 0.2em;
-webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.96);
box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.96);
text-align: center;
}
.sub:hover {
background-color: #373837;
color: white;
}
.headerCard {
height: 100vh;
width: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
background-image: url("/img/callout.jpg");
background-repeat: no-repeat;
background-size: cover;
}
@media only screen and (max-width: 768px) {
.headerCard {
background-image: url("/img/callout.jpg");
background-repeat: no-repeat;
background-size: auto;
background-position-x: 22%;
background-position-y: bottom;
}
}
header {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
header h1 {
font-size: 3rem;
color: white;
font-weight: normal;
margin: 0rem;
text-shadow: 0px 1px 3px black;
border: 10px;
}
header p {
font-size: 1rem;
color: white;
margin-bottom: 1rem;
text-shadow: 0px 1px 3px black;
border: 10px;
}
header .arrowDown {
color: white;
text-shadow: 0px 1px 3px black;
border: 10px;
margin-top: .4em;
cursor: pointer;
}
header .arrowDown:hover {
color: black;
}
.main {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
text-align: center;
}
.main > * {
min-height: 33vh;
width: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.main > * p {
padding-left: 0.8rem;
padding-right: 0.8rem;
}
.intro h2 {
margin-top: 0.5rem;
margin-bottom: 0;
}
.eventCard h2 {
margin: 0;
}
.eventCard ul {
list-style: none;
padding: 0;
}
.eventCard ul li {
margin-bottom: 0.4rem;
}
.eventCard ul li a {
text-decoration: underline;
color: black;
}
.teamCard .tommyAvatar {
border-radius: 50%;
}
/*# sourceMappingURL=main.css.map */