This commit is contained in:
2020-05-22 19:28:01 +02:00
parent 4ed1c804a0
commit 6c65c048a2
13 changed files with 318 additions and 308 deletions

View File

@ -1,14 +1,14 @@
.worldbuilding {
.foundryvtt-reve-de-dragon {
/* Sheet Tabs */
/* Items List */
/* Attributes */
}
.worldbuilding .window-content {
.foundryvtt-reve-de-dragon .window-content {
height: 100%;
padding: 5px;
overflow-y: hidden;
}
.worldbuilding .sheet-header {
.foundryvtt-reve-de-dragon .sheet-header {
height: 100px;
overflow: hidden;
display: flex;
@ -17,84 +17,84 @@
justify-content: flex-start;
margin-bottom: 10px;
}
.worldbuilding .sheet-header .profile-img {
.foundryvtt-reve-de-dragon .sheet-header .profile-img {
flex: 0 0 100px;
height: 100px;
margin-right: 10px;
}
.worldbuilding .sheet-header .header-fields {
.foundryvtt-reve-de-dragon .sheet-header .header-fields {
flex: 1;
height: 100px;
}
.worldbuilding .sheet-header h1.charname {
.foundryvtt-reve-de-dragon .sheet-header h1.charname {
height: 50px;
padding: 0px;
margin: 5px 0;
border-bottom: 0;
}
.worldbuilding .sheet-header h1.charname input {
.foundryvtt-reve-de-dragon .sheet-header h1.charname input {
width: 100%;
height: 100%;
margin: 0;
}
.worldbuilding .resource {
.foundryvtt-reve-de-dragon .resource {
width: 50%;
height: 40px;
margin-top: 10px;
float: left;
text-align: center;
}
.worldbuilding .resource input {
.foundryvtt-reve-de-dragon .resource input {
width: 100px;
height: 28px;
}
.worldbuilding .tabs {
.foundryvtt-reve-de-dragon .tabs {
height: 40px;
border-top: 1px solid #AAA;
border-bottom: 1px solid #AAA;
}
.worldbuilding .tabs .item {
.foundryvtt-reve-de-dragon .tabs .item {
line-height: 40px;
font-weight: bold;
}
.worldbuilding .tabs .item.active {
.foundryvtt-reve-de-dragon .tabs .item.active {
text-decoration: underline;
text-shadow: none;
}
.worldbuilding .sheet-body {
.foundryvtt-reve-de-dragon .sheet-body {
overflow: hidden;
}
.worldbuilding .sheet-body .tab {
.foundryvtt-reve-de-dragon .sheet-body .tab {
height: 100%;
overflow-y: auto;
}
.worldbuilding .editor,
.worldbuilding .editor-content {
.foundryvtt-reve-de-dragon .editor,
.foundryvtt-reve-de-dragon .editor-content {
height: 100%;
}
.worldbuilding .item-list {
.foundryvtt-reve-de-dragon .item-list {
list-style: none;
margin: 7px 0;
padding: 0;
overflow-y: auto;
}
.worldbuilding .item-list .item {
.foundryvtt-reve-de-dragon .item-list .item {
height: 30px;
line-height: 24px;
padding: 3px 0;
border-bottom: 1px solid #BBB;
}
.worldbuilding .item-list .item img {
.foundryvtt-reve-de-dragon .item-list .item img {
flex: 0 0 24px;
margin-right: 5px;
}
.worldbuilding .item-list .item-name {
.foundryvtt-reve-de-dragon .item-list .item-name {
margin: 0;
}
.worldbuilding .item-list .item-controls {
.foundryvtt-reve-de-dragon .item-list .item-controls {
flex: 0 0 36px;
}
.worldbuilding .attributes-header {
.foundryvtt-reve-de-dragon .attributes-header {
padding: 5px;
margin: 5px 0;
background: rgba(0, 0, 0, 0.05);
@ -103,18 +103,18 @@
text-align: center;
font-weight: bold;
}
.worldbuilding .attributes-header .attribute-label {
.foundryvtt-reve-de-dragon .attributes-header .attribute-label {
flex: 1.5;
}
.worldbuilding .attributes-header .attribute-control {
.foundryvtt-reve-de-dragon .attributes-header .attribute-control {
flex: 0 0 20px;
}
.worldbuilding .attributes-list {
.foundryvtt-reve-de-dragon .attributes-list {
list-style: none;
margin: 0;
padding: 0;
}
.worldbuilding .attributes-list li > * {
.foundryvtt-reve-de-dragon .attributes-list li > * {
margin: 0 3px;
height: 28px;
line-height: 24px;
@ -123,17 +123,24 @@
border-radius: 0;
border-bottom: 1px solid #AAA;
}
.worldbuilding .attributes-list a.attribute-control {
.foundryvtt-reve-de-dragon .attributes-list a.attribute-control {
flex: 0 0 20px;
text-align: center;
line-height: 28px;
border: none;
}
.worldbuilding.sheet.actor {
.foundryvtt-reve-de-dragon.sheet.actor {
min-width: 560px;
min-height: 420px;
}
.worldbuilding.sheet.item {
.foundryvtt-reve-de-dragon.sheet.item {
min-width: 460px;
min-height: 400px;
}
//Editor
.editor {
border: $section-border;
height: 300px;
width: 100%;
}