mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-09-01 04:32:28 +00:00
129 lines
2.6 KiB
SCSS
129 lines
2.6 KiB
SCSS
.sheet-rolltemplate-jets,
|
|
.sheet-rolltemplate-prodige,
|
|
.sheet-rolltemplate-combat {
|
|
display:flex;
|
|
width:calc(100% - 10px);
|
|
flex-wrap: wrap;
|
|
padding:5px;
|
|
border:1px solid $black;
|
|
border-radius: 30px;
|
|
background:$white;
|
|
padding-bottom:15px;
|
|
|
|
h1 {
|
|
width:100%;
|
|
font-size:16px;
|
|
text-align: center;
|
|
line-height:24px;
|
|
}
|
|
|
|
h2 {
|
|
width:100%;
|
|
font-size:12px;
|
|
font-variant: small-caps;
|
|
text-align: center;
|
|
line-height:18px;
|
|
margin-top:5px;
|
|
border-top:1px solid $black;
|
|
padding-top:5px;
|
|
border-bottom:1px solid $black;
|
|
padding-bottom:5px;
|
|
margin-bottom:5px;
|
|
}
|
|
|
|
h3 {
|
|
width:100%;
|
|
font-variant: small-caps;
|
|
text-align: center;
|
|
font-size:12px;
|
|
border-top:1px solid black;
|
|
margin-top:5px;
|
|
padding-top:5px;
|
|
line-height:18px;
|
|
|
|
&.sheet-critique {
|
|
color:$green;
|
|
}
|
|
|
|
&.sheet-fail {
|
|
color:$red;
|
|
}
|
|
}
|
|
|
|
div {
|
|
display:flex;
|
|
width:100%;
|
|
justify-content: space-between;
|
|
|
|
&:not(:first-of-type) {
|
|
margin-top:5px;
|
|
}
|
|
|
|
span {
|
|
width:calc(50% - 5px);
|
|
|
|
&:last-of-type {
|
|
text-align: center;
|
|
justify-content: center;
|
|
display: flex;
|
|
}
|
|
}
|
|
|
|
&.sheet-donnees {
|
|
span {
|
|
&:first-of-type {
|
|
font-weight:bold;
|
|
font-variant: small-caps;
|
|
font-size:12px;
|
|
}
|
|
|
|
&:last-of-type {
|
|
word-break: anywhere;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
&.sheet-separation {
|
|
margin-top:5px;
|
|
padding-top:5px;
|
|
border-top:1px solid $black;
|
|
}
|
|
|
|
&.sheet-separationBot {
|
|
padding-bottom:5px;
|
|
border-bottom:1px solid $black;
|
|
}
|
|
}
|
|
|
|
.inlinerollresult {
|
|
color:$black;
|
|
border:none;
|
|
background:transparent;
|
|
font-weight:bold;
|
|
|
|
&.fullcrit {
|
|
border:none;
|
|
background:transparent;
|
|
color:$black;
|
|
}
|
|
|
|
&.fullfail {
|
|
border:none;
|
|
background:transparent;
|
|
color:$black;
|
|
}
|
|
|
|
&.importantroll {
|
|
border:none;
|
|
background:transparent;
|
|
color:$black;
|
|
}
|
|
}
|
|
|
|
span {
|
|
display:block;
|
|
word-wrap: anywhere;
|
|
text-align: justify;
|
|
}
|
|
} |