Sha256: 99bfc6cf5ffccd50013b0ea61bd85f6f93e8c90711a4873e3ddbe944c9b2dc75

Contents?: true

Size: 798 Bytes

Versions: 2

Compression:

Stored size: 798 Bytes

Contents

// Import Fonts
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap');

// Branding Text
.phc_dev_strong {
    font-family: 'Roboto', sans-serif;
    font-size: 34px !important;
    font-weight: 700 !important;
}

.phc_dev_light {
    font-family: 'Roboto', sans-serif;
    font-size: 34px !important;
    font-weight: 100 !important;
}

.phc_dev_strong_hero {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.phc_dev_light_hero {
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
}

// Beating Heart Effect for PHCNetco Websites
.hanna_hearts {
    color: #E23636;
    animation: pulse 1s ease infinite,
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
phcthemes_web_theme_pack-5.0.1 app/assets/stylesheets/common/custom/custom.scss
phcthemes_admin_panel_pack-5.1.3 app/assets/stylesheets/common/custom/custom.scss