You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
187 lines
3.4 KiB
CSS
187 lines
3.4 KiB
CSS
4 years ago
|
* {
|
||
|
padding:0;
|
||
|
margin:0;
|
||
|
}
|
||
|
|
||
|
a:link {
|
||
|
color: red;
|
||
|
}
|
||
|
a:visited {
|
||
|
color: hotpink;
|
||
|
}
|
||
|
a:hover {
|
||
|
color: green;
|
||
|
}
|
||
|
a:active {
|
||
|
color: blue;
|
||
|
}
|
||
|
mark {
|
||
|
background-color: #900C3F;
|
||
|
color: hotpink;
|
||
|
}
|
||
|
ul { list-style-position: inside; }
|
||
|
|
||
|
.textbox {
|
||
|
margin: 20px;
|
||
|
}
|
||
|
|
||
|
.grid {
|
||
|
height: 100vh;
|
||
|
width: 100vw;
|
||
|
display: grid;
|
||
|
grid-template-columns: auto 800px auto;
|
||
|
grid-template-rows: 25px 90px 1fr 100px;
|
||
|
grid-column-gap: 0px;
|
||
|
grid-row-gap: 0px;
|
||
|
}
|
||
|
|
||
|
.whitespace {
|
||
|
grid-area: 1 / 1 / 2 / 4;
|
||
|
display: flex;
|
||
|
flex-direction:column;
|
||
|
justify-content:center;
|
||
|
align-items: center;
|
||
|
background-color: #3B429F;
|
||
|
}
|
||
|
|
||
|
.blessfrey-logo { grid-area: 1 / 2 / 2 / 3; }
|
||
|
|
||
|
/* navigation pane */
|
||
|
|
||
|
.nav-row {
|
||
|
grid-area: 2 / 1 / 3 / 4;
|
||
|
background-color: #AA7DCE;
|
||
|
}
|
||
|
|
||
|
.nav-grid {
|
||
|
grid-area: 2 / 2 / 3 / 3;
|
||
|
display: flex;
|
||
|
flex-direction:column;
|
||
|
justify-content:flex-end;
|
||
|
display: grid;
|
||
|
grid-template-columns: auto repeat(4, 70px) auto;
|
||
|
grid-template-rows: 90px;
|
||
|
grid-column-gap: 8px;
|
||
|
grid-row-gap: 0px;
|
||
|
align-items: end;
|
||
|
justify-items: center;
|
||
|
}
|
||
|
|
||
|
.nav-bar {
|
||
|
grid-area: 1 / 1 / 2 / 7;
|
||
|
display: flex;
|
||
|
flex-direction:column;
|
||
|
justify-content:flex-end;
|
||
|
align-items: bottom;
|
||
|
background-image: url(../img/ele/navbar.png);
|
||
|
height: 86px;
|
||
|
width: 800px;
|
||
|
}
|
||
|
.nav-index {
|
||
|
grid-area: 1 / 2 / 2 / 3;
|
||
|
display: flex;
|
||
|
flex-direction:column;
|
||
|
justify-content:flex-end;
|
||
|
align-items: bottom;
|
||
|
padding-bottom: 3px;
|
||
|
}
|
||
|
.nav-game {
|
||
|
grid-area: 1 / 3 / 2 / 4;
|
||
|
display: flex;
|
||
|
flex-direction:column;
|
||
|
justify-content:flex-end;
|
||
|
align-items: bottom;
|
||
|
padding-bottom: 3px;
|
||
|
}
|
||
|
.nav-diary {
|
||
|
grid-area: 1 / 4 / 2 / 5;
|
||
|
display: flex;
|
||
|
flex-direction:column;
|
||
|
justify-content:flex-end;
|
||
|
align-items: bottom;
|
||
|
padding-bottom: 3px;
|
||
|
}
|
||
|
.nav-presskit {
|
||
|
grid-area: 1 / 5 / 2 / 6;
|
||
|
display: flex;
|
||
|
flex-direction:column;
|
||
|
justify-content:flex-end;
|
||
|
align-items: bottom;
|
||
|
padding-bottom: 3px;
|
||
|
}
|
||
|
|
||
|
/* nav buttons */
|
||
|
|
||
|
.button {
|
||
|
background-color: #000000;
|
||
|
color: #ce50ce;
|
||
|
font-size: 16px;
|
||
|
border: 2px solid #f7dd8e;
|
||
|
height: 48px;
|
||
|
width: 70px;
|
||
|
text-decoration: none;
|
||
|
display: flex;
|
||
|
flex-direction:column;
|
||
|
justify-content:center;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.button:hover {
|
||
|
background-color: #723777;
|
||
|
color: #ce50ce;
|
||
|
font-size: 16px;
|
||
|
border: 2px solid #f7dd8e;
|
||
|
height: 48px;
|
||
|
width: 70px;
|
||
|
text-decoration: none;
|
||
|
display: flex;
|
||
|
flex-direction:column;
|
||
|
justify-content:center;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.body-row {
|
||
|
grid-area: 3 / 1 / 4 / 4;
|
||
|
background-color: #d08d11;
|
||
|
}
|
||
|
|
||
|
.pages {
|
||
|
grid-area: 3 / 2 / 4 / 3;
|
||
|
display: grid;
|
||
|
grid-template-columns: 1fr;
|
||
|
grid-template-rows: repeat(4, auto);
|
||
|
grid-column-gap: 0px;
|
||
|
grid-row-gap: 0px;
|
||
|
background-color: #F0565C;
|
||
|
word-wrap: break-word;
|
||
|
}
|
||
|
|
||
|
.desc {
|
||
|
grid-area: 1 / 1 / 2 / 2;
|
||
|
background-color: #F45693;
|
||
|
}
|
||
|
.story {
|
||
|
grid-area: 2 / 1 / 3 / 2;
|
||
|
background-color: #D67476;
|
||
|
}
|
||
|
.system {
|
||
|
grid-area: 3 / 1 / 4 / 2;
|
||
|
background-color: #F0787E;
|
||
|
}
|
||
|
.graphics {
|
||
|
grid-area: 4 / 1 / 5 / 2;
|
||
|
background-color: #F75155;
|
||
|
}
|
||
|
|
||
|
.footer-row {
|
||
|
grid-area: 4 / 1 / 5 / 4;
|
||
|
background-color: #EC424A;
|
||
|
text-align: right;
|
||
|
padding-top: 5px;
|
||
|
padding-right: 25px;
|
||
|
}
|
||
|
|
||
|
.footer {
|
||
|
background-color: #060d1a;
|
||
|
}
|