Skip to content

Commit

Permalink
A lot of changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Solarswordsman committed Oct 23, 2018
1 parent 7f4168d commit 5e1fea7
Show file tree
Hide file tree
Showing 3 changed files with 256 additions and 52 deletions.
99 changes: 81 additions & 18 deletions Dungeon_World_Official/Dungeon World.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
background-color: rgb(230, 231, 233);
height: auto;
border: 1px solid rgb(35, 31, 32);
min-width: 820px;
}

.charsheet .sheet-container label {
Expand All @@ -30,7 +31,30 @@
}

.sheet-compendium-drop-target.dropping {
background-color: yellow;
opacity: 0.5;
transition: opacity .15s ease-in-out;
-moz-transition: opacity .15s ease-in-out;
-webkit-transition: opacity .15s ease-in-out;
background-color: transparent;
}

.sheet-compendium_warning {
display: none;
}

.sheet-container.active-drop-target.dropping ~ .sheet-compendium_warning {
display: block;
position: fixed;
top: 50%;
background: white;
left: 50%;
z-index: 100;
border: 2px solid black;
width: 300px;
height: 85px;
text-align: center;
margin: -70px 0 0 -170px;
padding-top: 20px;
}

/* start npcstuff */
Expand Down Expand Up @@ -656,12 +680,15 @@ input[type=number]::-webkit-outer-spin-button {

.sheet-dw-stat-header input {
border-style: none;
border-bottom: 1px solid white;
border-bottom: 1px solid black;
box-shadow: none;
margin-bottom: 5px;
width: 25px !important;
background: none;
color: inherit;
text-align: right;
align-self: flex-end;
padding-bottom: 0px;
}

button input[disabled=true] {
Expand Down Expand Up @@ -724,8 +751,8 @@ button span {
width: 16px;
height: 16px;
position: relative;
top: -5px;
left: 5px;
top: -2px;
left: 4px;
margin: -10px;
cursor: pointer;
z-index: 1;
Expand Down Expand Up @@ -845,6 +872,26 @@ button span {
font-weight: bold;
}

.sheet-nav-tabs {
margin-left: +6px;
}

.sheet-nav-tabs .sheet-toggler input[type=radio] + span {
border-radius: 2px;
font-size: 0.9em;
padding-top: 0.2em;
}

.sheet-nav-tabs .sheet-toggler input[type=radio]:checked + span {
background-color: unset;
background-image: linear-gradient(#ffffffb8, transparent);
border-bottom-color: transparent;
}

.sheet-nav-tabs .sheet-toggler input[type=radio]:focus + span {
border-bottom-color: transparent;
}

.sheet-toggler input[type=radio]:checked + span,
.sheet-toggler input[type=checkbox]:checked + span {
color: rgb(35, 31, 32);
Expand Down Expand Up @@ -979,7 +1026,11 @@ button span {
flex-wrap: wrap;
text-align: right;
margin-top: 5px;
padding-right: 20px;
padding-right: 20px;
}

.sheet-move-expansion {
text-align: left;
}

.sheet-move-expansion input[type="text"],
Expand All @@ -1003,6 +1054,11 @@ button span {
height: 3em;
}

.sheet-move-expansion textarea {
width: calc(100% - 20px);
margin-top: 0px;
}

.sheet-move-expansion input[type="number"],
.sheet-spell-expansion input[type="number"],
.sheet-gear-expansion input[type="number"],
Expand Down Expand Up @@ -1136,11 +1192,18 @@ textarea.sheet-gear-details {
}

.sheet-gmod {
/*
background-color: white;
border: 1px solid black;
*/
padding: 2px;
margin-left: 0.2em;
width: 20em;
margin-left: 0.3em;
width: calc(100% - 1.2em);
}

.sheet-gmod .repitem {
width: calc(100% - 5%);
margin-left: 0.5em;
}

/* Roll Templates */
Expand Down Expand Up @@ -1220,16 +1283,16 @@ textarea.sheet-gear-details {
/* Notes Fields */

.sheet-notes{
border-radius: 0;
box-shadow: none;
border: 1px solid;
min-height: 28px;
padding: 5px;
width:49%;
box-sizing: border-box;
resize:vertical;
display:inline-block;
border-radius: 0;
box-shadow: none;
border: 1px solid;
min-height: 28px;
padding: 5px;
width:49%;
box-sizing: border-box;
resize:vertical;
display:inline-block;
}
.sheet-notes2{
margin-left:10px;
}
margin-left:10px;
}
Loading

0 comments on commit 5e1fea7

Please sign in to comment.