Add line for mark dice process in RnK

This commit is contained in:
Mandar
2021-02-16 19:42:43 +01:00
parent bc615d05fa
commit 08c0059ca5
2 changed files with 30 additions and 17 deletions

File diff suppressed because one or more lines are too long

View File

@@ -192,34 +192,33 @@
border: 0; border: 0;
} }
table { table {
display: table;
min-height: 9rem;
border: 0 none; border: 0 none;
margin: 0; margin: 0.25rem 0;
padding: 0; padding: 0;
tbody {
tr {
background: transparent;
td {
margin: 0;
padding: 0;
}
}
}
} }
.rnk-ct { .rnk-ct {
margin: 0.75rem 0 0; margin: 0;
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
border-radius: 0.25rem;
background: rgba(0, 0, 0, 0.05); background: rgba(0, 0, 0, 0.05);
border: 1px solid rgba(186, 187, 177, 0.5); border: 1px solid rgba(255, 255, 255, 0.5);
.rnk-center { .rnk-center {
flex: 350px; flex: 350px;
flex-wrap: wrap; flex-wrap: wrap;
display: flex; display: flex;
table {
display: table;
min-height: 9rem;
tbody {
tr {
background: transparent;
td {
margin: 0;
padding: 0;
}
}
}
}
} }
} }
@@ -267,6 +266,15 @@
.dice-ct { .dice-ct {
position: relative; position: relative;
padding: 0.25rem; padding: 0.25rem;
&:before {
content: "";
position: absolute;
height: 0.5rem;
width: 2px;
top: -0.3rem;
right: calc(50% - 1px);
background: $l5r5e-black-light;
}
&:after { &:after {
content: "\f128"; content: "\f128";
position: absolute; position: absolute;
@@ -308,6 +316,11 @@
} }
} }
} }
tr:first-child .dice-ct {
&:before {
display: none;
}
}
.dice { .dice {
height: 40px; height: 40px;