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. font-size: 150%;
  28. margin-bottom: 1em;
  29. }
  30. p {
  31. margin: 1em 0;
  32. }
  33. a {
  34. color: #00aa19;
  35. }
  36. a:hover {
  37. color: black;
  38. }
  39. a:visited {
  40. color: #006f2c;
  41. }
  42. table {
  43. font-size: inherit;
  44. font: 100%;
  45. }
  46. /*****************************************************************************/
  47. /*
  48. /* Home
  49. /*
  50. /*****************************************************************************/
  51. ul.posts {
  52. list-style-type: none;
  53. margin-bottom: 2em;
  54. }
  55. ul.posts li {
  56. line-height: 1.75em;
  57. }
  58. ul.posts span {
  59. color: #aaa;
  60. font-family: Monaco, "Courier New", monospace;
  61. font-size: 80%;
  62. }
  63. /*****************************************************************************/
  64. /*
  65. /* Site
  66. /*
  67. /*****************************************************************************/
  68. .site {
  69. font-size: 110%;
  70. text-align: justify;
  71. width: 40em;
  72. margin: 1.5em auto 2em auto;
  73. line-height: 1.5em;
  74. }
  75. .title {
  76. color: #006f29;
  77. font-weight: bold;
  78. margin-bottom: 2em;
  79. }
  80. .site .title a {
  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. }