bartik.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. @import url("//fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&lang=en");
  2. html{height: 100%}
  3. body {
  4. font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  5. line-height: 1.5;
  6. font-size: 87.5%;
  7. word-wrap: break-word;
  8. margin: 0;
  9. padding: 10px;
  10. border: 0;
  11. outline: 0;
  12. background: #fff;
  13. height: 100%;
  14. border: 1px solid #d8dde5;
  15. -webkit-box-sizing: border-box;
  16. -moz-box-sizing: border-box;
  17. box-sizing: border-box;
  18. }
  19. h1,
  20. h2,
  21. h3,
  22. h4,
  23. h5,
  24. h6 {
  25. margin: 1.0em 0 0.5em;
  26. font-weight: inherit;
  27. }
  28. h1 {
  29. font-size: 1.357em;
  30. color: #000;
  31. }
  32. h2 {
  33. font-size: 1.143em;
  34. }
  35. p {
  36. margin: 0 0 1.2em;
  37. }
  38. del {
  39. text-decoration: line-through;
  40. }
  41. tr:nth-child(odd) {
  42. background-color: #dddddd;
  43. }
  44. img {
  45. outline: 0;
  46. }
  47. code {
  48. background-color: #f2f2f2;
  49. background-color: rgba(40, 40, 0, 0.06);
  50. }
  51. pre {
  52. background-color: #f2f2f2;
  53. background-color: rgba(40, 40, 0, 0.06);
  54. margin: 10px 0;
  55. overflow: hidden;
  56. padding: 15px;
  57. white-space: pre-wrap;
  58. }
  59. pre code {
  60. font-size: 100%;
  61. background-color: transparent;
  62. }
  63. blockquote {
  64. background: #f7f7f7;
  65. border-left: 1px solid #bbb;
  66. font-style: italic;
  67. margin: 1.5em 10px;
  68. padding: 0.5em 10px;
  69. }
  70. blockquote:before {
  71. color: #bbb;
  72. content: "\201C";
  73. font-size: 3em;
  74. line-height: 0.1em;
  75. margin-right: 0.2em;
  76. vertical-align: -.4em;
  77. }
  78. blockquote:after {
  79. color: #bbb;
  80. content: "\201D";
  81. font-size: 3em;
  82. line-height: 0.1em;
  83. vertical-align: -.45em;
  84. }
  85. blockquote > p:first-child {
  86. display: inline;
  87. }
  88. table {
  89. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  90. border: 0;
  91. border-spacing: 0;
  92. font-size: 0.857em;
  93. margin: 10px 0;
  94. width: 100%;
  95. }
  96. table table {
  97. font-size: 1em;
  98. }
  99. table tr th {
  100. background: #757575;
  101. background: rgba(0, 0, 0, 0.51);
  102. border-bottom-style: none;
  103. }
  104. table tr th,
  105. table tr th a,
  106. table tr th a:hover {
  107. color: #FFF;
  108. font-weight: bold;
  109. }
  110. table tbody tr th {
  111. vertical-align: top;
  112. }
  113. tr td,
  114. tr th {
  115. padding: 4px 9px;
  116. border: 1px solid #fff;
  117. text-align: left; /* LTR */
  118. }
  119. tr:nth-child(odd) {
  120. background: #e4e4e4;
  121. background: rgba(0, 0, 0, 0.105);
  122. }
  123. tr,
  124. tr:nth-child(even) {
  125. background: #efefef;
  126. background: rgba(0, 0, 0, 0.063);
  127. }
  128. a {
  129. color: #0071B3;
  130. }
  131. a:hover,
  132. a:focus {
  133. color: #018fe2;
  134. }
  135. a:active {
  136. color: #23aeff;
  137. }
  138. a:link,
  139. a:visited {
  140. text-decoration: none;
  141. }
  142. a:hover,
  143. a:active,
  144. a:focus {
  145. text-decoration: underline;
  146. }