Get the module foundations and the Artist app created
This commit is contained in:
parent
8744b6c562
commit
ffa2162fbd
20 changed files with 590 additions and 0 deletions
48
styles/apps/ArtistApp.css
Normal file
48
styles/apps/ArtistApp.css
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
.token-browser.ArtistApp {
|
||||
> .window-content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
color: var(--color-form-label);
|
||||
}
|
||||
|
||||
label, .label {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
footer {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.large {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
ul {
|
||||
display: flex;
|
||||
flex-flow: row wrap;
|
||||
gap: 8px;
|
||||
|
||||
li {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
gap: 4px;
|
||||
padding: 2px 4px;
|
||||
background: var(--content-link-background);
|
||||
color: var(--content-link-text-color);
|
||||
border: 1px solid var(--content-link-border-color);
|
||||
border-radius: 4px;
|
||||
|
||||
button {
|
||||
padding: 0;
|
||||
border: none;
|
||||
min-height: 0;
|
||||
height: 1rem;
|
||||
width: 1rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
7
styles/elements/lists.css
Normal file
7
styles/elements/lists.css
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
.token-browser > .window-content {
|
||||
ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
}
|
||||
9
styles/elements/utils.css
Normal file
9
styles/elements/utils.css
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
.token-browser > .window-content {
|
||||
.row {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
.grow { flex-grow: 1 }
|
||||
}
|
||||
11
styles/main.css
Normal file
11
styles/main.css
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
@layer resets, elements, apps;
|
||||
|
||||
/* Resets */
|
||||
@import url("./resets/lists.css") layer(resets);
|
||||
|
||||
/* Elements */
|
||||
@import url("./elements/utils.css") layer(elements);
|
||||
@import url("./elements/lists.css") layer(elements);
|
||||
|
||||
/* Apps */
|
||||
@import url("./apps/ArtistApp.css") layer(apps);
|
||||
5
styles/resets/lists.css
Normal file
5
styles/resets/lists.css
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
.token-browser > .window-content {
|
||||
li {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue