126 lines
3.5 KiB
SCSS
126 lines
3.5 KiB
SCSS
body {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
min-height: 100%;
|
|
div.width-max-content {
|
|
width: max-content;
|
|
}
|
|
div#game-container {
|
|
min-height: 100%;
|
|
nav.menu-bar {
|
|
width: 100%;
|
|
background: grey;
|
|
height: 3rem;
|
|
display: flex;
|
|
justify-content: end;
|
|
align-items: center;
|
|
a {
|
|
font-size: 1.7rem;
|
|
display: inline-block;
|
|
background: chocolate;
|
|
border-radius: 0.3rem;
|
|
color: ghostwhite;
|
|
text-decoration: none;
|
|
margin-right: 0.7rem;
|
|
margin-left: 0.7rem;
|
|
height: 100%;
|
|
&:last-child {
|
|
margin-right: 0px;
|
|
}
|
|
&:hover {
|
|
background: ghostwhite;
|
|
color: black;
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
div.pj-selection-menu {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 100%;
|
|
background: ghostwhite;
|
|
flex-direction: column;
|
|
div.pj-selection-menu-container {
|
|
background: ghostwhite;
|
|
color: black;
|
|
padding: 30px;
|
|
display: flex;
|
|
align-items: center;
|
|
min-width: 80%;
|
|
min-height: 100%;
|
|
flex-direction: column;
|
|
overflow: scroll;
|
|
div.pj-list {
|
|
background: ghostwhite;
|
|
width: 90%;
|
|
padding: 10px;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
flex-direction: row;
|
|
align-content: center;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-grow: 1px;
|
|
gap: 8px;
|
|
|
|
a {
|
|
width: 10em;
|
|
height: 10em;
|
|
background: white;
|
|
border: solid 1px black;
|
|
box-shadow: 3px 1px 3px 3px #333;
|
|
color: blue;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
&:hover {
|
|
color: yellow;
|
|
background: gray;
|
|
}
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
div.login-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100%;
|
|
background: url('/img/wallpaper.jpg') no-repeat center black;
|
|
flex-direction: column;
|
|
div.login-contained {
|
|
background: rgba(0, 30, 139, 1);
|
|
color: azure;
|
|
padding: 30px;
|
|
border: solid 1px black;
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
input {
|
|
display: block;
|
|
}
|
|
button {
|
|
display: block;
|
|
}
|
|
div.login-form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: max-content;
|
|
div.align-self-end {
|
|
align-self: end;
|
|
}
|
|
}
|
|
a {
|
|
color: aquamarine;
|
|
&:hover {
|
|
color: yellow;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|