<%#
 Copyright 2013-2019 the original author or authors from the JHipster project.

 This file is part of the JHipster project, see https://www.jhipster.tech/
 for more information.

 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
 You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
-%>

/* ==========================================================================
Main page styles
========================================================================== */

<%_ if (styleLibrary === 'bootstrap') { %>
.hipster {
    display: inline-block;
    width: 347px;
    height: 497px;
    background: url("../../content/images/<%=hipster%>.svg") no-repeat center top;
    background-size: contain;
}

/* wait autoprefixer update to allow simple generation of high pixel density media query */
@media only screen and (-webkit-min-device-pixel-ratio: 2),
    only screen and (-moz-min-device-pixel-ratio: 2),
    only screen and (-o-min-device-pixel-ratio: 2/1),
    only screen and (min-resolution: 192dpi),
    only screen and (min-resolution: 2dppx) {
    .hipster {
        background: url("../../content/images/<%=hipster%>.svg") no-repeat center
            top;
        background-size: contain;
    }
}
<%_ } else { _%>
.image-bg {
    min-height: 500px;
    background-size: cover!important;
    background-position: 50%;
}

.pd-tp-2{
    padding-top : 2em;
}

.blob{
    background: #FFFFFF;
}

.desc-col{
    color:black;
}

.call-out{
    color: #11395A;
}

.tagline-pd{
    padding-top: 1em;
    padding-bottom: 1em;
}

.tag{
    font-size: 44px;
}
.tag-msg{
    font-size: 20px;
}
<%_ } _%>
