Rename .css to .styles to match the .=compiled pattern
This commit is contained in:
parent
25e3fa1bb8
commit
c0d677cd77
8 changed files with 27 additions and 9 deletions
157
.css/root.css
157
.css/root.css
|
|
@ -1,157 +0,0 @@
|
|||
@import url("https://fonts.googleapis.com/css2?family=Pixelify+Sans&display=swap");
|
||||
.dotdungeon > .window-content h2, .dotdungeon > .window-content h3, .dotdungeon > .window-content h4, .dotdungeon > .window-content h5, .dotdungeon > .window-content h6 {
|
||||
all: initial;
|
||||
display: block;
|
||||
font-family: "Pixelify Sans", sans-serif;
|
||||
margin: 0;
|
||||
}
|
||||
.dotdungeon > .window-content button, .dotdungeon > .window-content button:hover {
|
||||
all: initial;
|
||||
font-family: inherit;
|
||||
cursor: pointer;
|
||||
}
|
||||
.dotdungeon > .window-content select, .dotdungeon > .window-content select:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.dotdungeon {
|
||||
container-type: size;
|
||||
}
|
||||
.dotdungeon > .window-content {
|
||||
padding: 0;
|
||||
background: #f2f2f2;
|
||||
}
|
||||
|
||||
.dotdungeon .stat {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
.dotdungeon .skill {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: left;
|
||||
align-items: center;
|
||||
}
|
||||
.dotdungeon .skill-group {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
margin-bottom: 8px;
|
||||
gap: 4px;
|
||||
}
|
||||
.dotdungeon .skill-group h3 {
|
||||
margin-top: 8px;
|
||||
font-size: 1.2em;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.dotdungeon .actor--pc {
|
||||
display: grid;
|
||||
grid-template-areas: "avatar stats stats" "avatar skills skills" "backpack skills skills" "backpack sync aspect" "backpack weapons aspect" "backpack weapons spells" "backpack roles spells" "summons roles mounts" "summons roles storage";
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
grid-template-rows: repeat(9, minmax(0, 1fr));
|
||||
padding: 4px;
|
||||
gap: 4px;
|
||||
}
|
||||
.dotdungeon .actor--pc .panel--avatar {
|
||||
grid-area: avatar;
|
||||
}
|
||||
.dotdungeon .actor--pc .panel--stats {
|
||||
grid-area: stats;
|
||||
}
|
||||
.dotdungeon .actor--pc .panel--stats .panel__content {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 8px;
|
||||
justify-content: space-evenly;
|
||||
padding: 8px;
|
||||
}
|
||||
.dotdungeon .actor--pc .panel--skills {
|
||||
grid-area: skills;
|
||||
}
|
||||
.dotdungeon .actor--pc .panel--skills .panel__content {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
grid-template-rows: repeat(2, minmax(0, min-content));
|
||||
}
|
||||
.dotdungeon .actor--pc .panel--backpack {
|
||||
grid-area: backpack;
|
||||
}
|
||||
.dotdungeon .actor--pc .panel--sync {
|
||||
grid-area: sync;
|
||||
}
|
||||
.dotdungeon .actor--pc .panel--aspect {
|
||||
grid-area: aspect;
|
||||
}
|
||||
.dotdungeon .actor--pc .panel--weapons {
|
||||
grid-area: weapons;
|
||||
}
|
||||
.dotdungeon .actor--pc .panel--roles {
|
||||
grid-area: roles;
|
||||
}
|
||||
.dotdungeon .actor--pc .panel--spells {
|
||||
grid-area: spells;
|
||||
}
|
||||
.dotdungeon .actor--pc .panel--mounts {
|
||||
grid-area: mounts;
|
||||
}
|
||||
.dotdungeon .actor--pc .panel--summons {
|
||||
grid-area: summons;
|
||||
}
|
||||
.dotdungeon .actor--pc .panel--storage {
|
||||
grid-area: storage;
|
||||
}
|
||||
.dotdungeon .panel {
|
||||
border: 2px solid black;
|
||||
background: greenyellow;
|
||||
}
|
||||
.dotdungeon .panel__header {
|
||||
background: black;
|
||||
color: white;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
gap: 4px;
|
||||
}
|
||||
.dotdungeon .panel__header h2 {
|
||||
all: initial;
|
||||
color: inherit;
|
||||
flex-grow: 1;
|
||||
padding-left: 8px;
|
||||
font-family: "Pixelify Sans", sans-serif;
|
||||
font-size: 20px;
|
||||
}
|
||||
.dotdungeon .panel__header .icon {
|
||||
height: 32px;
|
||||
width: 32px;
|
||||
aspect-ratio: 1/1;
|
||||
}
|
||||
|
||||
@container (max-width: 550px) {
|
||||
.dotdungeon .actor--pc {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
grid-template-rows: repeat(15, minmax(0, 1fr));
|
||||
grid-template-areas: "avatar sync" "avatar skills" "stats skills" "stats skills" "weapons aspect" "weapons aspect" "backpack aspect" "backpack roles" "backpack roles" "backpack roles" "backpack spells" "summons spells" "summons storage" "mounts storage" "mounts storage";
|
||||
}
|
||||
.dotdungeon .panel {
|
||||
background: yellowgreen;
|
||||
}
|
||||
.dotdungeon .panel--stats .panel__content {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
}
|
||||
@container (max-width: 400px) {
|
||||
.dotdungeon .actor--pc {
|
||||
grid-template-columns: 1fr;
|
||||
grid-template-areas: "stats" "skills";
|
||||
}
|
||||
.dotdungeon .panel {
|
||||
background: blueviolet;
|
||||
}
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22../styles/root.scss%22,%22../styles/mixins/_foundry.scss%22,%22../styles/vars.scss%22,%22../styles/sheets/partials/stat.scss%22,%22../styles/sheets/partials/skill.scss%22,%22../styles/sheets/actor/mvp.scss%22,%22../styles/mixins/_breakpoints.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAGQ;AAIP;ECNA;EDQC;EACA,aEVW;EFWX;;AAGD;ECbA;EDeC;EACA;;AAGD;EACC;;;AAKF;EACC;;AAEA;EACC;EACA,YE9BW;;;ACDb;EACC;EACA;EACA;;ACHD;EACC;EACA;EACA;EACA;;AAEA;EACC;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;EACA;EACA;;;ACdF;EACC;EACA,qBACC;EASD;EACA;EACA;EACA;;AAGC;EACC;;AAED;EACC;;AACA;EACC;EACA;EACA;EACA;EACA;;AAGF;EACC;;AAEA;EACC;EACA;EACA;;AAGF;EACC;;AAED;EACC;;AAED;EACC;;AAED;EACC;;AAED;EACC;;AAED;EACC;;AAED;EACC;;AAED;EACC;;AAED;EACC;;AAKH;EACC;EACA;;AAEA;EACC;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;EACA;EACA;EACA,aH5FS;EG6FT;;AAGD;EAEC,QADO;EAEP,OAFO;EAGP;;;AC7FH;EDsGC;IACC;IACA;IACA,qBACC;;EAiBF;IACC;;EAGC;IACC;;;AC1HJ;EDmIC;IACC;IACA,qBACC;;EAGF;IACC%22,%22file%22:%22root.css%22%7D */
|
||||
Loading…
Add table
Add a link
Reference in a new issue