Created
October 14, 2013 02:55
-
-
Save coffeejay/6969981 to your computer and use it in GitHub Desktop.
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
/******************************* | |
Global | |
*******************************/ | |
html, | |
body { | |
font-size: 15px; | |
height: 100%; | |
} | |
body { | |
font-family: "Open Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif; | |
background: #FFFFFF; | |
margin: 0px; | |
padding: 0px; | |
color: #555555; | |
text-rendering: optimizeLegibility; | |
min-width: 320px; | |
} | |
.ui.header { | |
font-family: 'Source Sans Pro', "Helvetica Neue", "Helvetica", "Arial", sans-serif; | |
} | |
/******************************* | |
Global | |
*******************************/ | |
/*------------------- | |
Sidebar | |
--------------------*/ | |
#feed .sidebar { | |
overflow: visible; | |
} | |
/*------------------- | |
Grid | |
--------------------*/ | |
#feed .grid { | |
height: 100%; | |
} | |
#feed > .grid > .column { | |
height: 100%; | |
} | |
/*------------------- | |
Inbox | |
--------------------*/ | |
#feed .inbox.tab { | |
background-color: #FFFFFF; | |
} | |
#feed .inbox.tab .item { | |
padding-top: 1rem; | |
padding-bottom: 1rem; | |
} | |
#feed .inbox.tab .item .rating { | |
margin-top: 0.2rem; | |
} | |
#feed .inbox.tab .item .description { | |
margin-left: 2em; | |
} | |
#feed .page { | |
float: right; | |
margin-top: 0.9em; | |
} | |
#feed .middle.column { | |
padding: 1em 2em; | |
} | |
#feed .right.column { | |
padding: 1em 2em; | |
background-color: #FFFFFF; | |
} | |
/******************************* | |
Responsive | |
*******************************/ | |
@media only screen and (max-width : 1000px) { | |
#feed .inbox .date { | |
float: none; | |
margin-bottom: 0.5em; | |
} | |
} | |
@media only screen and (max-width : 1250px) { | |
#feed .left.column > .menu .item { | |
font-size: 1rem; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment