Created
June 7, 2018 03:35
-
-
Save prantu/488f8b711c63dc1aeba0049fe568da2d to your computer and use it in GitHub Desktop.
This file contains hidden or 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
.fw-400 { | |
font-weight: 400; | |
} | |
.fw-500 { | |
font-weight: 500; | |
} | |
.fw-300 { | |
font-weight: 300; | |
} | |
.fw-200 { | |
font-weight: 200; | |
} | |
.fw-600-2 { | |
font-weight: 600; | |
} | |
.no-underline-hover:hover { | |
text-decoration: none; | |
} | |
.border-spotlight { | |
border-color: #00BF9B; | |
} | |
.border-spotlight-hover:hover { | |
border-color: #27e4c1; | |
} | |
.bg-spotlight-hover:hover { | |
background-color: #27e4c1; | |
} | |
.color-spotlight-hover:hover { | |
color: #27e4c1; | |
} | |
.fs-62 { | |
font-size: 62px; | |
} | |
.lh-tiny { | |
line-height: 1; | |
} | |
.rounded-right-30 { | |
border-radius: 0 30px 30px 0; | |
} | |
.rounded-left-30 { | |
border-radius: 30px 0px 0px 30px; | |
} | |
.rounded-30 { | |
border-radius: 30px; | |
} | |
.rounded-15 { | |
border-radius: 15px; | |
} | |
.shadow-spotlight { | |
-webkit-box-shadow: 2px 3px 20px 11px rgba(0, 191, 155, 0.05); | |
box-shadow: 2px 3px 20px 11px rgba(0, 191, 155, 0.05); | |
} | |
@media (max-width: 767px) { | |
.phone-rounded-30 { | |
border-radius: 30px; | |
} | |
} | |
.btn.nohover:hover { | |
border-color: inherit; | |
color: inherit; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment