jurassic-park-interface/app.css

299 lines
5.3 KiB
CSS
Raw Normal View History

2020-05-26 20:19:44 +00:00
* {
box-sizing: border-box;
}
body {
background: black;
margin: 0 100px;
}
2020-05-26 20:19:44 +00:00
.outer-container__one {
border-width: 1px;
border-style: solid;
border-radius: 1px;
border-left-color: #5c575a;
border-top-color: #5c575a;
border-bottom-color: #c0c1c2;
border-right-color: #c0c1c2;
background-color: #797979;
}
.outer-container__two {
border-width: 1px;
border-style: solid;
border-radius: 1px;
border-bottom-color: #4b4647;
border-right-color: #4b4647;
border-left-color: #c0c1c2;
border-top-color: #c0c1c2;
padding: 5px;
}
.inner-container__one {
border-width: 1px;
border-style: solid;
border-radius: 1px;
border-left-color: #5c575a;
border-top-color: #5c575a;
border-bottom-color: #c0c1c2;
border-right-color: #c0c1c2;
}
.inner-container__two {
border-width: 1px;
border-style: solid;
border-radius: 1px;
border-bottom-color: #4b4647;
border-right-color: #4b4647;
border-left-color: #c0c1c2;
border-top-color: #c0c1c2;
padding: 5px;
}
.screen-container__wrapper {
display: flex;
}
.screen-container__outer {
width: fit-content;
background: white;
padding-top: 2.5px;
padding-bottom: 2px;
padding-left: 1px;
padding-right: 1px;
border-radius: 1px;
border-left-color: black;
border-style: solid;
border-width: 0.5px;
border-bottom: none;
border-right: none;
margin: 0px;
}
.triangle-wrapper {
position: relative;
}
.outer-triangle__right {
width: 0;
height: 0;
border-top: 13px solid transparent;
border-left: 13px solid black;
border-bottom: 13px solid transparent;
position: absolute;
}
.inner-triangle__right {
width: 0;
height: 0;
border-top: 12px solid transparent;
border-left: 12px solid white;
border-bottom: 12px solid transparent;
position: absolute;
top: 1px;
left: 0;
}
.buffer {
margin: 6px;
}
.outer-triangle__left {
width: 0;
height: 0;
border-top: 18px solid transparent;
border-right: 18px solid black;
border-bottom: 18px solid transparent;
position: absolute;
}
.inner-triangle__left {
width: 0;
height: 0;
border-top: 17px solid transparent;
border-right: 17px solid white;
border-bottom: 17px solid transparent;
position: absolute;
left: 1px;
}
.island-container__wrapper {
display: flex;
align-items: center;
}
.screen-container__text {
color: #ffffff;
width: fit-content;
background-color: black;
padding: 1px 8px 1px 8px;
font-style: italic;
margin: 0px;
border-radius: 1px;
}
#island-triangle {
margin-right: 18px;
display: flex;
align-items: center;
}
.console-display__wrapper {
display: flex;
align-items: center;
}
.island-container__outer {
width: fit-content;
border-radius: 1px;
border-top: 1px solid black;
border-left: none;
2020-05-28 13:49:52 +00:00
border-bottom: 0.5px solid #4b4b4b;
border-right: 0.5px solid #4b4b4b;
2020-05-26 20:19:44 +00:00
margin: 0px;
}
.island-container__text {
color: black;
width: fit-content;
background-color: white;
padding: 8px 48px 8px 48px;
2020-05-26 20:19:44 +00:00
font-style: italic;
margin: 0px;
}
#console-display {
2020-05-29 18:22:51 +00:00
grid-area: 4 / 1 / 5 / 2;
}
2020-05-29 18:22:51 +00:00
#console-display > .outer-container__two {
padding: 5px 10px;
}
.room-info__container {
2020-05-29 18:22:51 +00:00
grid-area: 3 / 1 / 4 / 4;
2020-05-28 13:49:52 +00:00
background-color: #e2eb57;
padding: 3px;
display: flex;
}
.room-info__level-display {
width: fit-content;
}
.room-info__level-text {
color: white;
background: black;
width: fit-content;
padding: 1px 8px;
text-align: center;
margin-bottom: 5px;
margin-top: 5px;
}
2020-05-28 13:49:52 +00:00
.room-info__level-number {
display: flex;
align-items: center;
justify-content: center;
color: white;
background-color: black;
font-weight: bolder;
font-size: 50px;
margin: 5px 0 0 0;
}
2020-05-28 11:07:12 +00:00
.room-info__title-container {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.room-info__title {
color: white;
background-color: black;
text-align: center;
font-style: italic;
margin: 5px 8px;
2020-05-28 13:49:52 +00:00
padding: 8px 0;
font-size: x-large;
2020-05-28 11:07:12 +00:00
}
.room-info__subtitle {
color: white;
background-color: black;
text-align: center;
font-style: italic;
2020-05-28 13:49:52 +00:00
padding: 4px 36px;
2020-05-28 11:07:12 +00:00
margin: 5px 8px 0px 8px;
2020-05-28 13:49:52 +00:00
}
2020-05-29 18:22:51 +00:00
#map-display {
grid-area: 1 / 1 / 3 / 2;
}
2020-05-28 13:49:52 +00:00
.map-display__container {
width: 500px;
border-bottom: 8px solid #438149;
border-top: 8px solid #438149;
display: flex;
height: 500px;
justify-content: space-between;
}
.map-display__system-wrapper {
display: flex;
align-items: center;
background-color: #448149;
}
2020-05-28 11:07:12 +00:00
2020-05-28 13:49:52 +00:00
.map-display__center-section {
display: flex;
flex-direction: column;
justify-content: space-between;
}
#sys-one {
writing-mode: vertical-rl;
text-orientation: mixed;
text-align: center;
}
#sys-four {
writing-mode: tb-rl;
transform: rotate(-180deg);
text-align: center;
2020-05-28 11:07:12 +00:00
}
2020-05-29 18:22:51 +00:00
#grid-container {
display: grid;
grid-template-rows: auto auto auto auto;
grid-template-columns: auto auto;
justify-items: stretch;
}
#system-icons {
grid-area: 4 / 2 / 5 / 3;
}
#control-panel {
display: flex;
flex-direction: column;
}
2020-05-26 20:19:44 +00:00
h1 {
max-width: fit-content;
background: #438149;
color: #ededed;
2020-05-28 13:49:52 +00:00
margin: 0 auto;
2020-05-26 20:19:44 +00:00
}
.button-display__button {
-moz-box-shadow: inset 0 0 5px #515151;
-webkit-box-shadow: inset 0 0 5px #515151;
box-shadow: inset 0 0 5px #515151;
width: fit-content;
}
.button-display__button__depressed {
color: #BFBFBF;
text-shadow: 1px 1px 1px #565656;
padding: 5px;
}