mirror of
https://github.com/Max-Stevenson/jurassic-park-interface.git
synced 2025-02-24 10:29:08 +00:00
Finished screen interface.
- Started working on room info components.
This commit is contained in:
parent
27a5a6cab2
commit
0acf32729b
48
app.css
48
app.css
@ -141,20 +141,60 @@
|
|||||||
border-radius: 1px;
|
border-radius: 1px;
|
||||||
border-top: 1px solid black;
|
border-top: 1px solid black;
|
||||||
border-left: none;
|
border-left: none;
|
||||||
border-bottom: none;
|
border-bottom: 0.5px solid #4B4B4B;
|
||||||
border-right: none;
|
border-right: 0.5px solid #4B4B4B;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.island-container__text {
|
.island-container__text {
|
||||||
color: black;
|
color: black;
|
||||||
width: fit-content;
|
width: fit-content;
|
||||||
background-color: #ffffff;
|
background-color: white;
|
||||||
padding: 8px 48px 9px 48px;
|
padding: 8px 48px 8px 48px;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#console-display {
|
||||||
|
width: fit-content;
|
||||||
|
}
|
||||||
|
#console-display > .outer-container__two {
|
||||||
|
padding: 5px 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.room-info__container {
|
||||||
|
background-color: #E2EB57;
|
||||||
|
padding: 3px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.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;
|
||||||
|
}
|
||||||
|
|
||||||
|
.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;
|
||||||
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
max-width: fit-content;
|
max-width: fit-content;
|
||||||
background: #438149;
|
background: #438149;
|
||||||
|
30
index.html
30
index.html
@ -8,8 +8,28 @@
|
|||||||
<div class="outer-container__two">
|
<div class="outer-container__two">
|
||||||
<div class="inner-container__one">
|
<div class="inner-container__one">
|
||||||
<div class="inner-container__two">
|
<div class="inner-container__two">
|
||||||
|
<div class="outer-container__one" id="map-display">
|
||||||
|
<div class="outer-container__two">
|
||||||
<h1>SYSTEM SECURED</h1>
|
<h1>SYSTEM SECURED</h1>
|
||||||
<p>Welcome to Jurassic Park</p>
|
<div class="room-info__container">
|
||||||
|
<div class="room-info__level-display">
|
||||||
|
<p class="room-info__level-text">LEVEL</p>
|
||||||
|
<p class="room-info__level-number">2</p>
|
||||||
|
</div>
|
||||||
|
<div class="room-info__title-container">
|
||||||
|
<h3></h3>
|
||||||
|
</div>
|
||||||
|
<div class="room-info__level-display">
|
||||||
|
<p class="room-info__level-text">LEVEL</p>
|
||||||
|
<p class="room-info__level-number">2</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="outer-container__one" id="console-display">
|
||||||
|
<div class="outer-container__two">
|
||||||
|
<div class="inner-container__one">
|
||||||
|
<div class="inner-container__two">
|
||||||
<div class="console-display__wrapper">
|
<div class="console-display__wrapper">
|
||||||
<div class="screen-container__wrapper">
|
<div class="screen-container__wrapper">
|
||||||
<div class="screen-container__outer">
|
<div class="screen-container__outer">
|
||||||
@ -27,7 +47,13 @@
|
|||||||
<div class="inner-triangle__left"></div>
|
<div class="inner-triangle__left"></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="island-container__outer">
|
<div class="island-container__outer">
|
||||||
<p class="island-container__text">Isla Nubar, Costa Rica</p>
|
<p class="island-container__text">
|
||||||
|
Isla Nubar, Costa Rica
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user