2024-10-22 11:43:54 +00:00
|
|
|
html {
|
|
|
|
font-family: "Roboto", "Helvetica", "Arial", sans-serif;
|
2024-10-23 07:46:06 +00:00
|
|
|
margin-top: -9px;
|
|
|
|
margin-left: -6px;
|
2024-10-22 11:43:54 +00:00
|
|
|
}
|
|
|
|
table {
|
|
|
|
width: 100%;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
td {
|
|
|
|
border: 6px solid white;
|
|
|
|
}
|
|
|
|
.center {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.right {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
.cursive {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
.bold {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.black-bg {
|
|
|
|
background-color: black;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
.xs-txt {
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
.md-txt {
|
|
|
|
font-size: 26px;
|
|
|
|
}
|
|
|
|
.xl-txt {
|
|
|
|
font-size: 50px;
|
|
|
|
}
|
|
|
|
.cell {
|
|
|
|
border: 2px solid black;
|
|
|
|
box-sizing: content-box;
|
|
|
|
width: 100%;
|
|
|
|
height: 30px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.padding {
|
|
|
|
padding: 7px;
|
|
|
|
}
|
|
|
|
.xs-height {
|
|
|
|
height: 50px;
|
|
|
|
max-height: 50px;
|
|
|
|
}
|
|
|
|
.md-height {
|
2024-10-23 07:46:06 +00:00
|
|
|
height: 75px;
|
|
|
|
max-height: 75px;
|
2024-10-22 11:43:54 +00:00
|
|
|
}
|
|
|
|
.sm-width {
|
|
|
|
width: 60px;
|
|
|
|
max-width: 60px;
|
|
|
|
}
|
|
|
|
.md-width {
|
2024-10-23 07:46:06 +00:00
|
|
|
width: 125px;
|
|
|
|
max-width: 125px;
|
2024-10-22 11:43:54 +00:00
|
|
|
}
|
|
|
|
.lg-width {
|
2024-10-23 07:46:06 +00:00
|
|
|
width: 380px;
|
|
|
|
max-width: 380px;
|
2024-10-22 11:43:54 +00:00
|
|
|
}
|
|
|
|
.overflow-multiline {
|
|
|
|
max-height: inherit;
|
|
|
|
display: -webkit-box;
|
|
|
|
overflow: hidden;
|
|
|
|
word-wrap: break-word;
|
|
|
|
line-clamp: 2;
|
|
|
|
-webkit-line-clamp: 2;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
}
|
|
|
|
.overflow-line {
|
|
|
|
width: inherit;
|
|
|
|
max-width: inherit;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|