memex/asset/style.css

106 lines
1.4 KiB
CSS
Raw Normal View History

2018-07-13 15:56:09 +00:00
html {
background:#DCDCDC;
font-family:'Monaco', 'Andale Mono', 'Deja Vu Sans Mono', 'Consolas', monospace;
font-size:1em;
2018-07-14 10:07:08 +00:00
box-sizing: border-box;
padding: 0em;
margin:0;
2018-07-13 15:56:09 +00:00
}
body {
padding: 0em;
margin:0;
2018-07-14 09:24:25 +00:00
}
* { box-sizing: border-box; }
2018-07-14 10:07:08 +00:00
.grid {
/* center */
margin: 0 auto;
margin-top: 20px;
2018-07-14 10:07:08 +00:00
}
/* clearfix */
.grid:after {
content: '';
display: block;
clear: both;
2018-07-14 10:07:08 +00:00
}
.grid-item {
width: 350px;
float: left;
margin-bottom: 20px;
border-radius: 2px;
2018-07-14 10:07:08 +00:00
}
2018-07-13 15:56:09 +00:00
/* LINK */
2018-07-14 15:02:57 +00:00
a#url {
2018-07-13 15:56:09 +00:00
color:#000;
text-decoration:underline;
}
a#urlseen {
color:#666;
}
2018-07-14 15:02:57 +00:00
a#url:hover, a#urlseen:hover {
color:#DCDCDC;
background-color: #000;
}
2018-07-13 15:56:09 +00:00
/* ENTRY */
2018-07-14 12:02:18 +00:00
.grid-item {
2018-07-13 15:56:09 +00:00
color:#000;
background:#999;
2018-07-14 15:02:57 +00:00
padding:20px;
2018-07-13 15:56:09 +00:00
min-height:2.4em;
2018-07-14 09:24:25 +00:00
float:left;
2018-07-13 15:56:09 +00:00
}
2018-07-14 15:02:57 +00:00
/* TITLE */
.title {
margin-right: 45px;
font-size:1em;
2018-07-13 15:56:09 +00:00
color:#000;
2018-07-14 15:02:57 +00:00
/*background-color: #000;*/
2018-07-13 15:56:09 +00:00
}
2018-07-14 15:02:57 +00:00
/* LINK, NOTE, QUOTE, TERM, TAGS */
.link, .note, .quote, .term, .tags, .prog {
2018-07-13 15:56:09 +00:00
padding-top: 1em;
font-size:0.8em;
color:#000;
}
2018-07-14 15:02:57 +00:00
.tags a {
color:#000;
text-decoration:none;
}
.tags a:hover {
color:#DCDCDC;
background-color: #000;
}
2018-07-14 12:02:18 +00:00
/* TYPE */
2018-07-14 15:02:57 +00:00
#type a {
2018-07-14 12:02:18 +00:00
text-align: center;
vertical-align: top;
2018-07-14 15:02:57 +00:00
width: 70px;
height: 62px;
2018-07-14 12:02:18 +00:00
position: absolute;
2018-07-14 15:02:57 +00:00
padding-top: 18px;
top: 0px;
right: 0px;
color:#888;
2018-07-14 12:02:18 +00:00
font-size:1.5em;
2018-07-14 15:02:57 +00:00
/*background: #000;*/
}
#type a:hover {
color:#000;
text-decoration:none;
}
.textIcon {
color:#888;
margin-right:0.75em;
2018-07-13 15:56:09 +00:00
}