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

github.com/gurusabarish/hugo-profile.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'static/css/list.css')
-rw-r--r--static/css/list.css67
1 files changed, 67 insertions, 0 deletions
diff --git a/static/css/list.css b/static/css/list.css
new file mode 100644
index 0000000..583ef90
--- /dev/null
+++ b/static/css/list.css
@@ -0,0 +1,67 @@
+#list-page .card {
+ background-color: var(--secondary-color) !important;
+ box-shadow: 0px 8px 56px rgba(15, 80, 100, 0.16);
+ border-radius: .75rem;
+ cursor: context-menu;
+ overflow: hidden;
+}
+
+#list-page .card a {
+ text-decoration: none;
+}
+
+#list-page .card a h5 {
+ color: var(--text-color) !important;
+}
+
+#list-page .card:hover {
+ border: 1px solid var(--secondary-color);
+ transition: all 0.3s ease-out;
+ transform: translateY(-7px);
+}
+
+#list-page .card-text * {
+ background-color: var(--secondary-color) !important;
+}
+
+#list-page .post-footer {
+ padding: .5rem 1rem;
+ background-color: var(--secondary-color) !important;
+ color: var(--text-color) !important;
+ border-top: 1px solid rgba(15, 80, 100, 0.16);
+ opacity: 0.9;
+}
+
+#list-page .post-footer a {
+ background-color: var(--secondary-color) !important;
+ color: var(--text-secondary-color) !important;
+ border-color: var(--primary-color) !important;
+ transition: none;
+}
+
+#list-page .post-footer a:focus {
+ box-shadow: none !important;
+}
+
+#list-page .post-footer a:hover {
+ color: var(--primary-color) !important;
+}
+
+
+/* pagination */
+#list-page ul li a {
+ transition: none;
+ border-color: var(--secondary-color);
+ background-color: var(--secondary-color) !important;
+ color: var(--text-color) !important;
+}
+
+#list-page ul li a:focus {
+ box-shadow: none;
+}
+
+#list-page .page-item.active .page-link {
+ border-color: var(--primary-color);
+ background-color: var(--primary-color) !important;
+ color: var(--secondary-color) !important;
+}