Last active
May 11, 2020 09:49
-
-
Save moeenio/e9b58cedfcb3f6c680821e5e5ce722da to your computer and use it in GitHub Desktop.
My CSS for Tabliss (Note : the Source Code Pro font has to be installed)
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
* { | |
font-family: "Source Code Pro" !important; | |
font-weight: normal !important; | |
} | |
.Overlay:hover { | |
background-color: transparent; | |
} | |
.Overlay a, .Overlay span { | |
color: #657b83 !important; | |
opacity: 0; | |
transition: all 0.25s; | |
} | |
.Overlay a:after, .Overlay span:after { | |
content: attr(title); | |
} | |
.Overlay a svg, .Overlay span svg { | |
display: none; | |
} | |
.Overlay:hover a { | |
opacity: 1; | |
} | |
.Time { | |
color: #859900; | |
} | |
.Quote, .Message { | |
color: #b58900; | |
} | |
.Weather { | |
color: #d33682; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment