123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491 |
- * {
- padding: 0;
- margin: 0;
- }
- *, *:before, *:after {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- }
- body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td,hr,button,article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{
- margin: 0;
- padding: 0;
- }
- article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
- display: block;
- }
- audio, canvas, video {
- display: inline-block;
- }
- img {
- border: none;
- vertical-align: middle;
- }
- ul, ol {
- /*list-style: none;*/
- }
- .clear {
- *zoom: 1; /* for IE 6/7 */
- }
- .clear:before, .clear:after {
- height: 0;
- content: "";
- font-size: 0;
- display: table;
- line-height: 0; /* for Opera */
- visibility: hidden;
- }
- .clear:after {
- clear: both;
- }
- body {
- font-size: 14px;
- color: #666;
- font-family: "Microsoft YaHei", "微软雅黑", Helvetica, Tahoma, STXihei, "华文细黑", STHeiti, "Helvetica Neue", Helvetica, Tahoma, "Droid Sans", "wenquanyi micro hei", FreeSans, Arimo, Arial, SimSun, "宋体", Heiti, "黑体", sans-serif;
- background: #fff;
- text-align: center;
- }
- #layout {
- text-align: left;
- }
- #layout > header, .btns {
- padding: 15px 0;
- width: 90%;
- margin: 0 auto;
- }
- .btns {
- padding-top: 0;
- }
- .btns button {
- padding: 2px 8px;
- }
- #layout > header > h1 {
- font-size: 20px;
- margin-bottom: 10px;
- }
- .btns button, .btn {
- padding: 8px 10px;
- background: #fff;
- border: 1px solid #ddd;
- -webkit-border-radius: 3px;
- border-radius: 3px;
- cursor: pointer;
- -webkit-transition: background 300ms ease-out;
- transition: background 300ms ease-out;
- }
- .btns button:hover, .btn:hover {
- background: #f6f6f6;
- }
- #json-templ,#beautify-json-dialog{ position:fixed; float:left; top:100px; left:300px; border:2px solid #ccc; display:none; z-index:999999;}
- .markdown-body.editormd-preview-container table tr td{ max-width:300px;}
- .btn-primary {
- background-color: #006dcc;
- }
- .btn-primary:hover {
- background-color: #04c;
- }
- #page_title,
- #cat_id,
- #order {
- height: 30px;
- }
- #cat_id ,#parent_cat_id {
- width: 120px;
- }
- #s_number {
- width: 120px;
- margin-right: 20px;
- height: 28px;
- }
- ol.linenums li {
- list-style-type: none !important;
- }
|