2013-04-09 13:18:39 +00:00
|
|
|
/*** GENERAL ***/
|
2013-04-03 13:14:01 +00:00
|
|
|
body {
|
|
|
|
color: #222222;
|
|
|
|
font: 20px/1.3em Palatino,Georgia,serif;
|
2013-04-05 13:30:50 +00:00
|
|
|
background-color: #F1F1F1;
|
2013-04-08 07:44:45 +00:00
|
|
|
margin: 10px;
|
2013-04-05 13:30:50 +00:00
|
|
|
}
|
|
|
|
|
2013-04-03 13:14:01 +00:00
|
|
|
|
|
|
|
a, a:hover, a:visited {
|
|
|
|
color: #000;
|
|
|
|
}
|
2013-04-09 13:18:39 +00:00
|
|
|
|
2013-04-03 13:14:01 +00:00
|
|
|
header {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#main ul#links {
|
|
|
|
padding: 0;
|
|
|
|
list-style-type: none;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#main ul#links li {
|
|
|
|
display: inline;
|
2013-04-08 07:44:45 +00:00
|
|
|
}
|
2013-04-09 09:49:22 +00:00
|
|
|
|
|
|
|
#main ul#links li a.current {
|
|
|
|
-webkit-border-radius: 2px;
|
|
|
|
border-radius: 2px;
|
|
|
|
background-color: #040707;
|
|
|
|
color: #F1F1F1;
|
|
|
|
}
|
|
|
|
|
2013-04-09 13:18:39 +00:00
|
|
|
#main, #article {
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
2013-04-08 12:25:55 +00:00
|
|
|
#links a, .backhome a{
|
2013-04-08 07:44:45 +00:00
|
|
|
text-decoration: none;
|
|
|
|
padding: 5px 10px;
|
|
|
|
}
|
2013-04-08 17:09:56 +00:00
|
|
|
#links a:hover, .backhome a:hover{
|
2013-04-08 07:44:45 +00:00
|
|
|
-webkit-border-radius: 2px;
|
|
|
|
border-radius: 2px;
|
|
|
|
background-color: #040707;
|
|
|
|
color: #F1F1F1;
|
2013-04-03 13:14:01 +00:00
|
|
|
}
|
|
|
|
|
2013-04-09 13:18:39 +00:00
|
|
|
#content {
|
2013-04-12 09:33:34 +00:00
|
|
|
width: 800px;
|
2013-04-09 13:18:39 +00:00
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-12 09:33:34 +00:00
|
|
|
footer {
|
|
|
|
text-align: right;
|
2013-04-09 13:18:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*** ***/
|
|
|
|
/*** LINKS DISPLAY ***/
|
|
|
|
|
|
|
|
#main a.tool {
|
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2013-04-15 12:09:58 +00:00
|
|
|
input[type=submit].delete {
|
2013-04-15 13:09:00 +00:00
|
|
|
background : url('../img/remove.png') no-repeat center center;
|
2013-04-15 12:09:58 +00:00
|
|
|
width : 16px;
|
|
|
|
height :16px;
|
|
|
|
border : none;
|
|
|
|
color : transparent;
|
|
|
|
cursor: pointer;
|
|
|
|
font-size : 0;
|
|
|
|
}
|
|
|
|
|
2013-04-12 09:33:34 +00:00
|
|
|
#main #content {
|
2013-04-05 13:30:50 +00:00
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
|
2013-04-12 09:33:34 +00:00
|
|
|
#main .entrie {
|
2013-04-05 13:30:50 +00:00
|
|
|
color: rgb(46, 46, 46);
|
|
|
|
position:relative;
|
|
|
|
background-color: #ffffff;
|
2013-04-08 07:44:45 +00:00
|
|
|
padding: 15px;
|
2013-04-12 09:33:34 +00:00
|
|
|
min-height: 8em;
|
2013-04-08 07:44:45 +00:00
|
|
|
-webkit-border-radius: 2px;
|
|
|
|
border-radius: 2px;
|
2013-04-15 12:09:58 +00:00
|
|
|
-webkit-box-shadow: 0px 0px 6px -1px #000;
|
|
|
|
box-shadow: 0px 0px 6px -1px #000;
|
2013-04-12 09:33:34 +00:00
|
|
|
width: 30%;
|
|
|
|
margin: 10px;
|
|
|
|
float: left;
|
2013-04-05 13:30:50 +00:00
|
|
|
}
|
2013-04-15 12:09:58 +00:00
|
|
|
#main .entrie h2 {
|
|
|
|
width: 95%;
|
|
|
|
}
|
2013-04-12 09:33:34 +00:00
|
|
|
#main .entrie h2 a {
|
2013-04-05 13:30:50 +00:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2013-04-12 09:33:34 +00:00
|
|
|
#main .entrie h2 a:hover {
|
2013-04-05 13:30:50 +00:00
|
|
|
color: #F5BE00;
|
|
|
|
}
|
|
|
|
|
2013-04-15 12:09:58 +00:00
|
|
|
.tools {
|
|
|
|
position: absolute;
|
|
|
|
top: 20px;
|
|
|
|
right: 20px;
|
|
|
|
width: 30px;
|
2013-04-05 13:30:50 +00:00
|
|
|
text-align: right;
|
2013-04-15 12:09:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.tools ul {
|
|
|
|
padding: 0; margin: 0;
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tools ul li {
|
|
|
|
line-height: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tools a.tool {
|
|
|
|
cursor: pointer;
|
2013-04-05 13:30:50 +00:00
|
|
|
}
|
|
|
|
|
2013-04-12 11:13:21 +00:00
|
|
|
#article .tools {
|
2013-04-15 12:09:58 +00:00
|
|
|
position: relative;
|
2013-04-12 11:13:21 +00:00
|
|
|
display: inline;
|
2013-04-15 12:09:58 +00:00
|
|
|
top: 0px;
|
|
|
|
right: 0px;
|
|
|
|
width: 100%;
|
|
|
|
text-align: left;
|
2013-04-12 11:13:21 +00:00
|
|
|
}
|
|
|
|
|
2013-04-15 12:09:58 +00:00
|
|
|
#article.tools ul li{
|
|
|
|
display: inline;
|
2013-04-12 11:13:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#main .entrie .tools a.tool span, #article .tools a.tool span {
|
2013-04-09 13:18:39 +00:00
|
|
|
display: inline-block;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.fav span {
|
2013-04-15 13:09:00 +00:00
|
|
|
background: url('../img/star-on.png') no-repeat;
|
2013-04-09 13:18:39 +00:00
|
|
|
}
|
|
|
|
|
2013-04-12 11:13:21 +00:00
|
|
|
a.fav span:hover {
|
2013-04-15 13:09:00 +00:00
|
|
|
background: url('../img/star-off.png') no-repeat;
|
2013-04-12 11:13:21 +00:00
|
|
|
}
|
|
|
|
|
2013-04-09 13:18:39 +00:00
|
|
|
a.fav-off span {
|
2013-04-15 13:09:00 +00:00
|
|
|
background: url('../img/star-off.png') no-repeat;
|
2013-04-09 13:18:39 +00:00
|
|
|
}
|
|
|
|
|
2013-04-12 11:13:21 +00:00
|
|
|
a.fav-off span:hover {
|
2013-04-15 13:09:00 +00:00
|
|
|
background: url('../img/star-on.png') no-repeat;
|
2013-04-12 11:13:21 +00:00
|
|
|
}
|
|
|
|
|
2013-04-09 13:18:39 +00:00
|
|
|
a.archive span {
|
2013-04-15 13:09:00 +00:00
|
|
|
background: url('../img/checkmark-on.png') no-repeat;
|
2013-04-09 13:18:39 +00:00
|
|
|
}
|
|
|
|
|
2013-04-12 11:13:21 +00:00
|
|
|
a.archive span:hover {
|
2013-04-15 13:09:00 +00:00
|
|
|
background: url('../img/checkmark-off.png') no-repeat;
|
2013-04-12 11:13:21 +00:00
|
|
|
}
|
|
|
|
|
2013-04-09 13:18:39 +00:00
|
|
|
a.archive-off span {
|
2013-04-15 13:09:00 +00:00
|
|
|
background: url('../img/checkmark-off.png') no-repeat;
|
2013-04-09 13:18:39 +00:00
|
|
|
}
|
|
|
|
|
2013-04-12 11:13:21 +00:00
|
|
|
a.archive-off span:hover {
|
2013-04-15 13:09:00 +00:00
|
|
|
background: url('../img/checkmark-on.png') no-repeat;
|
2013-04-09 13:18:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*** ***/
|
|
|
|
/*** ARTICLE PAGE ***/
|
|
|
|
|
|
|
|
body.article {
|
|
|
|
color: #222222;
|
|
|
|
font: 20px/1.3em Palatino,Georgia,serif;
|
|
|
|
background-color: #F1F1F1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#article header {
|
|
|
|
text-align: left;
|
|
|
|
border-bottom: 1px solid #222222;
|
|
|
|
}
|
|
|
|
|
|
|
|
#article header a {
|
2013-04-03 13:14:01 +00:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2013-04-09 13:18:39 +00:00
|
|
|
#article article {
|
|
|
|
border-bottom: 1px solid #222222;
|
|
|
|
}
|
|
|
|
|
|
|
|
.vieworiginal a {
|
|
|
|
color: #888888;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2013-04-12 11:13:21 +00:00
|
|
|
.backhome {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
2013-04-12 09:33:34 +00:00
|
|
|
/*** ***/
|
|
|
|
#main
|
|
|
|
{
|
|
|
|
max-width: 60em; /* 960 px */
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
#content
|
|
|
|
{
|
|
|
|
width: 103.125%; /* 990px */
|
|
|
|
overflow: hidden;
|
|
|
|
margin-left: -1.562%; /* 15px */
|
|
|
|
margin-bottom: -1.875em; /* 30px */
|
|
|
|
}
|
|
|
|
.entrie
|
|
|
|
{
|
|
|
|
width: 30.303%; /* 300px */
|
|
|
|
float: left;
|
|
|
|
margin: 0 1.515% 1.875em; /* 15px 30px */
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and ( max-width: 40em ) /* 640px */
|
|
|
|
{
|
|
|
|
.entrie
|
|
|
|
{
|
|
|
|
width: 46.876%; /* 305px */
|
|
|
|
margin-bottom: 0.938em; /* 15px */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media only screen and ( max-width: 20em ) /* 640px */
|
|
|
|
{
|
|
|
|
#content
|
|
|
|
{
|
|
|
|
width: 100%;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
.entrie
|
|
|
|
{
|
|
|
|
width: 100%;
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
}
|