Files
tagslice/tagslice.css

74 lines
1.0 KiB
CSS
Raw Normal View History

2017-06-12 22:28:42 +00:00
@import url('https://fonts.googleapis.com/css?family=Roboto');
2017-06-12 20:23:51 +00:00
:root {
/* Highly approximate color names from our pallette */
--orange: rgb(255,153,0);
--black: rgb(66,66,66);
2017-06-12 22:28:42 +00:00
--white: rgb(255,255,255);
--lightgrey: rgb(233,233,233);
--darkgrey: 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);
2017-06-12 22:28:42 +00:00
flex-direction: column;
2017-06-12 20:23:51 +00:00
}
2017-06-12 22:28:42 +00:00
tag {
2017-06-12 20:23:51 +00:00
display: block;
2017-06-12 22:28:42 +00:00
padding: 3px;
border: 1px solid var(--darkgrey);
border-radius: 8px;
background-color: var(--lightgrey);
2017-06-12 20:23:51 +00:00
color: var(--blue);
2017-06-12 22:28:42 +00:00
font-family: 'Roboto';
font-size: small;
text-align: center;
cursor: move;
user-select: none;
}
tag.placeholder {
opacity: 0.7;
}
objectlist {
display: block;
padding: 5px;
flex-grow: 1;
}