Also improved the display of features and generally iterated on their manipulation. Characters now fetch the relevant effects directly when making a calculation, simplifying almost everything. Effects now store a reference to their source if they have one. Effect names are now optional, they can be fetched from the source's name if the source exists.
115 lines
1.4 KiB
CSS
115 lines
1.4 KiB
CSS
root {
|
|
display: block;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial;
|
|
margin: 0;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
body.core-narrow {
|
|
padding: 8px;
|
|
}
|
|
|
|
body /deep/ core-menu {
|
|
overflow-x: hidden !important;
|
|
}
|
|
|
|
.calculatedValue {
|
|
color: #021C33;
|
|
font-weight: bold;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
td {
|
|
padding: 0;
|
|
}
|
|
|
|
table {
|
|
border-spacing: 0;
|
|
}
|
|
|
|
hr {
|
|
background-color: #444;
|
|
opacity: 0.12;
|
|
border-width: 0;
|
|
color: #444;
|
|
height: 1px;
|
|
line-height: 0;
|
|
margin: 0 -16px;
|
|
text-align: center;
|
|
}
|
|
|
|
paper-button {
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
text-transform: uppercase;
|
|
color: #000;
|
|
color: rgba(0,0,0,0.87);
|
|
letter-spacing: 0.010;
|
|
}
|
|
|
|
.listRow {
|
|
height: 32px;
|
|
}
|
|
|
|
.card {
|
|
margin: 4px;
|
|
padding: 16px;
|
|
font-size: 14px;
|
|
border-radius: 2px;
|
|
background-color: white;
|
|
}
|
|
|
|
.card.double {
|
|
width: 332px;
|
|
}
|
|
|
|
.card paper-button {
|
|
font-size: 14px;
|
|
letter-spacing: 0.01em;
|
|
}
|
|
|
|
.grey-background, body {
|
|
background-color: #E0E0E0;
|
|
}
|
|
|
|
.center {
|
|
text-align: center;
|
|
}
|
|
|
|
.screen-center {
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
-webkit-transform: translate(-50%, -50%);
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
.scroll-y {
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.fab-buffer {
|
|
height: 88px;
|
|
}
|
|
|
|
*[hidden] {
|
|
visibility: hidden;
|
|
}
|
|
|
|
@media (max-width: 640px) {
|
|
html /deep/ paper-action-dialog[global-dialog] {
|
|
top: 0 !important;
|
|
left: 0 !important;
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
border-radius: 0;
|
|
}
|
|
}
|