blog

Source for my blog
git clone git://git.konyahin.xyz/blog
Log | Files | Refs

style.css (5241B)


      1 body {
      2 	font-family: sans-serif ;
      3 	background: white ;
      4 	color: #110000 ;
      5 }
      6 
      7 main {
      8 	max-width: 800px ;
      9 	margin: auto ;
     10 }
     11 
     12 img {
     13 	max-width: 100% ;
     14 }
     15 
     16 header h1 {
     17 	text-align: left ;
     18 }
     19 
     20 footer {
     21         max-width: 800px ;
     22         margin: auto ;
     23 	text-align: left ;
     24 }
     25 
     26 /* For TAGLIST.HTML */
     27 .taglist {
     28 	text-align: center ;
     29 	clear: both ;
     30 }
     31 
     32 /* For NEXTPREV.HTML */
     33 #nextprev {
     34 	/* The container for both the previous and next articles. */
     35 }
     36 #prevart {
     37 	float: left ;
     38 	text-align: left ;
     39 }
     40 #nextart {
     41 	float: right ;
     42 	text-align: right ;
     43 }
     44 #nextart,#prevart {
     45 	max-width: 33% ;
     46 }
     47 /* Background */ .chroma { background-color: #ffffff }
     48 /* Other */ .chroma .x {  }
     49 /* Error */ .chroma .err {  }
     50 /* LineTableTD */ .chroma .lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
     51 /* LineTable */ .chroma .lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; width: auto; overflow: auto; display: block; }
     52 /* LineHighlight */ .chroma .hl { display: block; width: 100%;background-color: #ffffcc }
     53 /* LineNumbersTable */ .chroma .lnt { margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
     54 /* LineNumbers */ .chroma .ln { margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
     55 /* Keyword */ .chroma .k { font-weight: bold }
     56 /* KeywordConstant */ .chroma .kc { font-weight: bold }
     57 /* KeywordDeclaration */ .chroma .kd { font-weight: bold; font-style: italic }
     58 /* KeywordNamespace */ .chroma .kn { font-weight: bold }
     59 /* KeywordPseudo */ .chroma .kp { font-weight: bold }
     60 /* KeywordReserved */ .chroma .kr { font-weight: bold }
     61 /* KeywordType */ .chroma .kt { font-weight: bold }
     62 /* Name */ .chroma .n {  }
     63 /* NameAttribute */ .chroma .na {  }
     64 /* NameBuiltin */ .chroma .nb { font-weight: bold; font-style: italic }
     65 /* NameBuiltinPseudo */ .chroma .bp { font-weight: bold; font-style: italic }
     66 /* NameClass */ .chroma .nc { color: #666666; font-weight: bold; font-style: italic }
     67 /* NameConstant */ .chroma .no { color: #666666; font-weight: bold; font-style: italic }
     68 /* NameDecorator */ .chroma .nd {  }
     69 /* NameEntity */ .chroma .ni {  }
     70 /* NameException */ .chroma .ne {  }
     71 /* NameFunction */ .chroma .nf { color: #666666; font-weight: bold; font-style: italic }
     72 /* NameFunctionMagic */ .chroma .fm {  }
     73 /* NameLabel */ .chroma .nl {  }
     74 /* NameNamespace */ .chroma .nn { color: #666666; font-weight: bold; font-style: italic }
     75 /* NameOther */ .chroma .nx {  }
     76 /* NameProperty */ .chroma .py {  }
     77 /* NameTag */ .chroma .nt {  }
     78 /* NameVariable */ .chroma .nv { color: #666666; font-weight: bold; font-style: italic }
     79 /* NameVariableClass */ .chroma .vc {  }
     80 /* NameVariableGlobal */ .chroma .vg {  }
     81 /* NameVariableInstance */ .chroma .vi {  }
     82 /* NameVariableMagic */ .chroma .vm {  }
     83 /* Literal */ .chroma .l {  }
     84 /* LiteralDate */ .chroma .ld {  }
     85 /* LiteralString */ .chroma .s { color: #666666; font-style: italic }
     86 /* LiteralStringAffix */ .chroma .sa { color: #666666; font-style: italic }
     87 /* LiteralStringBacktick */ .chroma .sb { color: #666666; font-style: italic }
     88 /* LiteralStringChar */ .chroma .sc { color: #666666; font-style: italic }
     89 /* LiteralStringDelimiter */ .chroma .dl { color: #666666; font-style: italic }
     90 /* LiteralStringDoc */ .chroma .sd { color: #666666; font-style: italic }
     91 /* LiteralStringDouble */ .chroma .s2 { color: #666666; font-style: italic }
     92 /* LiteralStringEscape */ .chroma .se { color: #666666; font-style: italic }
     93 /* LiteralStringHeredoc */ .chroma .sh { color: #666666; font-style: italic }
     94 /* LiteralStringInterpol */ .chroma .si { color: #666666; font-style: italic }
     95 /* LiteralStringOther */ .chroma .sx { color: #666666; font-style: italic }
     96 /* LiteralStringRegex */ .chroma .sr { color: #666666; font-style: italic }
     97 /* LiteralStringSingle */ .chroma .s1 { color: #666666; font-style: italic }
     98 /* LiteralStringSymbol */ .chroma .ss { color: #666666; font-style: italic }
     99 /* LiteralNumber */ .chroma .m {  }
    100 /* LiteralNumberBin */ .chroma .mb {  }
    101 /* LiteralNumberFloat */ .chroma .mf {  }
    102 /* LiteralNumberHex */ .chroma .mh {  }
    103 /* LiteralNumberInteger */ .chroma .mi {  }
    104 /* LiteralNumberIntegerLong */ .chroma .il {  }
    105 /* LiteralNumberOct */ .chroma .mo {  }
    106 /* Operator */ .chroma .o {  }
    107 /* OperatorWord */ .chroma .ow { font-weight: bold }
    108 /* Punctuation */ .chroma .p {  }
    109 /* Comment */ .chroma .c { color: #888888; font-style: italic }
    110 /* CommentHashbang */ .chroma .ch { color: #888888; font-style: italic }
    111 /* CommentMultiline */ .chroma .cm { color: #888888; font-style: italic }
    112 /* CommentSingle */ .chroma .c1 { color: #888888; font-style: italic }
    113 /* CommentSpecial */ .chroma .cs { color: #888888; font-weight: bold }
    114 /* CommentPreproc */ .chroma .cp { color: #888888; font-weight: bold }
    115 /* CommentPreprocFile */ .chroma .cpf { color: #888888; font-weight: bold }
    116 /* Generic */ .chroma .g {  }
    117 /* GenericDeleted */ .chroma .gd {  }
    118 /* GenericEmph */ .chroma .ge {  }
    119 /* GenericError */ .chroma .gr {  }
    120 /* GenericHeading */ .chroma .gh {  }
    121 /* GenericInserted */ .chroma .gi {  }
    122 /* GenericOutput */ .chroma .go {  }
    123 /* GenericPrompt */ .chroma .gp {  }
    124 /* GenericStrong */ .chroma .gs {  }
    125 /* GenericSubheading */ .chroma .gu {  }
    126 /* GenericTraceback */ .chroma .gt {  }
    127 /* GenericUnderline */ .chroma .gl {  }
    128 /* TextWhitespace */ .chroma .w {  }