fvtt-never-stop-blowing-up/css/never-stop-blowing-up.css

549 lines
11 KiB
CSS
Raw Permalink Normal View History

2024-09-22 16:28:59 +02:00
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
/* Global styles */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
.window-app {
font-family: "Roboto", sans-serif;
}
2024-12-10 17:22:28 +01:00
.window-app .window-content > * {
flex:0;
}
2024-09-22 16:28:59 +02:00
.rollable:hover, .rollable:focus {
color: #000;
text-shadow: 0 0 10px rgb(146, 0, 225);
cursor: pointer;
}
.grid {
display: grid;
gap: 10px;
margin: 10px 0;
padding: 0;
}
.grid-start-2 {
grid-column-start: 2;
}
.grid-span-2 {
grid-column-end: span 2;
}
.grid-2col {
grid-column: span 2/span 2;
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-start-3 {
grid-column-start: 3;
}
.grid-span-3 {
grid-column-end: span 3;
}
.grid-3col {
grid-column: span 3/span 3;
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-start-4 {
grid-column-start: 4;
}
.grid-span-4 {
grid-column-end: span 4;
}
.grid-4col {
grid-column: span 4/span 4;
grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-start-5 {
grid-column-start: 5;
}
.grid-span-5 {
grid-column-end: span 5;
}
.grid-5col {
grid-column: span 5/span 5;
grid-template-columns: repeat(5, minmax(0, 1fr));
}
.grid-start-6 {
grid-column-start: 6;
}
.grid-span-6 {
grid-column-end: span 6;
}
.grid-6col {
grid-column: span 6/span 6;
grid-template-columns: repeat(6, minmax(0, 1fr));
}
.grid-start-7 {
grid-column-start: 7;
}
.grid-span-7 {
grid-column-end: span 7;
}
.grid-7col {
grid-column: span 7/span 7;
grid-template-columns: repeat(7, minmax(0, 1fr));
}
.grid-start-8 {
grid-column-start: 8;
}
.grid-span-8 {
grid-column-end: span 8;
}
.grid-8col {
grid-column: span 8/span 8;
grid-template-columns: repeat(8, minmax(0, 1fr));
}
.grid-start-9 {
grid-column-start: 9;
}
.grid-span-9 {
grid-column-end: span 9;
}
.grid-9col {
grid-column: span 9/span 9;
grid-template-columns: repeat(9, minmax(0, 1fr));
}
.grid-start-10 {
grid-column-start: 10;
}
.grid-span-10 {
grid-column-end: span 10;
}
.grid-10col {
grid-column: span 10/span 10;
grid-template-columns: repeat(10, minmax(0, 1fr));
}
.grid-start-11 {
grid-column-start: 11;
}
.grid-span-11 {
grid-column-end: span 11;
}
.grid-11col {
grid-column: span 11/span 11;
grid-template-columns: repeat(11, minmax(0, 1fr));
}
.grid-start-12 {
grid-column-start: 12;
}
.grid-span-12 {
grid-column-end: span 12;
}
.grid-12col {
grid-column: span 12/span 12;
grid-template-columns: repeat(12, minmax(0, 1fr));
}
.flex-group-center {
2024-10-07 10:03:34 +02:00
display: -webkit-box;
display: -ms-flexbox;
2024-09-22 16:28:59 +02:00
display: flex;
2024-10-07 10:03:34 +02:00
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: center;
2024-09-22 16:28:59 +02:00
flex-direction: center;
2024-10-07 10:03:34 +02:00
-ms-flex-wrap: center;
2024-09-22 16:28:59 +02:00
flex-wrap: center;
2024-10-07 10:03:34 +02:00
-webkit-box-pack: start;
-ms-flex-pack: start;
2024-09-22 16:28:59 +02:00
justify-content: flex-start;
2024-10-07 10:03:34 +02:00
-webkit-box-align: stretch;
-ms-flex-align: stretch;
2024-09-22 16:28:59 +02:00
align-items: stretch;
text-align: center;
}
.flex-group-left {
2024-10-07 10:03:34 +02:00
display: -webkit-box;
display: -ms-flexbox;
2024-09-22 16:28:59 +02:00
display: flex;
2024-10-07 10:03:34 +02:00
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: flex-start;
2024-09-22 16:28:59 +02:00
flex-direction: flex-start;
2024-10-07 10:03:34 +02:00
-ms-flex-wrap: center;
2024-09-22 16:28:59 +02:00
flex-wrap: center;
2024-10-07 10:03:34 +02:00
-webkit-box-pack: start;
-ms-flex-pack: start;
2024-09-22 16:28:59 +02:00
justify-content: flex-start;
2024-10-07 10:03:34 +02:00
-webkit-box-align: stretch;
-ms-flex-align: stretch;
2024-09-22 16:28:59 +02:00
align-items: stretch;
text-align: left;
}
.flex-group-right {
2024-10-07 10:03:34 +02:00
display: -webkit-box;
display: -ms-flexbox;
2024-09-22 16:28:59 +02:00
display: flex;
2024-10-07 10:03:34 +02:00
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: flex-end;
2024-09-22 16:28:59 +02:00
flex-direction: flex-end;
2024-10-07 10:03:34 +02:00
-ms-flex-wrap: center;
2024-09-22 16:28:59 +02:00
flex-wrap: center;
2024-10-07 10:03:34 +02:00
-webkit-box-pack: start;
-ms-flex-pack: start;
2024-09-22 16:28:59 +02:00
justify-content: flex-start;
2024-10-07 10:03:34 +02:00
-webkit-box-align: stretch;
-ms-flex-align: stretch;
2024-09-22 16:28:59 +02:00
align-items: stretch;
text-align: right;
}
.flexshrink {
2024-10-07 10:03:34 +02:00
-webkit-box-flex: 0;
-ms-flex: 0;
2024-09-22 16:28:59 +02:00
flex: 0;
}
.flex-between {
2024-10-07 10:03:34 +02:00
-webkit-box-pack: justify;
-ms-flex-pack: justify;
2024-09-22 16:28:59 +02:00
justify-content: space-between;
}
.flexlarge {
2024-10-07 10:03:34 +02:00
-webkit-box-flex: 2;
-ms-flex: 2;
2024-09-22 16:28:59 +02:00
flex: 2;
}
.align-left {
2024-10-07 10:03:34 +02:00
display: -webkit-box;
display: -ms-flexbox;
2024-09-22 16:28:59 +02:00
display: flex;
2024-10-07 10:03:34 +02:00
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: flex-start;
2024-09-22 16:28:59 +02:00
flex-direction: flex-start;
2024-10-07 10:03:34 +02:00
-ms-flex-wrap: center;
2024-09-22 16:28:59 +02:00
flex-wrap: center;
2024-10-07 10:03:34 +02:00
-webkit-box-pack: start;
-ms-flex-pack: start;
2024-09-22 16:28:59 +02:00
justify-content: flex-start;
2024-10-07 10:03:34 +02:00
-webkit-box-align: stretch;
-ms-flex-align: stretch;
2024-09-22 16:28:59 +02:00
align-items: stretch;
text-align: left;
}
.align-right {
2024-10-07 10:03:34 +02:00
display: -webkit-box;
display: -ms-flexbox;
2024-09-22 16:28:59 +02:00
display: flex;
2024-10-07 10:03:34 +02:00
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: flex-end;
2024-09-22 16:28:59 +02:00
flex-direction: flex-end;
2024-10-07 10:03:34 +02:00
-ms-flex-wrap: center;
2024-09-22 16:28:59 +02:00
flex-wrap: center;
2024-10-07 10:03:34 +02:00
-webkit-box-pack: start;
-ms-flex-pack: start;
2024-09-22 16:28:59 +02:00
justify-content: flex-start;
2024-10-07 10:03:34 +02:00
-webkit-box-align: stretch;
-ms-flex-align: stretch;
2024-09-22 16:28:59 +02:00
align-items: stretch;
text-align: right;
}
.align-center {
2024-10-07 10:03:34 +02:00
display: -webkit-box;
display: -ms-flexbox;
2024-09-22 16:28:59 +02:00
display: flex;
2024-10-07 10:03:34 +02:00
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: center;
2024-09-22 16:28:59 +02:00
flex-direction: center;
2024-10-07 10:03:34 +02:00
-ms-flex-wrap: center;
2024-09-22 16:28:59 +02:00
flex-wrap: center;
2024-10-07 10:03:34 +02:00
-webkit-box-pack: start;
-ms-flex-pack: start;
2024-09-22 16:28:59 +02:00
justify-content: flex-start;
2024-10-07 10:03:34 +02:00
-webkit-box-align: stretch;
-ms-flex-align: stretch;
2024-09-22 16:28:59 +02:00
align-items: stretch;
text-align: center;
}
.right-align-input {
2024-10-07 10:03:34 +02:00
-webkit-box-flex: 1;
-ms-flex: 1;
2024-09-22 16:28:59 +02:00
flex: 1;
margin-left: auto;
max-width: 260px;
}
.window-app {
font-family: "Roboto", sans-serif;
}
.rollable:hover, .rollable:focus {
color: #000;
text-shadow: 0 0 10px rgb(179, 7, 217);
cursor: pointer;
}
.editor-container {
min-height: 200px; /* Adjust this value as needed */
}
2024-09-22 16:28:59 +02:00
/* Styles limited to kidsonbrooms sheets */
2024-12-10 17:22:28 +01:00
.fvtt-never-stop-blowing-up .item-form {
2024-09-22 16:28:59 +02:00
font-family: "Roboto", sans-serif;
}
2024-12-10 17:22:28 +01:00
.fvtt-never-stop-blowing-up .sheet-header {
2024-10-07 10:03:34 +02:00
display: -webkit-box;
display: -ms-flexbox;
2024-09-22 16:28:59 +02:00
display: flex;
2024-10-07 10:03:34 +02:00
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
2024-09-22 16:28:59 +02:00
flex-direction: row;
2024-10-07 10:03:34 +02:00
-ms-flex-wrap: wrap;
2024-09-22 16:28:59 +02:00
flex-wrap: wrap;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
2024-10-07 10:03:34 +02:00
-webkit-box-pack: start;
-ms-flex-pack: start;
2024-09-22 16:28:59 +02:00
justify-content: flex-start;
2024-10-07 10:03:34 +02:00
-webkit-box-flex: 0;
-ms-flex: 0 1 auto;
flex: 0 1 auto;
2024-09-22 16:28:59 +02:00
overflow: hidden;
margin-bottom: 10px;
height: 110px;
2024-09-22 16:28:59 +02:00
}
2024-12-10 17:22:28 +01:00
.fvtt-never-stop-blowing-up .sheet-header .profile-img {
2024-10-07 10:03:34 +02:00
-webkit-box-flex: 0;
-ms-flex: 0 0 100px;
2024-09-22 16:28:59 +02:00
flex: 0 0 100px;
height: 100px;
margin-right: 10px;
}
2024-12-10 17:22:28 +01:00
.fvtt-never-stop-blowing-up .sheet-header .header-fields {
2024-10-07 10:03:34 +02:00
-webkit-box-flex: 1;
-ms-flex: 1;
2024-09-22 16:28:59 +02:00
flex: 1;
}
2024-12-10 17:22:28 +01:00
.fvtt-never-stop-blowing-up .sheet-header h1.charname {
2024-09-22 16:28:59 +02:00
height: 50px;
padding: 0;
margin: 5px 0;
border-bottom: 0;
}
2024-12-10 17:22:28 +01:00
.fvtt-never-stop-blowing-up .sheet-header h1.charname input {
2024-09-22 16:28:59 +02:00
width: 100%;
height: 100%;
margin: 0;
}
2024-12-10 17:22:28 +01:00
.fvtt-never-stop-blowing-up div.editor-border {
2024-09-22 16:28:59 +02:00
border: 2px solid rgb(81, 81, 81);
border-radius: 10px;
}
2024-12-10 17:22:28 +01:00
.fvtt-never-stop-blowing-up .sheet-tabs {
2024-10-07 10:03:34 +02:00
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
2024-09-22 16:28:59 +02:00
}
2024-12-10 17:22:28 +01:00
.fvtt-never-stop-blowing-up .sheet-body,
.fvtt-never-stop-blowing-up .sheet-body .tab,
.fvtt-never-stop-blowing-up .sheet-body .tab .editor {
2024-09-22 16:28:59 +02:00
height: 100%;
}
2024-12-10 17:22:28 +01:00
.fvtt-never-stop-blowing-up .tox .tox-editor-container {
2024-09-22 16:28:59 +02:00
background: #fff;
}
2024-12-10 17:22:28 +01:00
.fvtt-never-stop-blowing-up .tox .tox-edit-area {
2024-09-22 16:28:59 +02:00
padding: 0 8px;
}
2024-12-10 17:22:28 +01:00
.fvtt-never-stop-blowing-up .selection-row {
2024-10-07 10:03:34 +02:00
display: -webkit-box;
display: -ms-flexbox;
2024-09-22 16:28:59 +02:00
display: flex;
2024-10-07 10:03:34 +02:00
-webkit-box-pack: justify;
-ms-flex-pack: justify;
2024-09-22 16:28:59 +02:00
justify-content: space-between;
2024-10-07 10:03:34 +02:00
-webkit-box-align: center;
-ms-flex-align: center;
2024-09-22 16:28:59 +02:00
align-items: center;
margin-bottom: 10px;
}
2024-12-10 17:22:28 +01:00
.fvtt-never-stop-blowing-up .resource-label {
2024-09-22 16:28:59 +02:00
font-weight: bold;
}
2024-12-10 17:22:28 +01:00
.fvtt-never-stop-blowing-up .items-header {
2024-09-22 16:28:59 +02:00
height: 28px;
margin: 2px 0;
padding: 0;
2024-10-07 10:03:34 +02:00
-webkit-box-align: center;
-ms-flex-align: center;
2024-09-22 16:28:59 +02:00
align-items: center;
background: rgba(0, 0, 0, 0.05);
border: 2px groove #eeede0;
font-weight: bold;
}
2024-12-10 17:22:28 +01:00
.fvtt-never-stop-blowing-up .items-header > * {
2024-09-22 16:28:59 +02:00
font-size: 14px;
text-align: center;
}
2024-12-10 17:22:28 +01:00
.fvtt-never-stop-blowing-up .items-header .item-name {
2024-09-22 16:28:59 +02:00
font-weight: bold;
padding-left: 5px;
text-align: left;
2024-10-07 10:03:34 +02:00
display: -webkit-box;
display: -ms-flexbox;
2024-09-22 16:28:59 +02:00
display: flex;
}
2024-12-10 17:22:28 +01:00
.fvtt-never-stop-blowing-up .items-list {
2024-09-22 16:28:59 +02:00
list-style: none;
margin: 0;
padding: 0;
overflow-y: auto;
scrollbar-width: thin;
color: #444;
}
2024-12-10 17:22:28 +01:00
.fvtt-never-stop-blowing-up .items-list .item-list {
2024-09-22 16:28:59 +02:00
list-style: none;
margin: 0;
padding: 0;
}
2024-12-10 17:22:28 +01:00
.fvtt-never-stop-blowing-up .items-list .item {
2024-10-07 10:03:34 +02:00
display: -webkit-box;
display: -ms-flexbox;
2024-09-22 16:28:59 +02:00
display: flex;
2024-10-07 10:03:34 +02:00
-webkit-box-align: center;
-ms-flex-align: center;
2024-09-22 16:28:59 +02:00
align-items: center;
padding: 0 2px;
border-bottom: 1px solid #c9c7b8;
}
2024-12-10 17:22:28 +01:00
.fvtt-never-stop-blowing-up .items-list .item:last-child {
2024-09-22 16:28:59 +02:00
border-bottom: none;
}
2024-12-10 17:22:28 +01:00
.fvtt-never-stop-blowing-up .items-list .item .item-name {
2024-10-07 10:03:34 +02:00
-webkit-box-flex: 2;
-ms-flex: 2;
2024-09-22 16:28:59 +02:00
flex: 2;
margin: 0;
overflow: hidden;
font-size: 13px;
text-align: left;
2024-10-07 10:03:34 +02:00
display: -webkit-box;
display: -ms-flexbox;
2024-09-22 16:28:59 +02:00
display: flex;
color: #191813;
}
2024-12-10 17:22:28 +01:00
.fvtt-never-stop-blowing-up .items-list .item .item-name h3, .fvtt-never-stop-blowing-up .items-list .item .item-name h4 {
2024-09-22 16:28:59 +02:00
margin: 0;
white-space: nowrap;
overflow-x: hidden;
}
2024-12-10 17:22:28 +01:00
.fvtt-never-stop-blowing-up .items-list .item .item-name .item-image {
2024-10-07 10:03:34 +02:00
-webkit-box-flex: 0;
-ms-flex: 0 0 30px;
2024-09-22 16:28:59 +02:00
flex: 0 0 30px;
height: 30px;
background-size: 30px;
border: none;
margin-right: 5px;
}
2024-12-10 17:22:28 +01:00
.fvtt-never-stop-blowing-up .items-list .item-controls {
2024-10-07 10:03:34 +02:00
display: -webkit-box;
display: -ms-flexbox;
2024-09-22 16:28:59 +02:00
display: flex;
2024-10-07 10:03:34 +02:00
-webkit-box-flex: 0;
-ms-flex: 0 0 100px;
2024-09-22 16:28:59 +02:00
flex: 0 0 100px;
2024-10-07 10:03:34 +02:00
-webkit-box-pack: end;
-ms-flex-pack: end;
2024-09-22 16:28:59 +02:00
justify-content: flex-end;
}
2024-12-10 17:22:28 +01:00
.fvtt-never-stop-blowing-up .items-list .item-controls a {
2024-09-22 16:28:59 +02:00
font-size: 12px;
text-align: center;
margin: 0 6px;
}
2024-12-10 17:22:28 +01:00
.fvtt-never-stop-blowing-up .items-list .item-prop {
2024-09-22 16:28:59 +02:00
text-align: center;
border-left: 1px solid #c9c7b8;
border-right: 1px solid #c9c7b8;
font-size: 12px;
}
2024-12-10 17:22:28 +01:00
.fvtt-never-stop-blowing-up .items-list .items-header {
2024-09-22 16:28:59 +02:00
height: 28px;
margin: 2px 0;
padding: 0;
2024-10-07 10:03:34 +02:00
-webkit-box-align: center;
-ms-flex-align: center;
2024-09-22 16:28:59 +02:00
align-items: center;
background: rgba(0, 0, 0, 0.05);
border: 2px groove #eeede0;
font-weight: bold;
}
2024-12-10 17:22:28 +01:00
.fvtt-never-stop-blowing-up .items-list .items-header > * {
2024-09-22 16:28:59 +02:00
font-size: 12px;
text-align: center;
}
2024-12-10 17:22:28 +01:00
.fvtt-never-stop-blowing-up .items-list .items-header .item-name {
2024-09-22 16:28:59 +02:00
padding-left: 5px;
text-align: left;
}
2024-12-10 17:22:28 +01:00
.fvtt-never-stop-blowing-up .item-formula {
2024-10-07 10:03:34 +02:00
-webkit-box-flex: 0;
-ms-flex: 0 0 200px;
2024-09-22 16:28:59 +02:00
flex: 0 0 200px;
padding: 0 8px;
}
2024-12-10 17:22:28 +01:00
.fvtt-never-stop-blowing-up .effects .item .effect-source,
.fvtt-never-stop-blowing-up .effects .item .effect-duration,
.fvtt-never-stop-blowing-up .effects .item .effect-controls {
2024-09-22 16:28:59 +02:00
text-align: center;
border-left: 1px solid #c9c7b8;
border-right: 1px solid #c9c7b8;
font-size: 12px;
}
2024-12-10 17:22:28 +01:00
.fvtt-never-stop-blowing-up .effects .item .effect-controls {
2024-09-22 16:28:59 +02:00
border: none;
}
2024-12-10 17:22:28 +01:00
.fvtt-never-stop-blowing-up .fvtt-never-stop-blowing-up input:focus,
.fvtt-never-stop-blowing-up .fvtt-never-stop-blowing-up textarea:focus,
.fvtt-never-stop-blowing-up .fvtt-never-stop-blowing-up select:focus {
2024-09-22 16:28:59 +02:00
outline: none;
border-color: #8102dd;
2024-12-10 17:22:28 +01:00
}