2014-07-05 22:47:19 +02:00
|
|
|
@-ms-viewport { width: device-width; }
|
2013-03-17 18:16:25 -04:00
|
|
|
figure,
|
2013-02-17 21:48:21 -05:00
|
|
|
li,
|
|
|
|
ul,
|
|
|
|
table,
|
|
|
|
tr,
|
|
|
|
td,
|
|
|
|
th,
|
|
|
|
p,
|
|
|
|
blockquote,
|
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
font-size: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
margin: 0 auto;
|
2014-11-08 12:55:30 -05:00
|
|
|
padding-left: 10px;
|
|
|
|
padding-right: 10px;
|
2014-11-07 21:44:20 -05:00
|
|
|
margin-bottom: 30px;
|
2013-08-29 19:34:11 -04:00
|
|
|
max-width: 780px;
|
2013-02-17 21:48:21 -05:00
|
|
|
color: #333;
|
|
|
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
2013-03-17 18:16:25 -04:00
|
|
|
text-rendering: optimizeLegibility;
|
2013-02-17 21:48:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: #3366CC;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:focus {
|
|
|
|
outline: 0;
|
|
|
|
color: red;
|
|
|
|
text-decoration: none;
|
|
|
|
border: 1px dotted #aaa;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
2013-07-07 11:45:48 -04:00
|
|
|
color: #333;
|
2013-02-17 21:48:21 -05:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1, h2, h3 {
|
|
|
|
font-weight: normal;
|
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-size: 1.6em;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
font-size: 1.2em;
|
|
|
|
}
|
|
|
|
|
2013-08-04 12:17:10 -04:00
|
|
|
h5, h6 {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2013-03-17 18:16:25 -04:00
|
|
|
blockquote {
|
|
|
|
border-left: 4px solid #ddd;
|
|
|
|
padding-left: 25px;
|
|
|
|
margin-left: 20px;
|
|
|
|
margin-top: 20px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
color: #777;
|
|
|
|
line-height: 1.4em;
|
|
|
|
font-family: Georgia, serif;
|
|
|
|
}
|
|
|
|
|
2013-04-24 20:00:02 -04:00
|
|
|
q {
|
|
|
|
color: purple;
|
|
|
|
font-family: Georgia, serif;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
2013-03-17 18:16:25 -04:00
|
|
|
blockquote + p {
|
|
|
|
color: #555;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
figcaption {
|
|
|
|
font-size: 0.8em;
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: #777;
|
|
|
|
}
|
|
|
|
|
|
|
|
table {
|
|
|
|
width: 100%;
|
|
|
|
border-collapse: collapse;
|
|
|
|
border-spacing: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
table caption {
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 1.0em;
|
|
|
|
text-align: left;
|
|
|
|
padding-bottom: 0.5em;
|
|
|
|
padding-top: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
th,
|
|
|
|
td {
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
padding-top: 0.5em;
|
|
|
|
padding-bottom: 0.5em;
|
|
|
|
padding-left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
th {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2013-08-07 20:18:48 -04:00
|
|
|
pre, code {
|
2013-03-17 18:16:25 -04:00
|
|
|
background: #f0f0f0;
|
2013-08-07 20:18:48 -04:00
|
|
|
border: 1px solid #ccc;
|
|
|
|
font-family: monospace;
|
2013-03-17 18:16:25 -04:00
|
|
|
color: brown;
|
2013-08-29 19:34:11 -04:00
|
|
|
line-height: 1.3em;
|
2013-08-07 20:18:48 -04:00
|
|
|
border-radius: 5px;
|
2013-03-17 18:16:25 -04:00
|
|
|
}
|
|
|
|
|
2013-08-07 20:18:48 -04:00
|
|
|
pre {
|
|
|
|
padding: 10px;
|
|
|
|
overflow: auto;
|
2013-03-17 18:16:25 -04:00
|
|
|
}
|
|
|
|
|
2013-08-07 20:18:48 -04:00
|
|
|
pre > code {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
p > code {
|
|
|
|
padding: 3px;
|
2013-03-17 18:16:25 -04:00
|
|
|
}
|
2013-02-17 21:48:21 -05:00
|
|
|
|
|
|
|
/* forms */
|
|
|
|
form {
|
|
|
|
padding-top: 5px;
|
|
|
|
padding-bottom: 5px;
|
2013-07-19 20:39:49 -04:00
|
|
|
padding-left: 15px;
|
|
|
|
border-left: 2px dotted #ddd;
|
2013-02-17 21:48:21 -05:00
|
|
|
}
|
|
|
|
|
2014-12-24 13:50:20 -05:00
|
|
|
form h3 {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
form h3:first-child {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
2013-02-17 21:48:21 -05:00
|
|
|
label {
|
|
|
|
cursor: pointer;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2013-06-10 22:09:51 -04:00
|
|
|
input[type="checkbox"] {
|
|
|
|
border: 1px solid #ccc;
|
2013-03-17 18:16:25 -04:00
|
|
|
}
|
|
|
|
|
2013-02-17 21:48:21 -05:00
|
|
|
input[type="email"],
|
|
|
|
input[type="tel"],
|
|
|
|
input[type="password"],
|
|
|
|
input[type="text"] {
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
padding: 3px;
|
|
|
|
line-height: 15px;
|
|
|
|
width: 250px;
|
|
|
|
font-size: 99%;
|
2013-04-12 21:08:55 -04:00
|
|
|
margin-bottom: 10px;
|
|
|
|
margin-top: 5px;
|
2013-02-17 21:48:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
input[type="email"]:focus,
|
|
|
|
input[type="tel"]:focus,
|
|
|
|
input[type="password"]:focus,
|
|
|
|
input[type="text"]:focus,
|
|
|
|
textarea:focus {
|
|
|
|
color: #000;
|
|
|
|
border-color: rgba(82, 168, 236, 0.8);
|
|
|
|
outline: 0;
|
|
|
|
box-shadow: 0 0 8px rgba(82, 168, 236, 0.6);
|
|
|
|
}
|
|
|
|
|
|
|
|
textarea {
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
padding: 3px;
|
|
|
|
width: 400px;
|
|
|
|
height: 200px;
|
|
|
|
font-size: 99%;
|
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-input-placeholder {
|
|
|
|
color: #bbb;
|
|
|
|
padding-top: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-ms-input-placeholder {
|
|
|
|
color: #bbb;
|
|
|
|
padding-top: 2px;
|
|
|
|
}
|
|
|
|
|
2013-07-05 20:59:34 -04:00
|
|
|
::-moz-placeholder {
|
2013-02-17 21:48:21 -05:00
|
|
|
color: #bbb;
|
|
|
|
padding-top: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-actions {
|
|
|
|
margin-top: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
input.form-error,
|
|
|
|
textarea.form-error {
|
|
|
|
border: 2px solid #b94a48;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-errors {
|
|
|
|
color: #b94a48;
|
2013-04-12 21:08:55 -04:00
|
|
|
margin-left: 15px;
|
2013-02-17 21:48:21 -05:00
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
|
2013-03-24 10:33:20 -04:00
|
|
|
.form-help {
|
|
|
|
font-size: 0.9em;
|
|
|
|
color: brown;
|
2013-04-12 21:08:55 -04:00
|
|
|
margin-bottom: 15px;
|
2013-03-24 10:33:20 -04:00
|
|
|
}
|
2013-02-17 21:48:21 -05:00
|
|
|
|
2013-07-21 11:11:41 -04:00
|
|
|
.hide {
|
|
|
|
display: none;
|
2013-07-17 22:16:07 +01:00
|
|
|
}
|
|
|
|
|
2013-02-17 21:48:21 -05:00
|
|
|
/* alerts */
|
|
|
|
.alert {
|
|
|
|
padding: 8px 35px 8px 14px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
color: #c09853;
|
|
|
|
background-color: #fcf8e3;
|
|
|
|
border: 1px solid #fbeed5;
|
|
|
|
border-radius: 4px;
|
2014-11-08 16:59:52 -05:00
|
|
|
overflow: auto;
|
2013-02-17 21:48:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.alert-success {
|
|
|
|
color: #468847;
|
|
|
|
background-color: #dff0d8;
|
|
|
|
border-color: #d6e9c6;
|
|
|
|
}
|
|
|
|
|
|
|
|
.alert-error {
|
|
|
|
color: #b94a48;
|
|
|
|
background-color: #f2dede;
|
|
|
|
border-color: #eed3d7;
|
|
|
|
}
|
|
|
|
|
|
|
|
.alert-info {
|
|
|
|
color: #3a87ad;
|
|
|
|
background-color: #d9edf7;
|
|
|
|
border-color: #bce8f1;
|
|
|
|
}
|
|
|
|
|
2013-04-02 22:49:14 -04:00
|
|
|
.alert-normal {
|
|
|
|
color: #333;
|
|
|
|
background-color: #f0f0f0;
|
|
|
|
border-color: #ddd;
|
|
|
|
}
|
|
|
|
|
2014-10-19 19:14:33 -04:00
|
|
|
.alert-error a {
|
|
|
|
color: #b94a48;
|
|
|
|
}
|
2013-02-17 21:48:21 -05:00
|
|
|
|
|
|
|
/* buttons */
|
|
|
|
.btn {
|
2013-03-17 18:16:25 -04:00
|
|
|
display: inline-block;
|
2013-02-17 21:48:21 -05:00
|
|
|
color: #333;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
background: #efefef;
|
|
|
|
padding: 5px;
|
|
|
|
padding-left: 15px;
|
|
|
|
padding-right: 15px;
|
|
|
|
font-size: 90%;
|
|
|
|
cursor: pointer;
|
|
|
|
border-radius: 2px;
|
|
|
|
}
|
|
|
|
|
2013-03-17 18:16:25 -04:00
|
|
|
a.btn {
|
|
|
|
text-decoration: none;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-red {
|
2014-12-02 16:29:00 +01:00
|
|
|
border-color: #b0281a;
|
2013-03-17 18:16:25 -04:00
|
|
|
background: #d14836;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.btn-red:hover,
|
|
|
|
.btn-red:hover,
|
|
|
|
.btn-red:focus {
|
|
|
|
color: #fff;
|
|
|
|
background: #c53727;
|
|
|
|
}
|
|
|
|
|
2013-02-17 21:48:21 -05:00
|
|
|
.btn-blue {
|
|
|
|
border-color: #3079ed;
|
|
|
|
background: #4d90fe;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-blue:hover,
|
|
|
|
.btn-blue:focus {
|
|
|
|
border-color: #2f5bb7;
|
|
|
|
background: #357ae8;
|
|
|
|
}
|
|
|
|
|
2014-09-16 17:02:16 +02:00
|
|
|
/* icons */
|
|
|
|
article[data-item-status="read"] .read-icon:before {
|
|
|
|
content: "✔";
|
|
|
|
}
|
|
|
|
|
|
|
|
article[data-item-bookmark="1"] .bookmark-icon:before {
|
|
|
|
content: "★";
|
|
|
|
}
|
|
|
|
|
|
|
|
/* not bookmarked icon only in article view */
|
|
|
|
article[data-item-bookmark="0"] .item-infos .bookmark-icon:before {
|
|
|
|
content: "☆";
|
|
|
|
}
|
|
|
|
|
2014-09-16 15:14:49 +02:00
|
|
|
/* counter brackets */
|
|
|
|
span#nav-counter:not(:empty):before, span#page-counter:not(:empty):before {
|
|
|
|
content: " (";
|
|
|
|
}
|
|
|
|
|
2014-12-31 13:43:05 +01:00
|
|
|
span.items-count:before {
|
2014-09-16 15:14:49 +02:00
|
|
|
content: "(";
|
|
|
|
}
|
|
|
|
|
2014-12-31 13:43:05 +01:00
|
|
|
span#nav-counter:not(:empty):after, span#page-counter:not(:empty):after, span.items-count:after {
|
2014-09-16 15:14:49 +02:00
|
|
|
content: ")";
|
|
|
|
}
|
|
|
|
|
2015-01-02 12:43:17 -05:00
|
|
|
@keyframes blinker {
|
2014-12-02 16:29:00 +01:00
|
|
|
0% { opacity: 1.0; }
|
|
|
|
50% { opacity: 0.0; }
|
|
|
|
100% { opacity: 1.0; }
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Chrome, Safari, Opera */
|
|
|
|
@-webkit-keyframes blinker {
|
|
|
|
0% { opacity: 1.0; }
|
|
|
|
50% { opacity: 0.0; }
|
|
|
|
100% { opacity: 1.0; }
|
|
|
|
}
|
|
|
|
|
|
|
|
.loading-icon:before {
|
2015-01-02 12:43:17 -05:00
|
|
|
content: "☀";
|
2014-12-02 16:29:00 +01:00
|
|
|
animation-name: blinker;
|
|
|
|
-webkit-animation-name: blinker; /* Chrome, Safari, Opera */
|
|
|
|
animation-duration: 500ms;
|
|
|
|
-webkit-animation-duration: 500ms; /* Chrome, Safari, Opera */
|
|
|
|
animation-timing-function: ease-in-out;
|
|
|
|
-webkit-animation-timing-function: ease-in-out; /* Chrome, Safari, Opera */
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
-webkit-animation-iteration-count: infinite; /* Chrome, Safari, Opera */
|
|
|
|
}
|
|
|
|
|
2013-02-17 21:48:21 -05:00
|
|
|
/* header */
|
|
|
|
header {
|
|
|
|
margin-bottom: 50px;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
header ul {
|
|
|
|
text-align: right;
|
|
|
|
font-size: 90%;
|
|
|
|
}
|
|
|
|
|
|
|
|
header li {
|
|
|
|
display: inline;
|
2014-02-04 21:47:59 -05:00
|
|
|
padding-left: 3%;
|
2013-02-17 21:48:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
header a {
|
|
|
|
color: #777;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav .active a {
|
|
|
|
color: #333;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
color: #000;
|
|
|
|
letter-spacing: 1px;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo span {
|
|
|
|
color: #339966;
|
|
|
|
}
|
|
|
|
|
2013-03-24 10:33:20 -04:00
|
|
|
.page-section {
|
|
|
|
margin-top: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-section,
|
2013-02-17 21:48:21 -05:00
|
|
|
.page-header {
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
|
|
|
|
2013-03-24 10:33:20 -04:00
|
|
|
.page-section h2,
|
2013-02-17 21:48:21 -05:00
|
|
|
.page-header h2 {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
font-size: 130%;
|
|
|
|
border-bottom: 1px dotted #ccc;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-header ul {
|
|
|
|
text-align: right;
|
|
|
|
margin-top: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-header li {
|
2013-03-17 18:16:25 -04:00
|
|
|
font-size: 90%;
|
2013-02-17 21:48:21 -05:00
|
|
|
display: inline;
|
2013-04-12 21:08:55 -04:00
|
|
|
padding-right: 5px;
|
2013-02-17 21:48:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.page-header li:last-child {
|
|
|
|
border: none;
|
|
|
|
padding-right: 0;
|
|
|
|
}
|
|
|
|
|
2013-09-14 20:22:14 -04:00
|
|
|
#bottom-menu {
|
2013-09-18 19:55:18 -04:00
|
|
|
border-bottom: 1px dotted #ccc;
|
2013-09-14 20:22:14 -04:00
|
|
|
padding-bottom: 3px;
|
|
|
|
font-size: 0.9em;
|
2013-09-18 19:55:18 -04:00
|
|
|
text-align: right;
|
|
|
|
padding-top: 30px;
|
2013-09-14 20:22:14 -04:00
|
|
|
}
|
|
|
|
|
2014-12-31 13:43:05 +01:00
|
|
|
[data-feed-disabled] * {
|
2013-08-04 15:15:12 -04:00
|
|
|
color: #aaa;
|
|
|
|
}
|
|
|
|
|
2013-08-04 15:37:56 -04:00
|
|
|
.feed-last-checked {
|
|
|
|
color: brown;
|
|
|
|
font-size: 0.7em;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
2013-02-17 21:48:21 -05:00
|
|
|
|
2013-12-15 19:24:51 -05:00
|
|
|
.feed-parsing-error {
|
|
|
|
color: #000;
|
|
|
|
font-size: 0.7em;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
2013-02-17 21:48:21 -05:00
|
|
|
/* items listing */
|
|
|
|
.items article {
|
2013-07-06 00:37:12 +02:00
|
|
|
border: 1px dotted #ddd;
|
2013-02-17 21:48:21 -05:00
|
|
|
margin-bottom: 20px;
|
2013-07-07 11:45:48 -04:00
|
|
|
padding: 5px;
|
|
|
|
background-color: #fff;
|
2013-02-17 21:48:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.items h2 {
|
|
|
|
font-size: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
padding-bottom: 2px;
|
2013-03-17 18:16:25 -04:00
|
|
|
font-weight: bold;
|
2013-02-17 21:48:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.items a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.items a:hover,
|
2013-03-17 18:16:25 -04:00
|
|
|
.items a:focus {
|
2013-02-17 21:48:21 -05:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2014-02-14 21:21:14 -05:00
|
|
|
.item-menu,
|
2014-05-29 16:57:23 +02:00
|
|
|
.items .preview {
|
2013-02-17 21:48:21 -05:00
|
|
|
color: #aaa;
|
|
|
|
font-size: 70%;
|
|
|
|
}
|
|
|
|
|
2013-03-17 18:16:25 -04:00
|
|
|
.items .preview {
|
|
|
|
line-height: 1.5em;
|
|
|
|
font-size: 100%;
|
|
|
|
font-family: Georgia, serif;
|
2013-09-02 14:04:10 -04:00
|
|
|
overflow: auto;
|
2013-03-17 18:16:25 -04:00
|
|
|
}
|
|
|
|
|
2013-04-02 22:49:14 -04:00
|
|
|
.items #current-item {
|
2013-07-07 11:45:48 -04:00
|
|
|
border: 3px solid #bce;
|
2013-07-06 00:37:12 +02:00
|
|
|
padding: 3px;
|
2013-04-02 22:49:14 -04:00
|
|
|
}
|
|
|
|
|
2013-07-07 11:45:48 -04:00
|
|
|
.items article:hover .preview,
|
|
|
|
.items #current-item .preview {
|
|
|
|
color: #555;
|
|
|
|
}
|
|
|
|
|
2014-09-16 17:02:16 +02:00
|
|
|
.items article[data-item-status="read"] h2 a {
|
2013-10-07 22:17:46 -04:00
|
|
|
color: #666;
|
|
|
|
}
|
|
|
|
|
2013-02-17 21:48:21 -05:00
|
|
|
/* item */
|
|
|
|
.item {
|
2013-04-24 20:00:02 -04:00
|
|
|
padding-left: 5px;
|
|
|
|
padding-right: 5px;
|
2013-02-17 21:48:21 -05:00
|
|
|
padding-bottom: 50px;
|
2013-04-24 20:00:02 -04:00
|
|
|
color: #555;
|
2013-03-17 18:16:25 -04:00
|
|
|
font-family: Georgia, serif;
|
|
|
|
line-height: 1.6em;
|
2013-04-24 20:00:02 -04:00
|
|
|
font-size: 1.1em;
|
2013-03-17 18:16:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.item h2,
|
|
|
|
.item h3 {
|
|
|
|
font-weight: bold;
|
2013-02-17 21:48:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.item pre,
|
|
|
|
.item ul,
|
|
|
|
.item p {
|
|
|
|
margin-top: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.item p {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.item ul {
|
|
|
|
margin-left: 25px;
|
|
|
|
}
|
|
|
|
|
2014-03-19 18:14:41 -04:00
|
|
|
#item-content[dir="rtl"] blockquote {
|
|
|
|
border-right: 4px solid #ddd;
|
|
|
|
border-left: none;
|
|
|
|
padding-right: 25px;
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
|
2014-02-23 10:56:46 -05:00
|
|
|
#item-content img,
|
2013-08-04 12:17:10 -04:00
|
|
|
#item-content > a img,
|
|
|
|
#item-content > img,
|
2013-09-19 17:54:50 -04:00
|
|
|
#item-content figure img,
|
2013-08-03 21:06:08 -04:00
|
|
|
.item p img {
|
2013-08-04 12:17:10 -04:00
|
|
|
margin-top: 10px;
|
|
|
|
margin-bottom: 10px;
|
2013-02-17 21:48:21 -05:00
|
|
|
display: block;
|
2013-02-19 22:09:32 -05:00
|
|
|
max-width: 100%;
|
2013-02-17 21:48:21 -05:00
|
|
|
}
|
|
|
|
|
2014-03-29 19:48:49 -04:00
|
|
|
#item-content h1 img,
|
|
|
|
#item-content h2 img,
|
|
|
|
#item-content h3 img,
|
|
|
|
#item-content br + img {
|
|
|
|
display: inline;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2013-02-17 21:48:21 -05:00
|
|
|
.item h1 a {
|
2013-03-17 18:16:25 -04:00
|
|
|
font-size: 2.1em;
|
2013-02-17 21:48:21 -05:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2013-10-14 22:38:07 -04:00
|
|
|
#item-content a:visited {
|
2013-03-17 18:16:25 -04:00
|
|
|
color: purple;
|
|
|
|
}
|
|
|
|
|
2013-03-26 21:57:12 -04:00
|
|
|
.item nav span,
|
|
|
|
.item nav a,
|
|
|
|
.item nav a:visited {
|
2014-02-04 21:47:59 -05:00
|
|
|
color: #333;
|
|
|
|
font-family: sans-serif;
|
2013-03-26 21:57:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.item nav {
|
2014-02-04 21:47:59 -05:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.item nav.bottom {
|
2013-03-26 21:57:12 -04:00
|
|
|
border-top: 1px dotted #ddd;
|
|
|
|
padding-top: 8px;
|
|
|
|
margin-top: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-left {
|
2014-02-04 22:12:27 -05:00
|
|
|
width: 50%;
|
2013-03-26 21:57:12 -04:00
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-right {
|
|
|
|
text-align: right;
|
2014-02-04 22:12:27 -05:00
|
|
|
margin-left: 50%;
|
|
|
|
width: 50%;
|
2013-03-26 21:57:12 -04:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2014-02-14 21:21:14 -05:00
|
|
|
ul.item-menu,
|
|
|
|
ul.item-infos {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
color: #aaa;
|
2013-06-14 23:12:08 -04:00
|
|
|
}
|
|
|
|
|
2014-02-14 21:21:14 -05:00
|
|
|
.item-menu li,
|
|
|
|
ul.item-infos li {
|
|
|
|
margin: 0;
|
|
|
|
padding-left: 7px;
|
|
|
|
padding-right: 5px;
|
|
|
|
display: inline;
|
|
|
|
border-right: 1px solid #ccc;
|
|
|
|
}
|
|
|
|
|
|
|
|
.item-menu li:first-child,
|
|
|
|
ul.item-infos li:first-child {
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.item-menu li:last-child,
|
|
|
|
ul.item-infos li:last-child {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.item-menu a,
|
|
|
|
ul.item-infos a {
|
|
|
|
color: #aaa;
|
2013-07-28 20:10:07 -04:00
|
|
|
}
|
|
|
|
|
2014-02-15 10:25:33 -05:00
|
|
|
ul.item-infos {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
2014-12-02 16:29:00 +01:00
|
|
|
#download-item {
|
2013-07-28 20:10:07 -04:00
|
|
|
color: #000;
|
2013-06-14 23:12:08 -04:00
|
|
|
}
|
|
|
|
|
2013-07-05 22:37:19 -04:00
|
|
|
#items-paging {
|
2013-09-14 20:22:14 -04:00
|
|
|
margin-top: 40px;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
font-size: 80%;
|
2013-07-05 22:37:19 -04:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2014-12-10 21:12:42 -05:00
|
|
|
a.icon {
|
2013-08-04 16:06:14 -04:00
|
|
|
color: #333;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2014-12-10 21:12:42 -05:00
|
|
|
a.icon:focus,
|
|
|
|
a.icon:hover {
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
2014-05-25 08:47:03 -04:00
|
|
|
#item-content-enclosure {
|
|
|
|
border-bottom: 1px dashed #ccc;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2014-12-24 17:54:27 -05:00
|
|
|
.items article .favicon {
|
|
|
|
height: 16px;
|
|
|
|
}
|
|
|
|
|
2013-03-26 21:57:12 -04:00
|
|
|
/* other pages */
|
|
|
|
section li {
|
2013-04-12 21:08:55 -04:00
|
|
|
margin-left: 15px;
|
2013-03-26 21:57:12 -04:00
|
|
|
list-style-type: square;
|
|
|
|
}
|
|
|
|
|
2013-09-08 18:29:27 -04:00
|
|
|
video,
|
|
|
|
iframe {
|
|
|
|
max-width: 98%;
|
|
|
|
}
|
|
|
|
|
2014-02-04 21:54:41 -05:00
|
|
|
.menu-more li {
|
|
|
|
font-size: 1.1em;
|
|
|
|
padding-top: 10px;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
border-bottom: 1px dotted #ccc;
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-more a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: #333;
|
|
|
|
}
|
2013-03-17 18:16:25 -04:00
|
|
|
|
2014-11-08 12:55:30 -05:00
|
|
|
#login {
|
|
|
|
width: 350px;
|
|
|
|
margin: 0 auto;
|
|
|
|
margin-top: 15%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#login form {
|
|
|
|
border: none;
|
2014-11-18 19:16:14 -05:00
|
|
|
margin-bottom: 45px;
|
2014-04-05 20:24:13 -04:00
|
|
|
}
|
|
|
|
|
2014-12-26 10:43:27 -05:00
|
|
|
.bookmarklet {
|
|
|
|
font-size: 0.9em;
|
|
|
|
font-weight: bold;
|
|
|
|
line-height: 30px;
|
|
|
|
padding: 4px;
|
|
|
|
text-decoration: none;
|
|
|
|
color: #333;
|
2015-01-02 12:43:17 -05:00
|
|
|
background: #fff;
|
2014-12-26 10:43:27 -05:00
|
|
|
border: 1px dotted #ccc;
|
|
|
|
border-radius: 4px;
|
|
|
|
cursor: move;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bookmarklet:focus,
|
|
|
|
.bookmarklet:hover {
|
|
|
|
color: #339966;
|
|
|
|
}
|
|
|
|
|
2014-02-04 21:47:59 -05:00
|
|
|
/* desktop design */
|
|
|
|
@media only screen and (min-width: 480px) {
|
|
|
|
|
|
|
|
.hide-desktop {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-17 18:16:25 -04:00
|
|
|
/* mobile design */
|
|
|
|
@media only screen and (max-width: 480px) {
|
|
|
|
|
2014-02-14 21:21:14 -05:00
|
|
|
ul li.hide-mobile,
|
2013-07-19 20:39:49 -04:00
|
|
|
.hide-mobile {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2013-03-17 18:16:25 -04:00
|
|
|
body {
|
|
|
|
max-width: 480px;
|
|
|
|
}
|
|
|
|
|
|
|
|
header {
|
2014-02-04 21:47:59 -05:00
|
|
|
margin-bottom: 0;
|
2013-03-17 18:16:25 -04:00
|
|
|
}
|
|
|
|
|
2014-02-04 21:47:59 -05:00
|
|
|
nav .active a {
|
|
|
|
font-weight: normal;
|
2013-04-02 21:16:48 +03:00
|
|
|
}
|
2013-03-17 18:16:25 -04:00
|
|
|
|
|
|
|
.page {
|
|
|
|
clear: both;
|
|
|
|
padding-top: 20px;
|
|
|
|
}
|
2013-04-07 10:57:38 -04:00
|
|
|
|
2013-04-02 21:16:48 +03:00
|
|
|
.page li {
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
2013-03-17 18:16:25 -04:00
|
|
|
|
|
|
|
.item {
|
2014-02-07 19:36:21 -05:00
|
|
|
font-size: 1.0em;
|
2013-03-17 18:16:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.item h1 {
|
2014-02-04 21:47:59 -05:00
|
|
|
font-size: 0.75em;
|
2013-03-17 18:16:25 -04:00
|
|
|
}
|
|
|
|
|
2014-02-14 21:21:14 -05:00
|
|
|
.item-infos {
|
2013-03-17 18:16:25 -04:00
|
|
|
font-size: 0.9em;
|
2014-02-15 10:25:33 -05:00
|
|
|
margin-bottom: 5px;
|
2013-03-17 18:16:25 -04:00
|
|
|
}
|
2013-07-19 20:39:49 -04:00
|
|
|
|
2014-02-04 21:47:59 -05:00
|
|
|
.item nav a {
|
|
|
|
font-weight: bold;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2013-09-14 20:22:14 -04:00
|
|
|
.items .preview {
|
|
|
|
color: #555;
|
|
|
|
}
|
|
|
|
|
2014-02-14 21:21:14 -05:00
|
|
|
.item-menu li,
|
|
|
|
ul.item-infos li {
|
|
|
|
padding-left: 0;
|
|
|
|
padding-right: 5px;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2013-07-19 20:39:49 -04:00
|
|
|
section li {
|
|
|
|
font-size: 0.85em;
|
|
|
|
}
|
2013-04-02 21:16:48 +03:00
|
|
|
}
|