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.
 
 
 
 

212 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. color: #00441d;
  81. text-decoration: none;
  82. }
  83. .site .title a:hover {
  84. color: black;
  85. }
  86. .site .title a.extra {
  87. color: #aaa;
  88. text-decoration: none;
  89. margin-left: 1em;
  90. }
  91. .site .title a.extra:hover {
  92. color: black;
  93. }
  94. .site .meta {
  95. color: #aaa;
  96. }
  97. .site .footer {
  98. font-size: 70%;
  99. color: #666;
  100. border-top: 4px solid #eee;
  101. margin-top: 2em;
  102. overflow: hidden;
  103. display: block;
  104. }
  105. .site .footer .contact {
  106. }
  107. .site .footer .contact li {
  108. display: inline-block;
  109. }
  110. .site .footer .contact a {
  111. color: #8085C1;
  112. }
  113. .site .footer .copyright {
  114. float: right;
  115. display: inline;
  116. }
  117. /*****************************************************************************/
  118. /*
  119. /* Posts
  120. /*
  121. /*****************************************************************************/
  122. #post {
  123. }
  124. /* standard */
  125. #post pre {
  126. border: 1px solid #ddd;
  127. background-color: #eef;
  128. padding: 0 .4em;
  129. }
  130. #post ul,
  131. #post ol {
  132. margin-left: 1.35em;
  133. }
  134. #post small {
  135. font-size: 12px;
  136. }
  137. #post code {
  138. border: 1px solid #ddd;
  139. background-color: #eef;
  140. font-size: 85%;
  141. padding: 0 .2em;
  142. }
  143. #post pre code {
  144. border: none;
  145. }
  146. /* terminal */
  147. #post pre.terminal {
  148. border: 1px solid black;
  149. background-color: #333;
  150. color: white;
  151. }
  152. #post pre.terminal code {
  153. background-color: #333;
  154. }
  155. #related {
  156. margin-top: 2em;
  157. }
  158. #related h2 {
  159. margin-bottom: 1em;
  160. }
  161. nav.post_nav{
  162. font-size: 12px;
  163. padding: 12px;
  164. padding-right: 24px;
  165. }