Untitled

mail@pastecode.io avatar
unknown
plain_text
2 years ago
2.5 kB
6
Indexable
Never
@font-face {
    font-family: 'Open Sans';
    src: url('OpenSans-Light.woff2') format('woff2'),
    url('OpenSans-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('Montserrat-Bold.woff2') format('woff2'),
    url('Montserrat-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

html, body{
    margin: 0px;
    padding: 0px;
    overflow: hidden; /*Remove scrollbars*/
}

.container {
    position: absolute;
    width: 100%;
    height: 100%;
    
    background: linear-gradient(-180deg, rgba(116, 199, 205, 0.50) 0%, rgba(85, 127, 161, 0.87) 100%), url(bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.loader {
    position: absolute;
    right: 50px;
    bottom: 50px;
    height: 40px;
}

.loader object {
    width: 40px;
}

.content {
    text-align: center;
    padding-top: 23%;
   font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    font-size: 48px;
    font-weight: 300;
    color: white;
}

.content-span {
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    font-size: 48px;
    font-weight: 300;
    color: white;
}

.btn {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    font-size: 12px;
    min-width: 170px;
    border: 3px solid;
    padding: 17px 0;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    border-radius: 0;
    border-color: #8a75cd;
    color: #8a75cd;
    border-color: #fff;
    color: #fff;
}

.btn:hover {
    background: #fff;
    color: #9678DF;
    border-color: #fff;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}