More views, and likes working.
[wolnelektury.git] / src / wolnelektury / static / 2022 / styles / local.scss
index a8185cd..5f63275 100644 (file)
@@ -37,3 +37,145 @@ $teal: #007880;
     content: $icon-mute;
   }
 }
+
+
+.sponsors-page {
+    display: flex;
+    justify-content: space-between;
+    margin-top: 48px;
+
+    @include rwd(tablet) {
+        flex-wrap: wrap;
+    }
+
+    .sponsors-column {
+        margin: 1em 40px;
+        display: flex;
+        flex-direction: column;
+        align-items: center;
+        font-size: 0;
+        .sponsors-column-name {
+            font-weight: $regular;
+            @include font-size(18px);
+            line-height: 150%;
+            text-align: center;
+            color: #474747;
+        }
+        .sponsor-logos {
+            height: 120px;
+            overflow: hidden;
+            a {
+                margin-top: 20px;
+                display: block;
+                width: 120px;
+                height: 120px;
+            }
+        }
+    }
+}
+
+
+
+
+.l-checkout__support__bar span.little-progress::after {
+    white-space: nowrap;
+    justify-content: left;
+    width: 200px;
+    right: -210px;
+    color: #083F4D;
+}
+.funding-details {
+    h2 {
+        margin-top: 0;
+        margin-bottom: 1.5rem;
+    }
+    .funding-description {
+        h2 {
+            font-size: 1.25rem;
+            line-height: 1.35;
+        }
+    }
+}
+
+
+
+
+.book-container {
+    position: relative;
+
+    .set-tools {
+        display: none;
+        font-size: 12px;
+        position: absolute;
+        bottom: 0px;
+        right: 0;
+        left: 0;
+        background: black;
+        background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
+        color: white;
+        padding: 30px 10px 10px;
+
+        .sets {
+            span {
+                padding: 3px 18px 3px 3px;
+                background: white;
+                color: black;
+                margin-right: 5px;
+                margin-bottom: 5px;
+                display: inline-block;
+                border-radius: 3px;
+                position: relative;
+
+                .close {
+                    margin-left: 5px;
+                    position: absolute;
+                    top: 0;
+                    right: 0;
+                    font-family: wl;
+                    font-size: 10px;
+                    color: #FF4C54;
+                    padding: 4px;
+                    
+                    &:hover {
+                        text-decoration: none;
+                        color: black;
+                        cursor: pointer;
+                    }
+                }
+            }
+        }
+        .add-set-tag {
+            input {
+                width: 100%;
+            }
+            button {
+                font-family: wl;
+                position: absolute;
+                right: 12px;
+                color: #FF4C54;
+                bottom: 10px;
+                font-size: 12px;
+                border: 0;
+                background: none;
+                padding: 3px;
+            }
+        }
+    }
+}
+
+
+.book-container-activator {
+    &:hover, &.hover, &.ac-hover {
+        .book-container {
+            &.book-liked {
+                .icon-liked {
+                    font-size: 2em;
+                }
+
+                .set-tools {
+                    display: block;
+                }
+            }
+        }
+    }
+}