| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654 |
- /* Layout */
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
- body {
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
- text-rendering: optimizeLegibility;
- }
- .main {
- padding-left: 3px;
- padding-right: 3px;
- }
- a {
- color: #3366CC;
- }
- a:focus {
- outline: 0;
- color: red;
- text-decoration: none;
- border: 1px dotted #aaa;
- }
- a:hover {
- color: #333;
- text-decoration: none;
- }
- .header {
- margin-top: 10px;
- margin-bottom: 20px;
- }
- .header nav ul {
- display: none;
- }
- .header li {
- cursor: pointer;
- padding-left: 10px;
- line-height: 2.1em;
- font-size: 1.2em;
- border-bottom: 1px dotted #ddd;
- }
- .header li:hover a {
- color: #888;
- }
- .header a {
- font-size: 0.9em;
- color: #444;
- text-decoration: none;
- border: none;
- }
- .header .active a {
- font-weight: 600;
- }
- .header a:hover,
- .header a:focus {
- color: #888;
- }
- .page-header {
- margin-bottom: 25px;
- }
- .page-header h1 {
- font-weight: 500;
- border-bottom: 1px dotted #ddd;
- }
- .page-header ul {
- margin-left: 25px;
- font-size: 0.9em;
- }
- .page-header li {
- list-style-type: circle;
- line-height: 1.4em;
- }
- .logo {
- cursor: pointer;
- text-align: center;
- }
- .logo a {
- color: #000;
- letter-spacing: 1px;
- }
- .logo a:hover {
- color: #339966;
- }
- .logo a span {
- color: #339966;
- }
- .logo a:hover span {
- color: #000;
- }
- @media (min-width: 600px) {
- body {
- margin: auto;
- max-width: 750px;
- }
- .logo {
- text-align: left;
- float: left;
- margin-right: 15px;
- }
- .header nav ul {
- display: block;
- }
- .header li {
- display: inline;
- padding: 0;
- padding-right: 15px;
- line-height: normal;
- font-size: 1.0em;
- border: none;
- }
- .page-header ul {
- margin-left: 0;
- }
- .page-header li {
- display: inline;
- padding-right: 15px;
- }
- }
- /* Tables */
- table {
- width: 100%;
- border-collapse: collapse;
- }
- table, th, td {
- border: 1px solid #ddd;
- }
- th, td {
- padding: 5px;
- text-align: left;
- }
- td {
- vertical-align: top;
- }
- th {
- background: #fcfcfc;
- }
- .table-overflow td {
- max-width: 0;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- }
- tr:hover {
- background-color: #f9f9f9;
- }
- .column-40 {
- width: 40%;
- }
- .column-25 {
- width: 25%;
- }
- .column-20 {
- width: 20%;
- }
- /* Forms */
- label {
- cursor: pointer;
- display: block;
- }
- .radio-group {
- line-height: 1.9em;
- }
- div.radio-group label {
- display: inline-block;
- }
- select {
- margin-bottom: 15px;
- }
- input[type="url"],
- input[type="password"],
- input[type="text"] {
- border: 1px solid #ccc;
- padding: 3px;
- line-height: 15px;
- width: 250px;
- font-size: 99%;
- margin-bottom: 10px;
- margin-top: 5px;
- -webkit-appearance: none;
- }
- input[type="url"]:focus,
- input[type="password"]:focus,
- input[type="text"]:focus {
- color: #000;
- border-color: rgba(82, 168, 236, 0.8);
- outline: 0;
- box-shadow: 0 0 8px rgba(82, 168, 236, 0.6);
- }
- ::-moz-placeholder,
- ::-ms-input-placeholder,
- ::-webkit-input-placeholder {
- color: #ddd;
- padding-top: 2px;
- }
- .form-help {
- font-size: 0.9em;
- color: brown;
- margin-bottom: 15px;
- }
- /* Buttons */
- a.button {
- text-decoration: none;
- }
- .button {
- display: inline-block;
- -webkit-appearance: none;
- -moz-appearance: none;
- font-size: 1.1em;
- cursor: pointer;
- padding: 3px 10px;
- border: 1px solid;
- border-radius: unset;
- }
- .button-primary {
- border-color: #3079ed;
- background: #4d90fe;
- color: #fff;
- }
- .button-primary:hover,
- .button-primary:focus {
- border-color: #2f5bb7;
- background: #357ae8;
- }
- .button-danger {
- border-color: #b0281a;
- background: #d14836;
- color: #fff;
- }
- .button-danger:hover,
- .button-danger:focus {
- color: #fff;
- background: #c53727;
- }
- .button:disabled {
- color: #ccc;
- background: #f7f7f7;
- border-color: #ccc;
- }
- .buttons {
- margin-top: 10px;
- margin-bottom: 20px;
- }
- /* Alerts */
- .alert {
- padding: 8px 35px 8px 14px;
- margin-bottom: 20px;
- color: #c09853;
- background-color: #fcf8e3;
- border: 1px solid #fbeed5;
- border-radius: 4px;
- overflow: auto;
- }
- .alert h3 {
- margin-top: 0;
- margin-bottom: 15px;
- }
- .alert-success {
- color: #468847;
- background-color: #dff0d8;
- border-color: #d6e9c6;
- }
- .alert-error {
- color: #b94a48;
- background-color: #f2dede;
- border-color: #eed3d7;
- }
- .alert-error a {
- color: #b94a48;
- }
- .alert-info {
- color: #3a87ad;
- background-color: #d9edf7;
- border-color: #bce8f1;
- }
- /* Panel */
- .panel {
- color: #333;
- background-color: #f0f0f0;
- border: 1px solid #ddd;
- border-radius: 5px;
- padding: 10px;
- margin-bottom: 15px;
- }
- .panel h3 {
- font-weight: 500;
- margin-top: 0;
- margin-bottom: 20px;
- }
- .panel ul {
- margin-left: 30px;
- }
- /* Login form */
- .login-form {
- margin: auto;
- margin-top: 50px;
- width: 350px;
- }
- /* Counter */
- .unread-counter {
- font-size: 0.8em;
- font-weight: 300;
- color: #666;
- }
- /* Category label */
- .category {
- font-size: 0.75em;
- background-color: #fffcd7;
- border: 1px solid #d5d458;
- border-radius: 5px;
- margin-left: 0.25em;
- padding: 1px 0.4em 1px 0.4em;
- white-space: nowrap;
- }
- .category a {
- color: #555;
- text-decoration: none;
- }
- .category a:hover,
- .category a:focus {
- color: #000;
- }
- /* Pagination */
- .pagination {
- font-size: 1.1em;
- display: flex;
- align-items: center;
- padding-top: 8px;
- }
- .pagination-bottom {
- border-top: 1px dotted #ddd;
- margin-bottom: 15px;
- margin-top: 50px;
- }
- .pagination > div {
- flex: 1;
- }
- .pagination-next {
- text-align: right;
- }
- .pagination-prev:before {
- content: "« ";
- }
- .pagination-next:after {
- content: " »";
- }
- .pagination a {
- color: #333;
- }
- .pagination a:hover,
- .pagination a:focus {
- text-decoration: none;
- }
- /* List view */
- .item {
- border: 1px dotted #ddd;
- margin-bottom: 20px;
- padding: 5px;
- overflow: hidden;
- }
- .item.current-item {
- border: 3px solid #bce;
- padding: 3px;
- }
- .item-title a {
- text-decoration: none;
- font-weight: 600;
- }
- .item-status-read .item-title a {
- color: #777;
- }
- .item-meta {
- color: #777;
- font-size: 0.8em;
- }
- .item-meta a {
- color: #777;
- text-decoration: none;
- }
- .item-meta a:hover,
- .item-meta a:focus {
- color: #333;
- }
- .item-meta ul {
- margin-top: 5px;
- }
- .item-meta li {
- display: inline;
- }
- .item-meta li:after {
- content: "|";
- color: #aaa;
- }
- .item-meta li:last-child:after {
- content: "";
- }
- .hide-read-items .item-status-read {
- display: none;
- }
- /* Entry view */
- .entry header {
- padding-bottom: 5px;
- border-bottom: 1px dotted #ddd;
- }
- .entry header h1 {
- font-size: 2.0em;
- line-height: 1.25em;
- margin: 30px 0;
- }
- .entry header h1 a {
- text-decoration: none;
- color: #333;
- }
- .entry header h1 a:hover,
- .entry header h1 a:focus {
- color: #666;
- }
- .entry-meta {
- font-size: 0.95em;
- margin: 0 0 20px;
- color: #666;
- }
- .entry-website img {
- vertical-align: top;
- }
- .entry-website a {
- color: #666;
- vertical-align: top;
- text-decoration: none;
- }
- .entry-website a:hover,
- .entry-website a:focus {
- text-decoration: underline;
- }
- .entry-date {
- font-size: 0.65em;
- font-style: italic;
- color: #555;
- }
- .entry-content {
- padding-top: 15px;
- font-size: 1.1em;
- font-weight: 300;
- color: #444;
- }
- .entry-content h1, h2, h3, h4, h5, h6 {
- margin-top: 15px;
- }
- .entry-content iframe,
- .entry-content video,
- .entry-content img {
- max-width: 100%;
- }
- .entry-content figure img {
- border: 1px solid #000;
- }
- .entry-content figcaption {
- font-size: 0.75em;
- text-transform: uppercase;
- color: #777;
- }
- .entry-content p {
- margin-top: 15px;
- margin-bottom: 15px;
- text-align: justify;
- }
- .entry-content a:visited {
- color: purple;
- }
- .entry-content dt {
- font-weight: 500;
- margin-top: 15px;
- color: #555;
- }
- .entry-content dd {
- margin-left: 15px;
- margin-top: 5px;
- padding-left: 20px;
- border-left: 3px solid #ddd;
- color: #777;
- font-weight: 300;
- line-height: 1.4em;
- }
- .entry-content blockquote {
- border-left: 4px solid #ddd;
- padding-left: 25px;
- margin-left: 20px;
- margin-top: 20px;
- margin-bottom: 20px;
- color: #888;
- line-height: 1.4em;
- font-family: Georgia, serif;
- }
- .entry-content blockquote + p {
- color: #555;
- font-style: italic;
- font-weight: 200;
- }
- .entry-content q {
- color: purple;
- font-family: Georgia, serif;
- font-style: italic;
- }
- .entry-content q:before {
- content: "“";
- }
- .entry-content q:after {
- content: "”";
- }
- .entry-content pre {
- padding: 5px;
- background: #f0f0f0;
- border: 1px solid #ddd;
- overflow: scroll;
- }
- .entry-content ul,
- .entry-content ol {
- margin-left: 30px;
- }
- .entry-content ul {
- list-style-type: square;
- }
- .entry-enclosures h3 {
- font-weight: 500;
- }
- .entry-enclosure {
- border: 1px dotted #ddd;
- padding: 5px;
- margin-top: 10px;
- max-width: 100%;
- }
- .entry-enclosure-download {
- font-size: 0.85em;
- }
- .enclosure-video video,
- .enclosure-image img {
- max-width: 100%;
- }
|