Files
tagslice/tagslice.css

58 lines
782 B
CSS
Raw Normal View History

2017-06-12 20:23:51 +00:00
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500');
: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);
2017-06-12 20:23:51 +00:00
font-family: 'Roboto';
flex-direction: row;
}
taglist {
2017-06-12 20:23:51 +00:00
display: flex;
border-right: 2px solid var(--orange);
flex-shrink: 0;
2017-06-12 20:23:51 +00:00
flex-direction: column;
}
tagsection {
display: flex;
padding: 5px;
border-bottom: 1px solid var(--orange);
flex-direction: column
}
tagsectiontitle {
display: block;
color: var(--blue);
font-weight: 500;
}
objectlist {
display: block;
padding: 5px;
flex-grow: 1;
}