Compare commits
3 Commits
main
...
dereks-coo
Author | SHA1 | Date |
---|---|---|
|
99a57a4614 | 1 year ago |
|
846f77f15d | 1 year ago |
|
c9773f3f29 | 1 year ago |
16 changed files with 203 additions and 124 deletions
@ -0,0 +1,132 @@ |
||||
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400&display=swap'); |
||||
|
||||
html { |
||||
height: 100%; |
||||
} |
||||
|
||||
body { |
||||
margin: 0; |
||||
padding: 0; |
||||
border: hidden; |
||||
|
||||
background-color: black; |
||||
font-family: 'Roboto Mono', monospace; |
||||
color: white; |
||||
height: 100%; |
||||
display: flex; |
||||
flex-direction: column; |
||||
justify-items: center; |
||||
} |
||||
|
||||
a { |
||||
color: white; |
||||
} |
||||
|
||||
div.hBar { |
||||
background-color: lightgreen; |
||||
max-width: 1280px; |
||||
} |
||||
|
||||
div.vBar { |
||||
display: block; |
||||
position: relative; |
||||
border-style: solid; |
||||
border-width: 1px; |
||||
border-color: aqua; |
||||
width: 40px; |
||||
background-color: lightsalmon; |
||||
} |
||||
|
||||
div#topBar { |
||||
top: 0px; |
||||
height: 10%; |
||||
} |
||||
|
||||
div#leftBar { |
||||
left: 0; |
||||
display: flex; |
||||
flex-direction: column; |
||||
border-right-width: 0; |
||||
} |
||||
|
||||
div#rightBar { |
||||
right: 0; |
||||
display: flex; |
||||
flex-direction: column; |
||||
border-left-width: 0; |
||||
} |
||||
|
||||
div#botBar { |
||||
display: flex; |
||||
flex-flow: row-reverse; |
||||
position: relative; |
||||
border-style: solid; |
||||
border-color: aqua; |
||||
border-width: 0px; |
||||
height: 10%; |
||||
width: 100%; |
||||
vertical-align: middle; |
||||
background-color: lightslategrey; |
||||
} |
||||
|
||||
div#botBar a { |
||||
border-left-style: solid; |
||||
border-color: aqua; |
||||
border-width: 1px; |
||||
text-decoration: none; |
||||
padding-left: 8px; |
||||
padding-right: 8px;70 |
||||
padding-top: 4px; |
||||
padding-bottom: 4px; |
||||
} |
||||
|
||||
div#botBar :hover { |
||||
background-color: aqua; |
||||
color: black; |
||||
} |
||||
|
||||
p { |
||||
color: white; |
||||
} |
||||
|
||||
p > b { |
||||
color: aqua; |
||||
} |
||||
|
||||
.currentPage { |
||||
background-color: aqua; |
||||
color: black; |
||||
} |
||||
|
||||
div#centerRow { |
||||
position: relative; |
||||
width: 100%; |
||||
padding-top: 56.25%; /* 16:9 Aspect Ratio */ |
||||
display: flex; |
||||
justify-content: center; |
||||
flex-flow: row; |
||||
height: 80%; |
||||
max-height: 600px; |
||||
} |
||||
|
||||
gamewindow { |
||||
position: relative; |
||||
display: inline; |
||||
size: initial; |
||||
width: 90%; |
||||
padding-top: 56.25% |
||||
border-style: solid; |
||||
border-width: 1px; |
||||
border-color: aqua; |
||||
z-index: 1; |
||||
background-color: lightblue; |
||||
} |
||||
|
||||
player { |
||||
height: 32px; |
||||
width: 32px; |
||||
position: absolute; |
||||
left: 0px; |
||||
bottom: 0px; |
||||
background-color: blueviolet; |
||||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in new issue