jurassic-park-interface/sass/components/_level-info.scss

62 lines
1.1 KiB
SCSS
Raw Normal View History

2020-06-01 14:33:53 +00:00
.room-info__container {
background-color: #e2eb57;
2020-09-02 18:24:50 +00:00
padding: 2% 1%;
2020-06-01 14:33:53 +00:00
display: flex;
2020-06-09 10:08:47 +00:00
justify-content: space-evenly;
2020-09-02 18:24:50 +00:00
flex: 0 0 13%;
2020-06-01 14:33:53 +00:00
}
.room-info__level-display {
display: flex;
2020-09-02 18:24:50 +00:00
flex: 1;
flex-direction: column;
2020-06-01 14:33:53 +00:00
}
.room-info__level-text {
2020-09-02 18:24:50 +00:00
font-size: 1vw;
2020-06-01 14:33:53 +00:00
color: white;
background: black;
padding: 1px 8px;
text-align: center;
margin-bottom: 2px;
margin-top: 2px;
2020-06-01 14:33:53 +00:00
}
.room-info__level-number {
display: flex;
align-items: center;
justify-content: center;
color: white;
background-color: black;
font-weight: bolder;
2020-09-02 21:54:22 +00:00
font-size: 2.5vw;
margin: 2px 0 0 0;
flex: 1;
2020-06-01 14:33:53 +00:00
}
.room-info__title-container {
display: flex;
2020-09-10 17:04:32 +00:00
flex: 0 0 75%;
2020-06-01 14:33:53 +00:00
flex-direction: column;
justify-content: space-between;
}
.room-info__title {
color: white;
background-color: black;
text-align: center;
font-style: italic;
2020-09-02 18:24:50 +00:00
margin: .1vw .5vw;
padding: .5vw 1.5vw;
font-size: 1.5vw;
2020-06-01 14:33:53 +00:00
}
.room-info__subtitle {
color: white;
background-color: black;
text-align: center;
font-style: italic;
font-size: small;
2020-06-01 14:33:53 +00:00
padding: 4px 36px;
margin: 5px 8px 0px 8px;
}