Add black border for inner sections
This commit is contained in:
parent
5fcff95350
commit
ad19b85751
|
@ -3,3 +3,13 @@
|
|||
|
||||
border: 1em solid white;
|
||||
}
|
||||
|
||||
.tarot-card__section {
|
||||
border-left: 0.4rem solid black;
|
||||
border-right: 0.4rem solid black;
|
||||
border-bottom: 0.4rem solid black;
|
||||
}
|
||||
|
||||
.tarot-card__section:nth-child(1) {
|
||||
border-top: 0.4rem solid black;
|
||||
}
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
}
|
||||
|
||||
#simple-card {
|
||||
max-height: 88vh;
|
||||
height: 88vh;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
@ -25,6 +25,11 @@
|
|||
<div class="center-grid">
|
||||
|
||||
<div id="simple-card" class="tarot-card">
|
||||
<div class="tarot-card__section">Section 1</div>
|
||||
<div class="tarot-card__section">Section 2</div>
|
||||
<div class="tarot-card__section">Section 3</div>
|
||||
<div class="tarot-card__section">Section 4</div>
|
||||
|
||||
<p>The Simple Card</p>
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Reference in New Issue