apxtrib/nationschainssave/tribes/smatchit/www/presentation/css/index.css
2023-04-29 06:32:56 +00:00

308 lines
4.7 KiB
CSS

html, body
{
margin: 0;
padding: 0;
height: 100%;
overflow-x: hidden;
background: radial-gradient(50% 50%at 50% 50%, #052e3c, #171718);
}
/* smatchit highlight */
.smatchit
{
background: linear-gradient(104.04deg, var(--color-acqua),var(--color-azure-blue));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: var(--font-weight-bold);
}
/* page structure */
.container
{
position: relative;
width: 100%;
min-height: 100%;
min-height: 100vh;
text-align: center;
font-size: var(--font-size-sm);
color: var(--color-white);
font-family: var(--font-futura-std);
}
/* header and nav (tabs) */
.header
{
width: 100%;
height: 200px;
text-align: center;
}
.header .logo
{
margin-left: auto;
margin-right: auto;
width: 320px;
height: 95px;
padding: 1.5em;
}
.header .tabs
{
position: relative;
top: 6em;
font-family: var(--font-futura-std);
font-weight: var(--font-futura-weight-bold);
font-size: 1em;
text-transform: uppercase;
}
.header .tabs
a:link,
a:visited,
a:hover
{
color: #ffffff;
text-decoration: none;
font-family: var(--font-futura-std);
font-weight: var(--font-futura-weight-bold);
}
#candidate-tab
{
background-image: url('../img/circle-candidates.svg');
background-size: 0;
background-repeat: no-repeat;
background-position: center;
padding: 1.5em;
}
#recruiter-tab
{
background-image: url('../img/circle-recruiters.svg');
background-size: 0;
background-repeat: no-repeat;
background-position: center;
padding: 1.5em;
}
.header .vertical-line
{
width: 1px;
height: 2em;
display: inline-block;
position: inherit;
top: 0.8em;
margin-left: 0.5em;
margin-right: 0.5em;
}
/* content */
.content
{
position: inherit;
top: 2em;
width: 100%;
height: 100%;
text-align: center;
}
.content .title
{
font-size: 1.6em;
font-family: var(--font-futura-std);
font-weight: var(--font-futura-weight-bold);
text-transform: uppercase;
line-height: 1.5em;
}
.content .title .smatchit
{
font-weight: var(--font-futura-weight-bold);
}
.content .text
{
font-family: var(--font-roboto);
font-size: var(--font-size-base);
font-weight: var(--font-weight-reg);
line-height: 1.5em;
}
.content .text-cta
{
height: 1.5em;
font-family: var(--font-roboto);
font-size: var(--font-size-lg);
font-weight: var(--font-weight-bold);
}
.content .underline-candidates
{
background-image: url('../img/underline-candidates.svg');
background-size: 45%;
background-repeat: no-repeat;
background-position: center;
background-position-y: bottom;
}
.content .underline-recruiters
{
background-image: url('../img/underline-recruiters.svg');
background-size: 55%;
background-repeat: no-repeat;
background-position: center;
background-position-y: bottom;
}
.content .screenshot
{
position: relative;
bottom: 0;
margin-left: auto;
margin-right: auto;
padding-top: 4em;
}
.content .candidates-img
{
width: 460px;
height: 630px;
}
.content .recruiters-img
{
max-width: 1064px;
max-height: 472px;
object-fit: cover;
}
#candidate-content
{
position: inherit;
}
#recruiter-content
{
position: inherit;
}
/* footer */
.footer
{
position: fixed;
bottom: 0;
width: 100%;
text-align: left;
font-size: var(--font-size-base);
color: var(--color-near-white);
font-family: var(--font-roboto);
background-color: var(--color-black);
}
.footer .hr
{
width: 100%;
height: 2px;
background-image: url('../img/hr.svg');
background-size: 100%;
}
.footer .title
{
font-size: var(--font-size-lg);
font-weight: var(--font-weight-bold);
}
.footer .text
{
font-size: var(--font-size-base);
line-height: 1.6em;
color: var(--color-light-gray);
}
.footer .error-message
{
font-size: var(--font-size-sm);
color: #ff0033;
}
.footer .input-form
{
transform: translateY(-0.3em);
}
/* input */
.textfield-input
{
border: 1px solid var(--color-white);
outline: none;
background-color: transparent;
color: var(--color-white);
width: 16em;
height: 2em;
}
.textfield-input::placeholder
{
font-style: italic;
font-size: smaller;
font-weight: var(--font-weight-reg);
}
.radio-input
{
cursor: pointer;
transform: translateY(0.15em);
width: 1em;
height: 1em;
}
.button
{
width: 5.75em;
height: 2.5em;
transform: translateY(-0.1em);
border: none;
border-radius: 0.5em;
background-color: var(--color-acqua);
color: var(--color-black);
padding-top: 0.25em;
font-size: var(--font-size-xs);
font-family: var(--font-futura-std);
font-weight: var(--font-futura-weight-bold);
text-align: center;
text-transform: uppercase;
}
.button:disabled
{
background-color: #222222;
color: #333333;
}