Files
tagslice/tagslice.css
2017-06-12 20:08:32 +00:00

38 lines
483 B
CSS

: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;
}