Files
roll20-character-sheets/Awaken/scss/files/attaque.scss
T
2021-07-14 15:44:07 +02:00

60 lines
1.3 KiB
SCSS

div.attaque {
@include button(23px);
display:flex;
width:100%;
justify-content: center;
align-items:flex-start;
flex-wrap: wrap;
border:1px solid $black;
padding: 12px;
border-bottom-right-radius: 30px;
border-top-left-radius: 30px;
div.line {
display:flex;
width:100%;
justify-content: space-between;
}
select {
width:100%;
text-align: center;
padding:0px;
border-top:0px;
border-right:0px;
border-left:0px;
border-bottom:1px dotted $black;
}
label {
display:flex;
width:100%;
justify-content: space-between;
align-items:flex-end;
align-content:flex-end;
span {
width:max-content;
white-space: nowrap;
font-size:12px;
font-variant: small-caps;
color:$black;
}
input[type="number"] {
width:50px;
text-align: center;
border-top:0px;
border-right:0px;
border-left:0px;
border-bottom:1px dotted $black;
padding:0px;
color:$black;
}
&:not(:first-of-type) {
margin-top:2px;
}
}
}