Last active
December 19, 2015 04:39
-
-
Save ShaneGowland/5898394 to your computer and use it in GitHub Desktop.
Makes Feedbin (feedbin.me) look stylistically more comfortable on Windows. Replaces fonts with Microsoft's 'Segoe' font family and increases use of white backgrounds and whitespace (à la Metro).
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
.feeds-wrap { | |
background-color: rgb(255, 255, 255); | |
position: relative; | |
border-right: 1px solid #b4b7bd; | |
} | |
.entries-wrap { | |
background-color: rgba(234, 234, 234, 0.06); | |
position: relative; | |
border-right: 1px solid #b4b7bd; | |
} | |
.title { | |
font-family: 'Segoe UI', Helvetica; | |
font-weight: lighter; | |
font-size: 16px; | |
} | |
.entries ul li .feed-title { | |
font-size: 11px; | |
line-height: 1.3; | |
margin-bottom: 3px; | |
margin-top: 3px; | |
color: #333; | |
} | |
.entries ul li .body { | |
display: none; | |
} | |
h1 { | |
font-family: 'Segoe UI'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment