Last active
August 29, 2015 14:08
-
-
Save t-min/89a120c81f18bd0862be 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
| /************************************************************************************ | |
| CLEAR & ALIGNMENT | |
| *************************************************************************************/ | |
| .clear { | |
| clear: both; | |
| } | |
| .left { | |
| float: left; | |
| } | |
| .right { | |
| float: right; | |
| } | |
| .textleft { | |
| text-align: left; | |
| } | |
| .textright { | |
| text-align: right; | |
| } | |
| .textcenter { | |
| text-align: center; | |
| } | |
| /* clearfix */ | |
| .clearfix:after, .widget li:after, #body:after, #footer:after, footer:after, .pagenav:after, #main-nav:after, .menu:after, .gallery:after, #content:after | |
| { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; } | |
| .clearfix, .widget li, #body, #footer, footer, .pagenav, #main-nav, .menu, .gallery, #content | |
| { display: inline-block; } | |
| /* clearfix for ie7 */ | |
| .clearfix, .widget li, #body, #footer, footer, .pagenav, #main-nav, .menu, .gallery, #content | |
| { display: block; zoom: 1; } | |
| /*custum css*/ | |
| body { | |
| padding :10px 50px 20px 20px; | |
| margin-left :50px; | |
| color :140F10; | |
| line-height :150%; | |
| } | |
| h1 { | |
| padding-left :30px; | |
| border-bottom :1px solid #ccc; | |
| } | |
| h2 { | |
| padding-left :20px; | |
| border-bottom :1px solid #ccc; | |
| border-left :10px solid #74717C; | |
| } | |
| p { | |
| padding-left :50px; | |
| } | |
| blockquote { | |
| font-size :14px; | |
| } | |
| /* Gistの表示を直すやつ */ | |
| .line-numbers, .line-pre > .line { | |
| font-size: 12px; | |
| line-height: 1.4; | |
| } | |
| .footer { | |
| font-size :80%; | |
| text-align :center; | |
| background-color :#E1DCF2;} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment