/* Components - Groups of Patterns /* ---------------------------------------------------------- */ @import "components/global.css"; body { background: #f4f8fb; } .img { display: block; width: 100%; height: 100%; border-radius: 100%; background-position: center center; background-size: cover; } .hidden { position: absolute; text-indent: -9999px; visibility: hidden; } /* Layout - Groups of Patterns /* ---------------------------------------------------------- */ /* Full width page blocks */ .outer { position: relative; padding: 0 4vw; } /* Centered content container blocks */ .inner { margin: 0 auto; max-width: 1040px; width: 100%; } /* Usage:
Centered content
*/ /* Special Template Styles /* ---------------------------------------------------------- */ @media (min-width: 900px) { .home-template .post-feed, .tag-template .post-feed, .author-template .post-feed { margin-top: -110px; } .home-template .site-nav { position: relative; top: -70px; z-index: 300; } } /* Site Header /* ---------------------------------------------------------- */ .site-header { position: relative; padding-top: 12px; padding-bottom: 12px; color: #fff; background: color(var(--darkgrey) l(-5%)) no-repeat center center; background-size: cover; } .site-header:before { display: block; content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 10; background: rgba(0,0,0,0.18); } .site-header:after { display: block; content: ""; position: absolute; top: 0; right: 0; bottom: auto; left: 0; z-index: 10; height: 80px; background: linear-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0)); } .site-header.no-cover:before, .site-header.no-cover:after { display: none; } .site-header-content { position: relative; z-index: 100; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 10vw 0; min-height: 200px; max-height: 450px; text-align: center; } .site-title { margin: 0; padding: 0; font-size: 3.8rem; font-weight: 700; } .site-logo { max-height: 45px; } .site-description { margin: 0; padding: 5px 0; font-size: 2.2rem; font-weight: 300; letter-spacing: 0.5px; opacity: 0.8; } /* Site Navigation /* ---------------------------------------------------------- */ .site-nav { position: relative; z-index: 100; display: flex; align-items: flex-start; justify-content: space-between; height: 40px; font-size: 1.2rem; overflow-y: hidden; } .site-nav-left { display: flex; align-items: center; margin-right: 10px; padding-bottom: 80px; letter-spacing: 0.4px; white-space: nowrap; overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; -ms-overflow-scrolling: touch; } /* Site Nav Hack Explanation (above): What's happening above it .site-nav-left is set to overflow-x and allow sideways scrolling, so that when there isn't enough space for all nav items (either due to lots of nav items, or a small viewport), you can still scroll side-to-side to reach them. The knock-on effect of this is ugly browser-scroll bars at the bottom, so 80px of padding-bottom and a 40px fixed height parent (.site-nav) hides that entirely. Slightly hacky code. But nice clean end-result. */ .site-nav-logo { flex-shrink: 0; display: block; margin-right: 24px; font-size: 1.7rem; line-height: 1em; font-weight: bold; color: #fff; letter-spacing: -0.5px; } .site-nav-logo:hover { text-decoration: none; } .site-nav-logo img { display: block; height: 21px; width: auto; } .nav { display: flex; margin: 0 0 0 -12px; padding: 0; list-style: none; } .nav li { display: block; margin: 0; padding: 0; text-transform: uppercase; } .nav li a { display: block; margin: 0; padding: 10px 12px; color: #fff; opacity: 0.8; } .nav li a:hover { opacity: 1; text-decoration: none; } .site-nav-right { display: flex; align-items: center; flex-shrink: 0; height: 40px; } .social-links { display: flex; align-items: center; flex-shrink: 0; } .social-links a:last-of-type { padding-right: 20px; } .social-link { display: flex; align-items: center; justify-content: center; margin: 0; padding: 10px; color: #fff; opacity: 0.8; } .social-link:hover { opacity: 1; } .social-link svg { height: 1.8rem; fill: #fff; } .social-link-fb svg { height: 1.5rem; } .social-link-wb svg { height: 1.6rem; } .social-link-wb svg path { stroke: #fff; } .social-link-rss svg { height: 1.9rem; } .subscribe-button { display: block; padding: 4px 10px; border: #fff 1px solid; color: #fff; font-size: 1.2rem; line-height: 1em; border-radius: 10px; opacity: 0.8; } .subscribe-button:hover { text-decoration: none; opacity: 1; } .rss-button { opacity: 0.8; } .rss-button:hover { opacity: 1; } .rss-button svg { height: 2.1rem; margin-bottom: 1px; fill: #fff; } /* Site Navigation /* ---------------------------------------------------------- */ .post-feed { position: relative; z-index: 200; display: flex; flex-wrap: wrap; margin: 0 -20px; padding: 40px 0 0 0; } .post-card { flex: 1 1 300px; order: unset; display: flex; flex-direction: column; min-height: 300px; margin: 0 20px 40px; background: #fff center center; background-size: cover; box-shadow: rgba(39,44,49,0.06) 8px 14px 38px, rgba(39, 44, 49, 0.03) 1px 3px 8px; border-radius: 5px; overflow: hidden; transition: all 0.5s ease; } .post-card:hover { box-shadow: 0 0 1px rgba(39,44,49,0.10), 0 3px 16px rgba(39, 44, 49,0.07); transform: translate3D(0, -1px, 0); transition: all 0.3s ease; } .post-card-image-link { position: relative; } .post-card-image { width: auto; height: 200px; background: var(--lightgrey) no-repeat center center; background-size: cover; } .post-card-content-link { position: relative; display: block; padding: 25px 25px 0; color: var(--darkgrey); } .post-card-content-link:hover { text-decoration: none; } .post-card-tags { display: block; margin-bottom: 4px; color: var(--midgrey); text-transform: uppercase; font-size: 1.2rem; line-height: 1.15em; letter-spacing: 0.5px; font-weight: 500; } .post-card-title { margin-top: 0; } .post-card-content { flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; } .post-card-excerpt { font-family: Georgia, serif; } .post-card-meta { padding: 0 25px 25px; } .author-profile-image { height: 25px; width: 25px; margin-right: 5px; border-radius: 100%; } .post-card-author { text-transform: uppercase; font-size: 1.3rem; letter-spacing: 0.5px; font-weight: 500; } /* Special Styling for home page grid (below): The first (most recent) post in the list is styled to be bigger than the others and take over the full width of the grid to give it more emphasis. Wrapped in a media query to make sure this only happens on large viewports / desktop-ish devices. */ @media (min-width: 795px) { .home-template .post-feed .post-card:nth-child(6n+1) { flex: 1 1 100%; flex-direction: row; } .home-template .post-feed .post-card:nth-child(6n+1) .post-card-image-link { position: relative; flex: 1 1 auto; } .home-template .post-feed .post-card:nth-child(6n+1) .post-card-image { position: absolute; width: 100%; height: 100%; } .home-template .post-feed .post-card:nth-child(6n+1) .post-card-content { flex: 0 1 357px; } .home-template .post-feed .post-card:nth-child(6n+1) h2 { font-size: 2.6rem; } .home-template .post-feed .post-card:nth-child(6n+1) p { font-size: 1.8rem; line-height: 1.55em; } .home-template .post-feed .post-card:nth-child(6n+1) .post-card-content-link { padding: 30px 40px 0; } .home-template .post-feed .post-card:nth-child(6n+1) .post-card-meta { padding: 0 40px 30px; } } .home-template .site-header:after { display: none; } /* Single Post /* ---------------------------------------------------------- */ .post-template .site-main, .page-template .site-main { padding-bottom: 4vw; background: #fff; } .post-full { position: relative; z-index: 50; } /* ^ Required to make .post-full-content:before/after z-index stacking work */ .post-full-header { max-width: 1040px; margin: 0 auto; padding: 6vw 3vw 3vw; text-align: center; } .post-full-meta { display: flex; align-items: center; justify-content: center; text-transform: uppercase; font-weight: 600; font-size: 1.4rem; color: var(--midgrey) } .post-full-meta-date { color: var(--blue); } .post-full-title { margin: 0; color: color(var(--darkgrey) l(-5%)); } .date-divider { display: inline-block; margin: 0 6px 1px; } .post-full-image { height: 800px; margin: 0 -10vw -165px; background: var(--lightgrey) center center; background-size: cover; border-radius: 5px; } @media (max-width: 1170px) { .post-full-image { height: 600px; margin: 0 -4vw -100px; border-radius: 0; } } @media (max-width: 800px) { .post-full-image { height: 400px; } } .post-full-content { position: relative; min-height: 230px; padding: 70px 100px 0; margin: 0 auto; font-size: 2.2rem; line-height: 1.6em; font-family: Georgia, serif; background: #fff; } @media (max-width: 1170px) { .post-full-content { padding: 5vw 7vw 0; } } @media (max-width: 800px) { .post-full-content { font-size: 1.9rem; } } .post-full-content:before { display: block; content: ""; width: 20px; height: 200px; transform: rotate(-5deg); position: absolute; top: 15px; left: -5px; z-index: -1; background: rgba(39,44,49,0.15); filter: blur(5px); } .post-full-content:after { display: block; content: ""; width: 20px; height: 200px; transform: rotate(5deg); position: absolute; top: 15px; right: -5px; z-index: -1; background: rgba(39,44,49,0.15); filter: blur(5px); } .no-image .post-full-content { padding-top: 0; } .no-image .post-full-content:before, .no-image .post-full-content:after { display: none; } .kg-card-markdown { display: flex; flex-direction: column; align-items: center; max-width: 920px; } .post-full-content p, .post-full-content ul, .post-full-content ol, .post-full-content dl, .post-full-content pre, .post-full-content h1, .post-full-content h2, .post-full-content h3, .post-full-content h4, .post-full-content h5, .post-full-content h6, .post-full-comments, .footnotes { min-width: 100%; } .post-template .kg-card-markdown > p:first-child { font-size: 1.25em; line-height: 1.5em; } .post-full-content a { color: #000; box-shadow: var(--blue) 0 -1px 0 inset; } .post-full-content a:hover { color: var(--blue); text-decoration: none; } .post-full-content strong, .post-full-content em { color: color(var(--darkgrey) l(-5%)); } .post-full-content img { width: 100vw; max-width: 1040px; margin: 1.5em 0; } /* If an image url has #full on the end, give it special wide styles. Super neat trick courtesy of @JoelDrapper */ .post-full-content img[src$="#full"] { max-width: 100vw; } .post-full-content blockquote { margin: 0 0 1.5em 0; padding: 1.5em 0; border: 0; text-align: center; font-size: 3rem; line-height: 1.6em; color: var(--blue); } .post-full-content blockquote:before { content: open-quote; } .post-full-content blockquote p { margin: 0; } @media (min-width: 1000px) { .post-full-content blockquote { width: 100vw; max-width: 1060px; } } .post-full-content blockquote + blockquote { padding-top: 0; } .post-full-content code { padding: 0 5px 2px; font-size: 0.8em; line-height: 1em; font-weight: 400!important; background: var(--whitegrey); border-radius: 3px; } .post-full-content pre { margin: 1.5em 0 3em; padding: 20px; border: color(var(--darkgrey) l(-10%)) 1px solid; font-size: 1.4rem; line-height: 1.5em; color: var(--whitegrey); background: color(var(--darkgrey) l(-3%)); border-radius: 5px; overflow-x: auto; max-width: 100%; } .post-full-content pre code { padding: 0; font-size: inherit; line-height: inherit; background: transparent; } .post-full-content .fluid-width-video-wrapper { margin: 1.5em 0 3em; } .post-full-content hr:after { display: block; content: ""; position: absolute; top: -15px; left: 50%; margin-left: -10px; height: 30px; width: 1px; background: color(var(--lightgrey) l(+10%)); box-shadow: #fff 0 0 0 5px; transform: rotate(45deg); } .post-full-content h1, .post-full-content h2, .post-full-content h3, .post-full-content h4, .post-full-content h5, .post-full-content h6 { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; color: color(var(--darkgrey) l(-5%)); } .post-full-content h1 { font-size: 5rem; } @media (max-width: 500px) { .post-full-content h1 { font-size: 2.2rem; } } .post-full-content h2 { font-size: 3.5rem; } @media (max-width: 500px) { .post-full-content h2 { font-size: 2.9rem; } } .post-full-content h3 { font-size: 2.5rem; } @media (max-width: 500px) { .post-full-content h3 { font-size: 2rem; } } .post-full-content h4 { font-size: 1.6rem; } .post-full-content h5 { font-size: 1.4rem; } .post-full-content h6 { font-size: 1.4rem; } .footnotes-sep { margin-bottom: 30px; } .footnotes { font-size: 1.5rem; } .footnotes p { margin: 0; } .footnote-backref { color: var(--blue) !important; text-decoration: none !important; box-shadow: none !important; font-size: 1.2rem; font-weight: bold; } /* Subscribe Form /* ---------------------------------------------------------- */ .subscribe-form { margin: 1.5em 0; padding: 6.5vw 7vw 7vw; border: color(var(--whitegrey) l(+2%)) 1px solid; text-align: center; background: color(var(--whitegrey) l(+4%)); border-radius: 7px; } .subscribe-form-title { margin: 0 0 3px 0; padding: 0; font-size: 3.5rem; line-height: 1; font-weight: 700; color: var(--darkgrey) } .subscribe-form p { margin-bottom: 1em; font-size: 2.2rem; line-height: 1.55em; letter-spacing: 0.2px; color: var(--midgrey); } .subscribe-form form { display: flex; justify-content: center; align-items: center; max-width: 420px; margin: 0 auto; } .subscribe-form .form-group { flex-grow: 1; } .subscribe-email { display: block; padding: 10px; width: 100%; border: color(var(--lightgrey) l(+7%)) 1px solid; color: var(--midgrey); font-size: 1.8rem; line-height: 1em; font-weight: normal; user-select: text; border-radius: 5px; transition: border-color 0.15s linear; -webkit-appearance: none; } .subscribe-email:focus { outline: 0; border-color: color(var(--lightgrey) l(-2%)); } .subscribe-form button { display: inline-block; outline: none; margin: 0 0 0 10px; padding: 0 20px; height: 41px; font-size: 1.5rem; line-height: 37px; font-weight: 400; color: #fff; text-shadow: 0 -1px 0 rgba(0,0,0,0.1); text-align: center; border-radius: 5px; background: linear-gradient( color(var(--blue) whiteness(+7%)), color(var(--blue) lightness(-7%) saturation(-10%)) 60%, color(var(--blue) lightness(-7%) saturation(-10%)) 90%, color(var(--blue) lightness(-4%) saturation(-10%)) ); box-shadow: 0 0 0 1px inset rgba(0,0,0,0.14); -webkit-font-smoothing: subpixel-antialiased; } .subscribe-form button:active, .subscribe-form button:focus { background: color(var(--blue) lightness(-9%) saturation(-10%)); } /* Post Footer /* ---------------------------------------------------------- */ .post-full-footer { display: flex; justify-content: space-between; align-items: center; max-width: 840px; margin: 0 auto; padding: 3vw 0 6vw 0; } .author-card { display: flex; align-items: center; } .author-card .author-profile-image { height: 60px; width: 60px; margin-right: 15px; } .author-card-name { margin: 0 0 2px 0; padding: 0; font-size: 2rem; } .author-card-name a { color: var(--darkgrey); font-weight: 700; } .author-card-name a:hover { text-decoration: none; } .author-card-content p { margin: 0; line-height: 1.3em; color: var(--midgrey); } .post-full-footer-right { flex-shrink: 0; margin-left: 20px; } .author-card-button { display: block; padding: 9px 16px; font-size: 1.2rem; line-height: 1; font-weight: 500; color: var(--midgrey); border: color(var(--midgrey) l(+20%)) 1px solid; border-radius: 20px; transition: all ease 0.2s; } .author-card-button:hover { border-color: var(--blue); color: var(--blue); text-decoration: none; } /* Comments /* ---------------------------------------------------------- */ .post-full-comments { max-width: 840px; margin: 0 auto; } /* Related posts /* ---------------------------------------------------------- */ .read-next-feed { display: flex; flex-wrap: wrap; margin: 0 -20px; padding: 40px 0 0 0; } .read-next-card { position: relative; flex: 1 1 300px; display: flex; flex-direction: column; margin: 0 20px 40px; padding: 25px; color: #fff; background: var(--darkgrey) center center; background-size: cover; box-shadow: rgba(39,44,49,0.06) 8px 14px 38px, rgba(39, 44, 49, 0.03) 1px 3px 8px; border-radius: 5px; overflow: hidden; } .read-next-card:before { content: ""; display: block; position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: linear-gradient(135deg, rgba(0,40,60,0.8) 0%,rgba(0,20,40,0.7) 100%); border-radius: 5px; backdrop-filter: blur(2px); } .read-next-card-header { position: relative; z-index: 50; padding-top: 20px; text-align: center; } .read-next-card-header-sitetitle { display: block; font-size: 1.3rem; line-height: 1.3em; opacity: 0.8; } .read-next-card-header-title { padding: 0 20px; margin: 0; font-size: 3rem; line-height: 1.2em; letter-spacing: 1px; color: #fff; } .read-next-card-header-title a { color: #fff; font-weight: 300; text-decoration: none; } .read-next-card-header-title a:hover { text-decoration: none; } .read-next-divider { position: relative; display: flex; justify-content: center; height: 80px; } .read-next-divider svg { width: 40px; stroke: #fff; stroke-width: 0.5px; stroke-opacity: 0.65; fill: transparent; } .read-next-card-content { flex-grow: 1; display: flex; position: relative; z-index: 50; font-size: 1.7rem; } .read-next-card-content ul { display: flex; flex-direction: column; margin: 0 auto; padding: 0; list-style: none; text-align: center; } .read-next-card-content li { margin: 0; padding: 0; font-size: 1.6rem; line-height: 1.25em; letter-spacing: -0.5px; font-weight: 200; } .read-next-card-content li a { display: block; padding: 20px 0; border-bottom: rgba(255,255,255,0.3) 1px solid; vertical-align: top; font-weight: 500; color: #fff; transition: opacity 0.3s ease; } .read-next-card-content li:first-of-type a { padding-top: 10px; } .read-next-card-content li a:hover { opacity: 1; } .read-next-card-footer { position: relative; margin: 15px 0 3px 0; text-align: center; } .read-next-card-footer a { color: #fff; } /* Site Footer /* ---------------------------------------------------------- */ .site-footer { position: relative; padding-top: 20px; padding-bottom: 60px; color: #fff; background: color(var(--darkgrey) l(-15%)); } .site-footer-content { display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,0.7); font-size: 1.3rem; } .site-footer-content a { color: rgba(255,255,255,0.7);; } .site-footer-content a:hover { color: rgba(255,255,255,1); text-decoration: none; } .site-footer-nav { display: flex; } .site-footer-nav a { position: relative; margin-left: 20px; } .site-footer-nav a:before { content: ""; display: block; height: 2px; width: 2px; position: absolute; top: 11px; left: -11px; border-radius: 100%; background: #fff; } .site-footer-nav a:first-of-type:before { display: none; } /* ========================================================================== Floating Header ========================================================================== */ .floating-header { visibility: hidden; display: flex; align-items: center; position: fixed; height: 60px; border-bottom: rgba(0,0,0,0.06) 1px solid; z-index: 1000; top: 0; left: 0; right: 0; background: rgba(255,255,255,0.95); transform: translate3d(0, -120%, 0); transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1); } .floating-active { visibility: visible; transform: translate3d(0, 0, 0); transition: all 500ms cubic-bezier(0.22, 1, 0.27, 1); } .floating-header-logo { margin: 0 0 0 20px; font-size: 1.6rem; line-height: 1em; letter-spacing: -1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .floating-header-logo a { display: flex; align-items: center; color: var(--darkgrey); font-weight: 700; } .floating-header-logo a:hover { text-decoration: none; } .floating-header-logo img { max-height: 20px; margin: 0 10px 0 0; } .floating-header-divider { margin: 0 5px; line-height: 1em; } .floating-header-title { flex: 1; margin: 0; font-weight: bold; font-size: 1.6rem; line-height: 1em; color: #2e2e2e; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .floating-header-share { display: flex; justify-content: flex-end; align-items: center; padding-left: 2%; font-size: 1.3rem; line-height: 1; } .floating-header-share a { display: flex; align-items: center; justify-content: center; } .floating-header-share svg { fill: #fff; height: 16px; width: auto; } .floating-header-share-label { flex-shrink: 0; display: flex; align-items: center; margin-right: 10px; color: rgba(0,0,0,0.7); font-weight: 500; } .floating-header-share-label svg { width: 18px; height: 18px; margin: 0 5px 0 10px; stroke: rgba(0,0,0,0.7); transform: rotate(90deg); } .floating-header-share-tw, .floating-header-share-fb { display: block; width: 60px; height: 60px; line-height: 48px; align-items: center; text-align: center; color: #fff; transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1); } .floating-header-share-tw { background: #33b1ff; } .floating-header-share-fb { background: #005e99; } .progress { position: absolute; bottom: -1px; left: 0; right: 0; width: 100%; height: 2px; border: none; color: var(--blue); background: transparent; appearance: none; } .progress::-webkit-progress-bar { background-color: transparent; } .progress::-webkit-progress-value { background-color: var(--blue); } .progress-container { width: 100%; background-color: transparent; position: absolute; top: 0; left: 0; height: 2px; display: block; } .progress-bar { background-color: var(--blue); width: 50%; display: block; height: inherit; } @media (max-width: 900px) { .floating-header { height: 40px; } .floating-header-title, .floating-header-logo { font-size: 1.5rem; } .floating-header-share-tw, .floating-header-share-fb { height: 40px; width: 40px; line-height: 38px; } } @media (max-width: 800px) { .floating-header-logo { margin-left: 10px; } .floating-header-logo a { color: #2e2e2e; } .floating-header-title, .floating-header-divider { visibility: hidden; } } @media (max-width: 450px) { .floating-header-share-label { display: none; } } /* ========================================================================== Author Template / author.hbs ========================================================================== */ .site-header-content .author-profile-image { flex-shrink: 0; width: 100px; height: 100px; margin: 0 0 20px 0; box-shadow: rgba(255,255,255,0.1) 0 0 0 6px; } .site-header-content .author-bio { flex-shrink: 0; max-width: 600px; margin: 5px 0 10px 0; font-size: 2rem; line-height: 1.3em; font-weight: 300; letter-spacing: 0.5px; opacity: 0.8; white-space: pre; } .site-header-content .author-meta { flex-shrink: 0; display: flex; justify-content: center; align-items: center; margin: 0 0 10px 0; font-family: Georgia, serif; font-style: italic; } .site-header-content .author-location svg { height: 1.9rem; stroke: #fff; } .site-header-content .bull { display: inline-block; margin: 0 12px; opacity: 0.5; } .site-header-content .social-link:first-of-type { padding-left: 4px; } /* ========================================================================== Error Template / error.hbs ========================================================================== */ .error-template .site-main { padding: 7vw 4vw; } .site-nav-center { display: flex; align-items: center; justify-content: center; text-align: center; } .site-nav-center .site-nav-logo { margin-right: 0; } .error-message { text-align: center; } .error-code { margin: 0; font-size: 12vw; line-height: 1em; letter-spacing: -5px; opacity: 0.3; } .error-description { margin: 0; font-size: 3rem; line-height: 1.3em; font-weight: 400; color: var(--midgrey); } @media (max-width: 800px) { .error-description { margin: 5px 0 0 0; font-size: 1.8rem; } } .error-link { display: inline-block; margin-top: 5px; } .error-template .post-feed { padding-top: 0; } /* ========================================================================== Subscribe / ?.hbs ========================================================================== */ .subscribe-overlay { position: fixed; top: 0; right: 0; bottom: 0; left: 0; display: flex; justify-content: center; align-items: center; background: rgba(0,25,40,0.97); z-index: 9000; opacity: 0; transition: opacity 200ms ease-in; pointer-events: none; backdrop-filter: blur(3px); } .subscribe-overlay:target { opacity: 1; pointer-events: auto; } .subscribe-overlay-content { position: relative; z-index: 9999; padding: 4vw; margin: 0 0 5vw 0; text-align: center; color: #fff; } .subscribe-overlay-logo { position: fixed; top: 23px; left: 30px; height: 30px; } .subscribe-overlay-title { display: inline-block; margin: 0 0 10px 0; font-size: 6rem; line-height: 1.15em; } .subscribe-overlay-description { max-width: 650px; margin: 0 auto 50px; font-size: 3rem; line-height: 1.3em; font-weight: 300; font-family: Georgia, serif; opacity: 0.8; } .subscribe-overlay form { display: flex; justify-content: center; align-items: center; max-width: 500px; margin: 0 auto; } .subscribe-overlay .form-group { flex-grow: 1; } .subscribe-overlay .subscribe-email { display: block; padding: 14px 20px; width: 100%; border: none; color: var(--midgrey); font-size: 2rem; line-height: 1em; letter-spacing: 0.5px; font-weight: normal; user-select: text; border-radius: 8px; transition: border-color 0.15s linear; -webkit-appearance: none; } .subscribe-email:focus { outline: 0; border-color: color(var(--lightgrey) l(-2%)); } .subscribe-overlay button { display: inline-block; outline: none; margin: 0 0 0 15px; padding: 0 25px; height: 52px; font-size: 1.7rem; line-height: 37px; font-weight: 400; color: #fff; text-shadow: 0 -1px 0 rgba(0,0,0,0.1); text-align: center; border-radius: 8px; background: linear-gradient( color(var(--blue) whiteness(+7%)), color(var(--blue) lightness(-7%) saturation(-10%)) 60%, color(var(--blue) lightness(-7%) saturation(-10%)) 90%, color(var(--blue) lightness(-4%) saturation(-10%)) ); box-shadow: 0 0 0 1px inset rgba(0,0,0,0.14); -webkit-font-smoothing: subpixel-antialiased; } .subscribe-overlay button:active, .subscribe-overlay button:focus { background: color(var(--blue) lightness(-9%) saturation(-10%)); } .subscribe-overlay-close { display: block; position: absolute; top: 0; right: 0; bottom: 0; left: 0; } .subscribe-overlay-close:before { display: block; content: ""; position: absolute; top: 40px; right: 25px; width: 30px; height: 2px; background: #fff; transform: rotate(45deg); opacity: 0.8; } .subscribe-overlay-close:after { display: block; content: ""; position: absolute; top: 40px; right: 25px; width: 30px; height: 2px; background: #fff; transform: rotate(-45deg); opacity: 0.8; } .subscribe-overlay-close:hover { cursor: default; }