[ Index ] |
PHP Cross Reference of MyBB 1.8.38 |
[Summary view] [Print] [Text view]
1 /*! SCEditor | (C) 2011-2013, Sam Clarke | sceditor.com/license */ 2 html, body, p, code:before, table { 3 margin: 0; 4 padding: 0; 5 font-family: Tahoma, Verdana, Arial, Sans-Serif; 6 font-size: 14px; 7 color: #333; 8 } 9 10 html { 11 /* Needed so the cursor will be placed at the end of the content 12 when the there isn't enought content to fill the full viewport */ 13 height: 100%; 14 15 /* Needed for iOS scrolling bug fix */ 16 overflow: auto; 17 -webkit-overflow-scrolling: touch; 18 } 19 20 body { 21 /* Needed for iOS scrolling bug fix */ 22 position: relative; 23 overflow: auto; 24 25 /* Needed so the cursor will be placed at the end of the content 26 when the there isn't enought content to fill the full viewport */ 27 min-height: 100%; 28 word-wrap: break-word; 29 } 30 31 table, td { 32 border: 1px dotted #000; 33 34 /* Show empty cells so they can be edited */ 35 empty-cells: show; 36 } 37 38 code:before { 39 font-weight: bold; 40 content: 'Code:'; 41 display: block; 42 border-bottom: 1px solid #ccc; 43 padding: 4px 0 3px 0; 44 margin-bottom: 10px; 45 } 46 47 code.phpcodeblock:before { 48 content: 'PHP Code:' !important; 49 } 50 51 code { 52 font-family: Monaco, Consolas, Courier, monospace; 53 font-size: 13px !important; 54 padding: 10px; 55 position: relative; 56 background: white; 57 margin: .25em .05em 0 0; 58 border: 1px solid #ccc; 59 white-space: pre-wrap; 60 display: block; 61 -moz-border-radius: 6px; 62 -webkit-border-radius: 6px; 63 border-radius: 6px; 64 } 65 66 .ie6 code, .ie7 code { 67 margin-top: 0; 68 } 69 70 code:before, code { 71 display: block; 72 text-align: left; 73 } 74 75 blockquote { 76 position: relative; 77 background: white; 78 margin: .25em .05em 0 0; 79 border: 1px solid #ccc; 80 padding: 10px; 81 -moz-border-radius: 6px; 82 -webkit-border-radius: 6px; 83 border-radius: 6px; 84 } 85 86 blockquote cite { 87 font-weight: bold; 88 font-style: normal; 89 display: block; 90 font-size: 1em; 91 border-bottom: 1px solid #ccc; 92 margin-bottom: 10px; 93 padding-bottom: 3px; 94 } 95 96 /* prevent divs from being collapsed */ 97 div { 98 min-height: 1.25em; 99 } 100 101 h1, h2, h3, h4, h5, h6 { 102 padding: 0; 103 margin: 0; 104 } 105 106 ul, ol { 107 margin-top: 0; 108 margin-bottom: 0; 109 padding-top: 0; 110 padding-bottom: 0; 111 } 112 113 img { 114 max-width: 100%; 115 } 116 117 font[size="1"] { 118 font-size: xx-small; 119 } 120 121 font[size="2"] { 122 font-size: x-small; 123 } 124 125 font[size="3"] { 126 font-size: small; 127 } 128 129 font[size="4"] { 130 font-size: medium; 131 } 132 133 font[size="5"] { 134 font-size: large; 135 } 136 137 font[size="6"] { 138 font-size: x-large; 139 } 140 141 font[size="7"] { 142 font-size: xx-large; 143 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
2005 - 2021 © MyBB.de | Alle Rechte vorbehalten! | Sponsor: netcup | Cross-referenced by PHPXref |