memex/asset/style.css
2018-07-14 21:24:25 +12:00

69 lines
1.1 KiB
CSS

html {
background:#DCDCDC;
font-family:'Monaco', 'Andale Mono', 'Deja Vu Sans Mono', 'Consolas', monospace;
font-size:1em;
}
/*#content div:nth-child(4n+1) {
grid-column-end: span 2;
grid-row-end: span 2;
}
#content div:nth-child(2) {
grid-column: 3;
grid-row: 2 / 4;
}
#content div:nth-child(5) {
grid-column: 1 / 3;
grid-row: 1 / 3;
}*/
#content {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-auto-rows: 100px;
grid-gap: 10px;
grid-auto-flow: dense;
}
/* LINK */
a {
color:#000;
text-decoration:underline;
}
#entryImportant a {
color:#fff;
}
a#urlseen {
color:#666;
}
/* ENTRY */
#entry, #entryImportant {
color:#000;
background:#999;
padding:0.5em;
min-height:2.4em;
float:left;
}
#entryImportant {
color:#DCDCDC;
background:#333333;
}
/* TAGS */
#tags {
font-size:0.8em;
color:#000;
}
#entryImportant #tags {
color:#808080;
}
/* NOTE, QUOTE, TERM */
#note, #quote, #term {
padding-top: 1em;
font-size:0.8em;
color:#000;
}
#entryImportant #note, #entryImportant #quote, #entryImportant #term {
color:#808080;
}