Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roryg/ghostwriter.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/css/style.css')
-rw-r--r--assets/css/style.css82
1 files changed, 82 insertions, 0 deletions
diff --git a/assets/css/style.css b/assets/css/style.css
index c83dd83..27e8f33 100644
--- a/assets/css/style.css
+++ b/assets/css/style.css
@@ -655,3 +655,85 @@ table {
width: 100%;
height: 100%;
}
+
+.kg-bookmark-card {
+ width: 100%;
+ position: relative;
+}
+
+.kg-bookmark-container {
+ display: flex;
+ flex-wrap: wrap;
+ flex-direction: row-reverse;
+ color: currentColor;
+ font-family: inherit;
+ text-decoration: none;
+ border: 1px solid rgba(0, 0, 0, 0.1);
+}
+
+.kg-bookmark-container:hover {
+ text-decoration: none;
+}
+
+.kg-bookmark-content {
+ flex-basis: 0;
+ flex-grow: 999;
+ padding: 20px;
+ order: 1;
+}
+
+.kg-bookmark-title {
+ font-weight: 600;
+}
+
+.kg-bookmark-metadata,
+.kg-bookmark-description {
+ margin-top: .5em;
+}
+
+.kg-bookmark-metadata {
+ align-items: center;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
+
+.kg-bookmark-description {
+ display: -webkit-box;
+ -webkit-box-orient: vertical;
+ -webkit-line-clamp: 2;
+ overflow: hidden;
+}
+
+.kg-bookmark-icon {
+ display: inline-block;
+ width: 1em;
+ height: 1em;
+ vertical-align: text-bottom;
+ margin-right: .5em;
+ margin-bottom: .05em;
+}
+
+.kg-bookmark-thumbnail {
+ display: flex;
+ flex-basis: 24rem;
+ flex-grow: 1;
+}
+
+.kg-bookmark-thumbnail img {
+ max-width: 100%;
+ height: auto;
+ vertical-align: bottom;
+ object-fit: cover;
+}
+
+.kg-bookmark-author {
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ overflow: hidden;
+}
+
+.kg-bookmark-publisher::before {
+ content: "•";
+ margin: 0 .5em;
+}