Created
August 1, 2016 17:27
-
-
Save therealkevinard/82d0ead79bb9e5e68b612095e205dceb to your computer and use it in GitHub Desktop.
SCSS for re-styling https://wordpress.org/plugins/widget-countdown/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$text-color: #e4a923; | |
$font-main: 'Oswald', sans-serif; | |
@mixin font-geometry-base($font-size) { | |
font-size: $font-size; | |
line-height: $font-size * 1.667; | |
} | |
.countdown-outer { | |
.heading { | |
@include font-geometry-base(21px); | |
text-transform: uppercase; | |
font-size: 21px; | |
line-height: 35px; | |
color: #222222; | |
} | |
} | |
.content_countdown#main_countedown_1 { | |
.countdown { | |
span.element_conteiner { | |
min-width: 90px; | |
margin: 0 6px; | |
.time_left { | |
color: $text-color; | |
font-family: $font-main; | |
font-weight: normal; | |
background: none !important; | |
border: 1px solid $text-color; | |
border-radius: 6px; | |
} | |
.time_description { | |
color: $text-color; | |
font-family: $font-main; | |
font-weight: normal; | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment