add culture and save space with base infos and progression infos

This commit is contained in:
Johannes Loher 2021-01-04 21:51:58 +01:00
parent 520aab8b72
commit f8deca4cd4
8 changed files with 102 additions and 75 deletions

View file

@ -1,6 +1,9 @@
.basic-properties {
flex: 0 0 100%;
gap: 2px;
.basic-property {
padding-left: 1px;
padding-right: 1px;
.basic-property-label {
font-weight: bold;
}
@ -9,5 +12,8 @@
display: block;
width: 100%;
}
.input-divider {
text-align: center;
}
}
}

View file

@ -0,0 +1,30 @@
.progression {
.progression-entry {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-end;
align-items: center;
padding-right: 3px;
h2.progression-label {
font-family: $font-heading;
display: block;
height: 50px;
padding: 0px;
color: $c-light-grey;
border: none;
line-height: 50px;
margin: $header-top-margin 0;
text-align: right;
//flex: 0;
}
input.progression-value {
margin-left: 5px;
flex: 0 0 40px;
text-align: left;
border: none;
background-color: transparent;
}
}
}