58 lines
915 B
CSS
58 lines
915 B
CSS
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
padding: px;
|
|
background: #868686;
|
|
margin: 0;
|
|
overflow-x: hidden;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
.welcome {
|
|
font-size: large;
|
|
}
|
|
|
|
.borderimg {
|
|
border-image: url("/assets/imgs/border.png") 28 / 28px / 0 round;
|
|
border-width: 28px;
|
|
border-style: solid;
|
|
}
|
|
|
|
#page-container {
|
|
position: relative;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
#content-wrap {
|
|
padding-bottom: 2.5rem;
|
|
}
|
|
|
|
#footer {
|
|
padding: 20px;
|
|
text-align: center;
|
|
background: rgb(221, 221, 221);
|
|
margin-top: 20px;
|
|
position: absolute;
|
|
bottom: 0;
|
|
width: 100%;
|
|
font-size: 11px;
|
|
}
|
|
|
|
@media screen and (max-width: 800px) {
|
|
.leftcolumn,
|
|
.rightcolumn {
|
|
width: 100%;
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "opensans";
|
|
src: url("/assets/styles/Font/opensans.woff2") format("woff2"),
|
|
url("/assets/styles/Font/opensans.woff") format("woff");
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|