More style, create dom, better class structure
This commit is contained in:
37
tagslice.css
37
tagslice.css
@@ -0,0 +1,37 @@
|
||||
:root {
|
||||
/* Highly approximate color names from our pallette */
|
||||
--orange: rgb(255,153,0);
|
||||
--black: rgb(66,66,66);
|
||||
--white: rgb(233,233,233);
|
||||
--grey: rgb(188,188,188);
|
||||
--blue: rgb(50,153,187);
|
||||
}
|
||||
|
||||
outer {
|
||||
display: flex;
|
||||
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
||||
background-color: var(--white);
|
||||
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
taglist {
|
||||
display: block;
|
||||
|
||||
padding: 5px;
|
||||
|
||||
border-right: 2px solid var(--orange);
|
||||
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
objectlist {
|
||||
display: block;
|
||||
|
||||
padding: 5px;
|
||||
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user