mirror of
https://github.com/TangentFoxy/memex.git
synced 2024-11-22 04:54:23 +00:00
105 lines
1.6 KiB
CSS
105 lines
1.6 KiB
CSS
html {
|
|
background:#ddd;
|
|
font-family:'Monaco', 'Andale Mono', 'Deja Vu Sans Mono', 'Consolas', monospace;
|
|
font-size:1em;
|
|
box-sizing: border-box;
|
|
padding: 0em;
|
|
margin:0;
|
|
}
|
|
|
|
body {
|
|
padding: 0em;
|
|
margin:0;
|
|
}
|
|
|
|
* { box-sizing: border-box; }
|
|
|
|
.grid {
|
|
/* center */
|
|
margin: 0 auto;
|
|
margin-top: 20px;
|
|
}
|
|
/* clearfix */
|
|
.grid:after {
|
|
content: '';
|
|
display: block;
|
|
clear: both;
|
|
}
|
|
|
|
.grid-item {
|
|
width: 350px;
|
|
margin-bottom: 20px;
|
|
border-radius: 2px;
|
|
color:#000;
|
|
background:#ccc;
|
|
padding:20px;
|
|
min-height:2.4em;
|
|
float:left;
|
|
/*box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, .05);*/
|
|
}
|
|
|
|
/* LINK */
|
|
a#url {
|
|
color:#000;
|
|
padding-top: 0.5em;
|
|
padding-bottom: 0.5em;
|
|
text-decoration:underline;
|
|
}
|
|
a#urlseen {
|
|
color:#666;
|
|
padding-top: 0.5em;
|
|
padding-bottom: 0.5em;
|
|
text-decoration:underline;
|
|
}
|
|
a#url:hover, a#urlseen:hover {
|
|
color:#DCDCDC;
|
|
background-color: #000;
|
|
}
|
|
|
|
/* TITLE */
|
|
.title {
|
|
margin-right: 45px;
|
|
font-size:1em;
|
|
color:#000;
|
|
/*background-color: #000;*/
|
|
}
|
|
|
|
/* LINK, NOTE, QUOTE, TERM, TAGS */
|
|
.link, .note, .quote, .term, .tags, .prog {
|
|
padding-top: 1em;
|
|
font-size:0.8em;
|
|
color:#000;
|
|
}
|
|
.tags a {
|
|
padding-top: 0.5em;
|
|
padding-bottom: 0.5em;
|
|
color:#000;
|
|
text-decoration:none;
|
|
}
|
|
.tags a:hover {
|
|
color:#DCDCDC;
|
|
background-color: #000;
|
|
}
|
|
.textIcon {
|
|
color:#888;
|
|
margin-right:0.75em;
|
|
}
|
|
|
|
/* TYPE */
|
|
#type a {
|
|
text-align: center;
|
|
vertical-align: top;
|
|
width: 70px;
|
|
height: 62px;
|
|
position: absolute;
|
|
padding-top: 18px;
|
|
top: 0px;
|
|
right: 0px;
|
|
color:#bbb;
|
|
font-size:1.5em;
|
|
/*background: #000;*/
|
|
}
|
|
#type a:hover {
|
|
color:#000;
|
|
text-decoration:none;
|
|
} |