Notes/static/css/main.css
Magnus Åhall c255b58335 Wip
2023-06-17 09:11:14 +02:00

63 lines
1.0 KiB
CSS

html,
body {
margin: 0px;
padding: 0px;
font-family: 'Liberation Mono', monospace;
font-size: 14pt;
background-color: #494949;
}
h1 {
color: #ecbf00;
}
#app {
color: #fff;
}
.crumbs {
display: flex;
flex-wrap: wrap;
padding: 8px 16px;
background: #ecbf00;
color: #000;
box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.4);
}
.crumbs .crumb {
margin-right: 8px;
font-size: 0.8em;
cursor: pointer;
}
.crumbs .crumb:after {
content: ">";
margin-left: 8px;
color: #a08100;
}
.crumbs .crumb:last-child {
margin-right: 0;
}
.crumbs .crumb:last-child:after {
content: '';
margin-left: 0px;
}
.child-nodes {
display: flex;
flex-wrap: wrap;
padding: 16px 16px 0px 16px;
background-color: #3c3c3c;
box-shadow: 0px 0px 16px -4px rgba(0, 0, 0, 0.55) inset;
}
.child-nodes .child-node {
padding: 8px;
border-radius: 8px;
background-color: #292929;
margin-right: 16px;
margin-bottom: 16px;
white-space: nowrap;
font-size: 0.8em;
cursor: pointer;
}
.node-name {
padding: 16px;
}
.node-content {
padding: 32px;
}