{panel:title = *Business Context*}
Xxx
{panel}
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* { | |
box-sizing: border-box; | |
margin: 0; | |
padding: 0; | |
} | |
:root { | |
min-height: 100vh; | |
font-family: "Roboto", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; | |
font-size: 18px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.customer { | |
background-color: #fff; | |
border-radius: 8px; | |
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); | |
padding: 16px; | |
margin: 16px; | |
text-align: left; | |
} | |
.name { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.customers { | |
list-style: none; | |
max-width: 50rem; | |
margin: 1rem auto; | |
padding: 1rem 0; | |
display: grid; | |
grid-template-columns: repeat(3, 30%); | |
gap: 1rem; | |
justify-content: center; | |
} |
OlderNewer