jurassic-park-interface/sass/components/_level-info.scss
2020-09-02 13:24:50 -05:00

62 lines
1.1 KiB
SCSS

.room-info__container {
background-color: #e2eb57;
padding: 2% 1%;
display: flex;
justify-content: space-evenly;
flex: 0 0 13%;
}
.room-info__level-display {
display: flex;
flex: 1;
flex-direction: column;
}
.room-info__level-text {
font-size: 1vw;
color: white;
background: black;
padding: 1px 8px;
text-align: center;
margin-bottom: 2px;
margin-top: 2px;
}
.room-info__level-number {
display: flex;
align-items: center;
justify-content: center;
color: white;
background-color: black;
font-weight: bolder;
font-size: 30px;
margin: 2px 0 0 0;
flex: 1;
}
.room-info__title-container {
display: flex;
// flex: 0 0 75%;
flex-direction: column;
justify-content: space-between;
}
.room-info__title {
color: white;
background-color: black;
text-align: center;
font-style: italic;
margin: .1vw .5vw;
padding: .5vw 1.5vw;
font-size: 1.5vw;
}
.room-info__subtitle {
color: white;
background-color: black;
text-align: center;
font-style: italic;
font-size: small;
padding: 4px 36px;
margin: 5px 8px 0px 8px;
}