Created
February 24, 2017 16:03
-
-
Save dmitru/ea261217085e870a105fca045a3b8c63 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
.app-container .title { | |
font-family: sans-serif; | |
font-weight: lighter; | |
} | |
.theme-light .app-container { | |
color: #408bbd; | |
background-color: white; | |
} | |
.theme-dark .app-container { | |
color: #ddd; | |
background-color: #222; | |
} | |
.app-container .button { | |
cursor: pointer; | |
border-radius: 5px; | |
padding: 15px 32px; | |
display: inline-block; | |
-webkit-transition: color 0.1s, border-color 0.1s, background-color 0.1s; | |
transition: color 0.1s, border-color 0.1s, background-color 0.1s; | |
} | |
.theme-light .app-container .button { | |
border: 2px solid #408bbd; | |
color: #408bbd; | |
border-color: #408bbd; | |
background-color: #fff; | |
text-transform: none; | |
} | |
.theme-light .app-container .button:hover { | |
color: #61b0e7; | |
border-color: #61b0e7; | |
} | |
.theme-dark .app-container .button { | |
border: 1px solid #333; | |
color: #aaa; | |
border-color: #aaa; | |
background-color: #333; | |
text-transform: uppercase; | |
} | |
.theme-dark .app-container .button:hover { | |
color: #ddd; | |
border-color: #ddd; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment