BaySec website source
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

213 lines
3.1 KiB

  1. /*****************************************************************************/
  2. /*
  3. /* Common
  4. /*
  5. /*****************************************************************************/
  6. /* Global Reset */
  7. * {
  8. margin: 0;
  9. padding: 0;
  10. }
  11. html, body {
  12. height: 100%;
  13. }
  14. body {
  15. background-color: white;
  16. /* font: 16px helvetica, arial, clean, sans-serif;
  17. *font-size: small;
  18. */
  19. text-align: center;
  20. font-family: "Menlo", "Monaco", "Lucida Console", "Courier New", "Courier", "monospace";
  21. font-size: medium;
  22. }
  23. h1, h2, h3, h4, h5, h6 {
  24. font-size: 100%;
  25. }
  26. h1 {
  27. margin-bottom: 1em;
  28. }
  29. p {
  30. margin: 1em 0;
  31. }
  32. a {
  33. color: #00aa19;
  34. }
  35. a:hover {
  36. color: black;
  37. }
  38. a:visited {
  39. color: #006f2c;
  40. }
  41. table {
  42. font-size: inherit;
  43. font: 100%;
  44. }
  45. /*****************************************************************************/
  46. /*
  47. /* Home
  48. /*
  49. /*****************************************************************************/
  50. ul.posts {
  51. list-style-type: none;
  52. margin-bottom: 2em;
  53. }
  54. ul.posts li {
  55. line-height: 1.75em;
  56. }
  57. ul.posts span {
  58. color: #aaa;
  59. font-family: Monaco, "Courier New", monospace;
  60. font-size: 80%;
  61. }
  62. /*****************************************************************************/
  63. /*
  64. /* Site
  65. /*
  66. /*****************************************************************************/
  67. .site {
  68. font-size: 110%;
  69. text-align: justify;
  70. width: 40em;
  71. margin: 1.5em auto 2em auto;
  72. line-height: 1.5em;
  73. }
  74. .title {
  75. color: #006f29;
  76. font-weight: bold;
  77. margin-bottom: 2em;
  78. }
  79. .site .title a {
  80. font-size: 2em;
  81. color: #00441d;
  82. text-decoration: none;
  83. }
  84. .site .title a:hover {
  85. color: black;
  86. }
  87. .site .title a.extra {
  88. color: #aaa;
  89. text-decoration: none;
  90. margin-left: 1em;
  91. }
  92. .site .title a.extra:hover {
  93. color: black;
  94. }
  95. .site .meta {
  96. color: #aaa;
  97. }
  98. .site .footer {
  99. font-size: 70%;
  100. color: #666;
  101. border-top: 4px solid #eee;
  102. margin-top: 2em;
  103. overflow: hidden;
  104. display: block;
  105. }
  106. .site .footer .contact {
  107. }
  108. .site .footer .contact li {
  109. display: inline-block;
  110. }
  111. .site .footer .contact a {
  112. color: #8085C1;
  113. }
  114. .site .footer .copyright {
  115. float: right;
  116. display: inline;
  117. }
  118. /*****************************************************************************/
  119. /*
  120. /* Posts
  121. /*
  122. /*****************************************************************************/
  123. #post {
  124. }
  125. /* standard */
  126. #post pre {
  127. border: 1px solid #ddd;
  128. background-color: #eef;
  129. padding: 0 .4em;
  130. }
  131. #post ul,
  132. #post ol {
  133. margin-left: 1.35em;
  134. }
  135. #post small {
  136. font-size: 12px;
  137. }
  138. #post code {
  139. border: 1px solid #ddd;
  140. background-color: #eef;
  141. font-size: 85%;
  142. padding: 0 .2em;
  143. }
  144. #post pre code {
  145. border: none;
  146. }
  147. /* terminal */
  148. #post pre.terminal {
  149. border: 1px solid black;
  150. background-color: #333;
  151. color: white;
  152. }
  153. #post pre.terminal code {
  154. background-color: #333;
  155. }
  156. #related {
  157. margin-top: 2em;
  158. }
  159. #related h2 {
  160. margin-bottom: 1em;
  161. }
  162. nav.post_nav{
  163. font-size: 12px;
  164. padding: 12px;
  165. padding-right: 24px;
  166. }