Skip to content

Commit

Permalink
feat(css/scss): initial stylization of threat sheet
Browse files Browse the repository at this point in the history
basic organization of fields, padding, margin, width, height
  • Loading branch information
SouOWendel committed May 21, 2024
1 parent 2a5a947 commit c2bd00a
Show file tree
Hide file tree
Showing 2 changed files with 98 additions and 0 deletions.
41 changes: 41 additions & 0 deletions css/ordemparanormal_fvtt.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

57 changes: 57 additions & 0 deletions scss/components/_forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -237,3 +237,60 @@
font-weight: bold;
}
}
// TODO: Separar SCSS entre geral, agente, ameaça.
.threat {
#senses, #defenses, #attributes, #general,
#disturbingPresence, #actions, #abilities {
padding: 5px;
border: 1px solid #27272740;
margin-top: 5px;
border-radius: 5px;

.display-flex {
align-items: center;
}
}

.miniInput {
width: 32px;
}

#attributes {
justify-content: space-between;

.pre, .vit, .str, .int, .dex {
text-align: center;
input {
height: 32px;
}
}
}

label + input {
margin-left: 5px;
}

#announcement {
a {
color: #272727;
}

.link-alert {
padding: 0 10px;
}
}

#descriptions div {
margin: 8px 0;

textarea {
height: 100px;
}
}

#actions {
textarea {
height: 300px;
}
}
}

0 comments on commit c2bd00a

Please sign in to comment.