This repository has been archived on 2021-01-16. You can view files and clone it, but cannot push or open issues/pull-requests.
satyr/site/styles.css

72 lines
1.0 KiB
CSS
Raw Normal View History

2019-09-28 21:46:58 -05:00
body {
color: rgb(0, 0, 0);
background-color: rgb(255, 255, 255);
2019-09-28 21:46:58 -05:00
}
a {
color: #074115;
2019-09-28 21:46:58 -05:00
text-decoration: none;
}
#wrapper {
display: flex;
justify-content: center;
flex-wrap: nowrap;
flex-direction: column;
margin: 0 0 0 0;
2019-09-28 21:46:58 -05:00
min-height: 100vh;
}
#header {
text-align: center;
box-shadow: 0px 0px 7px rgb(14, 15, 17);
padding: 0px 10px 0px 10px;
margin-top: -10px;
margin-left: -8px;
margin-right: -8px;
margin-bottom: 0px;
2019-09-28 21:46:58 -05:00
}
#content {
text-align: center;
flex: 1;
margin-left: 5%;
margin-right: 5%;
height: 100%;
}
#jscontainer {
display: flex;
justify-content: center;
flex-wrap: nowrap;
flex-direction: row;
width: 100%;
min-height: 500px;
height: 70%;
margin: 0px;
}
#jschild {
display: inline;
margin: 0;
}
#footer {
text-align: center;
color: #000000;
2019-09-28 21:46:58 -05:00
}
#footer > div {
display: flex;
justify-content: center;
flex-wrap: nowrap;
flex-direction: row;
}
#footer > div > div {
flex: 0;
display: inline-block;
margin-top: 25px;
margin-left: 20px;
margin-right: 20px;
align-self: flex-end;
}