@font-face { font-family: 'Lekton'; src: url('../font/Lekton/Lekton-Regular.ttf'); } @font-face { font-family: 'Lekton'; src: url('../font/Lekton/Lekton-Bold.ttf'); font-weight: bold; font-style: normal; } @font-face { font-family: 'Lekton'; src: url('../font/Lekton/Lekton-Italic.ttf'); font-weight: normal; font-style: italic; } html, body { margin: 0; padding: 0; height: 100%; } body, .flex-container--column, .flex-container--row { display: -webkit-flex; display: flex; } body, .flex-container--column { -webkit-flex-direction: column; flex-direction: column; } .flex-container--row { -webkit-flex-direction: row; flex-direction: row; } .flex-container--wrap { -webkit-flex-wrap: wrap; flex-wrap: wrap; } .flex-container--left-bottom { justify-content: flex-start; align-items: baseline; } .flex-container--left-center { justify-content: flex-start; align-items: center; } .flex-container--center-center { justify-content: center; align-items: center; } .flex-container--space-between-bottom { justify-content: space-between; align-items: baseline; } .flex-container--space-between-center { justify-content: space-between; align-items: center; } .hidden { display: none; } /* TEXT */ body, button, input, textarea, label, select, option { font-family: 'Lekton', monospace; font-size: large; } h3, p { font-size: x-large; } .text--large { font-size: 2rem; } .pull-quote { font-size: 3rem; margin-top: 1rem; } .fine-print { font-size: small; } .blue { color: #4156C5; } .blue--underlined { color: #4156C5; text-decoration: underline; } /* TOOL TIPS */ /* Tooltip container */ .tooltip { position: relative; } /* Tooltip text */ .tooltip > .tooltip-text { visibility: hidden; width: 15em; background-color: #9b9b9b; color: #fff; text-align: center; padding: 0.5em; /* Position the tooltip text */ position: absolute; z-index: 1; bottom: 110%; left: 50%; margin-left: -8em; /* Use half of the width (120/2 = 60), to center the tooltip */ } /* Show the tooltip text when you mouse over the tooltip container */ .tooltip:hover > .tooltip-text { visibility: visible; } /* arrow at bottom of tooltip text */ .tooltip > .tooltip-text::after { content: " "; position: absolute; top: 100%; left: 50%; margin-left: -5px; border-width: 5px; border-style: solid; border-color: #9b9b9b transparent transparent transparent; } /* LINKS */ a, a:visited { text-decoration: none; } .link--primary, .link--primary:visited { color: #4156C5; } .link--primary.fine-print { text-align: center; } .link--nav { color: black; border-bottom: 2px solid white; } .link--nav:hover { color: #4156C5; } .link--nav-active { color: #4156C5; border-bottom: 2px solid #4156C5; } /* COLUMNS AND ROWS */ .row { clear: both; margin: 0px; } .row--padded { padding: 3rem; } .row--margined { margin: 3rem; } .row--wide { padding-right: 0px; padding-left: 0px; } .row--short { padding-top: 0px; padding-bottom: 0px; } .row--tall { flex: 1 0 auto; } .row--no-top { padding-top: 0px; } .row--no-bottom { padding-bottom: 0px; } .row--no-right { padding-right: 0px; } .column { display: inline-block; padding: 0px; margin: 0px; } .column--1 { width: 10%; } .column--2 { width: 20%; } .column--3 { width: 30%; } .column--4 { width: 40%; } .column--5 { width: 50%; } .column--6 { width: 60%; } .column--7 { width: 70%; } .column--8 { width: 80%; } .column--9 { width: 90%; } .column--10 { width: 100%; } /* ALIGNMENT */ .align-content-left { text-align: left; } .align-content-center { text-align: center; } .align-content-right { text-align: right; } .align-content-top { vertical-align: top; } .align-content-right { vertical-align: bottom; } /* ERROR MESSAGES */ .info-message--success, .info-message--failure { font-size: medium; margin: 0px; padding: 0.3em; } .info-message--success { color: green; } .info-message--failure { color: red; } .info-message-placeholder { } /* INPUT FIELDS */ /* blocks */ input:-webkit-autofill { -webkit-box-shadow: 0 0 0px 1000px white inset; } .label, .input-text, .select, .textarea, .text--large { margin: 0px; padding: 0.3em; outline: none; border: 0px; background-color: white; display: inline-block; } .input-disabled { border: 1px solid black; padding: 0.5em; margin: 0px; color: black; background-color: white; } option { font-family: monospace; } .input-checkbox { border: 1px solid black; background: white; } .input-file { width: 0.1px; height: 0.1px; opacity: 0; overflow: hidden; position: absolute; z-index: -1; } .input-radio, .label--pointer { cursor: pointer; } #claim-name-input { } #input-success-claim-name { } .span--relative { position: relative; } .span--absolute { position: absolute; bottom: 0px; right: 0px; } /* modifiers */ .select--arrow { -moz-appearance:none; -webkit-appearance: none; background: url('../icon/Shape.svg') no-repeat right; cursor: pointer; padding-right: 1.5em; } .input-text--primary, .select--primary { border-bottom: 1px solid #9b9b9b; } .input-text--primary:focus, .select--primary:focus { border-bottom: 1px solid #9b9b9b; } .textarea--primary { border-bottom: 1px solid #9b9b9b; } .textarea--primary:focus { border-bottom: 1px solid #9b9b9b; } .input-text--full-width, .textarea--full-width { width: calc(100% - 0.6em); } .input-disabled--full-width { width: calc(100% - 1em - 2px); } .url-text--primary, .url-text--secondary { margin:0px; padding:0px; } .url-text--primary { color: black; } .url-text--secondary { color: #9b9b9b; } /* BUTTONS */ button { cursor: pointer; } .button--primary { border: 1px solid black; padding: 0.5em; margin: 0.5em 0.3em 0.5em 0.3em; color: black; background-color: white; } .button--primary:hover { border: 1px solid #4156C5; color: white; background-color: #4156C5; } .button--primary:active{ border: 1px solid #4156C5; color: white; background-color: white; } .button--large{ margin: 0px; width: calc(100% - 2px); padding: 2rem; font-size: x-large; } .button--cancel{ border: 0px; background-color: white; color: #9b9b9b; } /* TABLES */ table { width: 100%; text-align: left; } /* NAV BAR */ .nav-bar { border-bottom: 0.5px solid #cacaca; } .nav-bar--left { align-self: center; } .nav-bar-tagline { font-size: small; } .nav-bar-link { padding: 1.5rem; display: inline-block; } /* PUBLISH FORM */ .dropzone { border: 2px dashed #9b9b9b; text-align: center; position: relative; } .dropzone:hover, .dropzone--drag-over { border: 2px dashed #4156C5; cursor: pointer; } #primary-dropzone-instructions, #dropbzone-dragover { z-index: -1; } .position-absolute { position: absolute; top: 0px; left: 0px; height: 100%; width: 100%; } #asset-preview-holder { position: relative; } #asset-preview { display: block; padding: 0.5rem; width: calc(100% - 1rem); } /* Show page */ .video-show, .gifv-show, .image-show { display: block; width: 100%; } #video-player { background-color: #fff; cursor: pointer; margin: 0 auto; margin-top: 2%; border: 1px solid #d0d0d0; padding:6px; } .show-asset-light { max-width: 50%; } /* item lists */ .content-list-item-asset { width: 90%; } /* progress bar */ .progress-bar--inactive { color: lightgrey; } .progress-bar--active { color: #4156C5; } /* other */ .wrap-words { word-wrap: break-word; } #new-release-banner { font-size: small; background-color: #4156C5; color: white; text-align: center; } /* ---- grid items ---- */ .grid-item { width: calc(33% - 2rem); padding: 0px; margin: 1rem; float: left; border: 0.5px solid white; } .grid-item-image { width: 100%; } .grid-item-details { position: absolute; top: 0px; left: 0px; height: 100%; width: 100%; cursor: pointer; } .grid-item-details-text { font-size: medium; margin: 0px; text-align: center; padding: 1em 0px 1em 0px; width: 100%; }