Created
December 28, 2009 13:07
-
-
Save imlucas/264662 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
| /** | |
| * | |
| * FANFEEDR THEME | |
| * | |
| * Check out http://solutions.mashery.com/public/Mashery/styles/masherycssfw.src.css to see the base structural defaults. | |
| * You can find documentation on customizing your portal at http://solutions.mashery.com/docs/Customizing_Your_Portal | |
| * We discourage making major changes to the layout since it has a standard structure to it which is easy for users | |
| * to use. | |
| * | |
| */ | |
| body { | |
| background: #fff url(http://kellymiyashiro.com/images/fanfeedr/local.gif) repeat-x 0 109px; | |
| color: #010101; | |
| font-size: 13px; | |
| font-family: Arial,sans-serif; | |
| } | |
| h1,h2,h3,h4,h5,h6 { | |
| color: #E02E33; | |
| } | |
| h1, h2{ | |
| border-bottom: 1px solid #CCCCCC; | |
| padding-bottom: 5px; | |
| font-size: 18px; | |
| } | |
| h3 { | |
| font-size: 16px; | |
| } | |
| p {} | |
| a {color: #125fad;} | |
| a:link, | |
| a:visited {color: #125fad} | |
| a:hover, | |
| a:active { | |
| text-decoration: underline; | |
| } | |
| /* All the input fields (text input, textareas, selects) */ | |
| input.input-text, | |
| input.input-password, | |
| input[type^=text], | |
| textarea, | |
| select {} | |
| table {} | |
| table thead th {} | |
| table th a {} | |
| table th a:hover {} | |
| table td {} | |
| table tr.even td {} | |
| div#page { | |
| } | |
| /* Set the overall width */ | |
| div#page, | |
| div#header, | |
| div#content, | |
| div#local, | |
| div#user, | |
| div#user-menu, | |
| div#footer { | |
| width: 960px; | |
| } | |
| /* For pages without navigation (you can set which pages you do not want to have navigation on, for whatever reason) */ | |
| div#page.no_local div#main {} | |
| div#page.no_local div#sub {} | |
| /* For pages without a side column, you can set which pages do or do not have side columns. */ | |
| div#page.no_sub div#main { | |
| width: 960px; | |
| } | |
| /** | |
| * | |
| * HEADER | |
| * | |
| * The header is where your logo, login links, search, and user control links should go. | |
| * | |
| */ | |
| div#header { | |
| } | |
| /* Here is where you put your logo! Yes, it is the background of a div. This div is special because Javascript makes it behave | |
| like a Home link by default, you can change this in the settings if you absolutely must. | |
| You must change the width and height of this div to the same size as your logo. */ | |
| div#branding-logo { | |
| background: url(http://kellymiyashiro.com/images/fanfeedr/logo.png); | |
| margin: 32px 0 0; | |
| width: 227px; | |
| height: 55px; | |
| } | |
| /* END HEADER */ | |
| /** | |
| * | |
| * USER | |
| * | |
| * User information and actions | |
| * | |
| */ | |
| div#user { | |
| /* position: relative; This causes issues in IE6 */ | |
| } | |
| /** | |
| * | |
| * USER NAV | |
| * | |
| * Login, logout, register, and My Account links. | |
| * | |
| */ | |
| div#user-nav { | |
| top: 0; | |
| margin: -85px 0 0; /* Use top margin to move this around when you can. */ | |
| } | |
| div#user-nav ul li {} | |
| /* The user's name, "Signed in as Wally Wombat" */ | |
| div#user-nav ul li span.name {} | |
| div#user-nav ul li a { | |
| font-weight: bold; | |
| } | |
| /* END USER NAV */ | |
| /* END USER */ | |
| /** | |
| * | |
| * LOCAL NAV | |
| * | |
| * This is the main navigation bar. You can customize your links in the Settings page. | |
| * | |
| * The div#local appears AFTER the content for accessbility reasons. Please see | |
| * http: //www.contentwithstyle.co.uk/Articles/17/ for details. | |
| * | |
| * Because the navigation is placed below the content, you will most likely need | |
| * to use absolute positioning. Please make sure you understand positioning before | |
| * trying to customize it! | |
| * | |
| */ | |
| div#local { | |
| background: #595959; | |
| left: 0; | |
| } | |
| div#local li { | |
| margin-right: 15px; | |
| } | |
| div#local li a { | |
| color: #fff; | |
| font-weight: 400; | |
| padding: 0 5px; | |
| } | |
| div#local li.first a { | |
| padding-left: 0; | |
| } | |
| div#local a:hover { | |
| text-decoration: none; | |
| } | |
| div#local li.active a, | |
| div#local li.active a:hover { | |
| } | |
| /* END LOCAL NAV */ | |
| /** | |
| * | |
| * USER MENU | |
| * | |
| * The User Menu contains actions for the user: Start New Entry, New Post, etc. | |
| * | |
| */ | |
| /** | |
| * | |
| * SUB LOCAL NAVIGATION | |
| * | |
| * Links under each primary navigation section. | |
| * | |
| */ | |
| div#user-menu { | |
| display: none; | |
| } | |
| div#user-menu li a { | |
| } | |
| div#user-menu li.active a, | |
| div#user-menu li.active a:hover { | |
| } | |
| /* END SUBLOCAL NAV */ | |
| /* END USER MENU */ | |
| /** | |
| * | |
| * CONTENT | |
| * | |
| * Where the magic happens (Content of page) | |
| * | |
| */ | |
| div#content {} | |
| /** | |
| * | |
| * MAIN | |
| * | |
| * This is where almost all the content for every page is. | |
| * | |
| */ | |
| div#main { | |
| margin-left: 0; | |
| padding: 0; | |
| width: 630px; | |
| margin-right: 10px; | |
| } | |
| /** | |
| * | |
| * BLOG, WIKI, FORUM, and DOCS | |
| * | |
| * Styling for the sections, meta info, file tables, and other parts of these apps. | |
| * | |
| * Remember, there are usually different states of each app type! For example, when browsing the forum the body will have | |
| * an id of #page-forum and a class of .browse. If you click on a forum post to view it, the body will still have the same | |
| * id, but the class will change to .read. This way you can control the different views of each app. | |
| * | |
| */ | |
| /* Comments in all sections except the forum. */ | |
| div#main div.comments ol li.comment { | |
| border: 1px solid #ccc; | |
| } | |
| /** | |
| * | |
| * FORUM | |
| * | |
| * The forum is very different than the blog, wiki, docs, etc. Be sure to check out the markup, the default styling | |
| * should be ok for most people, but you may need to override some of your list (ul, ol) rules that you set in this | |
| * stylesheet. | |
| * | |
| */ | |
| /* The "Start new topic" button */ | |
| body.page-forum a.create-new {} | |
| body.page-forum ol.categories {} | |
| body.page-forum ol.topics {} | |
| body.page-forum ol.comments {} | |
| /* Subject of a thread */ | |
| body.page-forum h3.subject{} | |
| /* The "original post" in each thread looks different by default */ | |
| body.page-forum ol.comments li.comment.first {} | |
| /* END FORUM */ | |
| /* END BLOG, WIKI, FORUM, and DOCS */ | |
| /* END MAIN */ | |
| /** | |
| * | |
| * SUB | |
| * | |
| * The sub div is usually the small sidebar on the blog/wiki/forum, although some may prefer to hide it altogether. | |
| * | |
| * In the Dashboard, the sub is also where the form lives to add new content in the Content page. | |
| * | |
| */ | |
| div#sub { | |
| width: 300px; | |
| margin-right: 0; | |
| padding-top: 0; | |
| } | |
| div#sub a.active { | |
| } | |
| div#sub li{margin-left: 20px;} | |
| div #forum-posts li{list-style: none; margin-left: 0px !important;} | |
| /* END SUB */ | |
| /* END CONTENT */ | |
| /** | |
| * | |
| * FOOTER | |
| * | |
| * Contains your site-info as well as your footer links. | |
| * | |
| */ | |
| div#footer { | |
| } | |
| div#footer ul {} | |
| div#footer ul li {} | |
| div#footer ul li a {} | |
| /** | |
| * | |
| * SITEINFO | |
| * | |
| * The siteinfo you can edit from the Settings page in the Dashboard. | |
| * Usually this contains copyright stuff and credits. | |
| * | |
| */ | |
| div#siteinfo {} | |
| div#siteinfo p {} | |
| /* END SITEINFO */ | |
| /* END FOOTER */ | |
| /* END FANFEEDR THEME */ | |
| .box{ | |
| margin-bottom: 40px; | |
| } | |
| .odd{ | |
| background-color: #EFEFEF; | |
| } | |
| .method { | |
| margin-bottom: 50px; | |
| } | |
| table.feature-table{width: 100%;} | |
| .feature-table-header{font-weight: bold;font-size: 1.5em;} | |
| table.feature-table td{width: 200px;} | |
| table..feature-table td.feature-table-feature{font-weight:bold;width:100px !important;} | |
| .faq-item{margin-bottom: 30px;} | |
| .faq-item-question{font-weight: bold;} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment