custom.css 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. /*
  2. _______________________________
  3. Desktop version layout - place your custom code here */
  4. body {
  5. }
  6. .pageBackground {
  7. background-color:white;
  8. }
  9. .topNavBar {
  10. background-color: black;
  11. color: #999;
  12. font-family: Consolas,monospace, "Courier New";
  13. font-size: 0.8em;
  14. text-align:right;
  15. line-height:1.6em;
  16. }
  17. .pageForeground {
  18. background-color: white;
  19. }
  20. .siteBanner {
  21. display:block;
  22. padding-top: 2em;
  23. padding-bottom: 2em;
  24. }
  25. a#siteTitle{
  26. font-family:Consolas, monospace, "Courier New";
  27. font-size:3.0em;
  28. margin:0 0 0 0;
  29. text-decoration: none;
  30. color: black;
  31. }
  32. a#siteTitle:hover{
  33. color: #610B0B;
  34. }
  35. #siteTagline {
  36. font-family:"Palatino Linotype", "MS Serif", "Times New Roman";
  37. color:black;
  38. font-style: italic;
  39. margin: 0em 0px 0em 0px;
  40. font-size: 1.5em;
  41. font-weight: normal;
  42. }
  43. .hmenu {
  44. text-align: left;
  45. font-family: Georgia, "DejaVu Serif", Times, "Times New Roman", serif;
  46. font-size: 0.9em;
  47. border-top: 1px solid #8C8C8C;
  48. border-bottom: 1px solid #8C8C8C;
  49. text-shadow: #EBEBEB 0 1px;
  50. text-decoration: none;
  51. color:#444;
  52. overflow: hidden;
  53. padding: 0.35em;
  54. }
  55. .searchBox {
  56. text-align: right;
  57. }
  58. .articleTitle {
  59. font-size: 3.2em;
  60. color: darkRed;
  61. font-weight: normal;
  62. font-family: Georgia, "DejaVu Serif", Times, "Times New Roman", serif;
  63. line-height: 1.5;
  64. margin: 0.5em 0;
  65. }
  66. .publicationDate {
  67. background-color: white;
  68. font-family: georgia;
  69. font-size: 1.0em;
  70. color: dimGray;
  71. font-style: normal;
  72. }
  73. .tagsHeading {
  74. background-color: white;
  75. font-family: georgia;
  76. font-sze: 1.0em;
  77. color: #444;
  78. font-style: normal;
  79. padding-top: 0.313em;
  80. }
  81. .tagsHeading a {
  82. color:#444;
  83. text-decoration: none;
  84. }
  85. .tagBox {
  86. list-style: none;
  87. margin: 0;
  88. padding: 0.313em 0;
  89. overflow: hidden;
  90. }
  91. .tagBox li {
  92. line-height: 1.75em;
  93. font-size: 0.9em;
  94. margin-left: 1.25em;
  95. margin-bottom: 0.3em;
  96. }
  97. .tagBox a {
  98. padding: 0.28em 0.375em;
  99. margin: 0.125em;
  100. background: #EEE;
  101. color: #444;
  102. border-radius: 0.188em;
  103. text-decoration: none;
  104. }
  105. .tagBox a span {
  106. vertical-align: super;
  107. font-size: 0.8em;
  108. }
  109. .post {
  110. font-family: Georgia, "DejaVu Serif", Times, "Times New Roman", serif;
  111. font-size: 1.0em;
  112. line-height: 1.5em;
  113. color: #111;
  114. text-align: justify;
  115. }
  116. /*
  117. _______________________________
  118. Mobile version - preset code from cssgrid.net */
  119. @media handheld, only screen and (max-width: 767px) {
  120. .topNavBar {
  121. text-align:center;
  122. }
  123. .pageForeground {
  124. border-radius:0px;
  125. moz-border-radius:0px;
  126. }
  127. .siteBanner {
  128. margin-top:-16px;
  129. padding-left: 0.2em;
  130. padding-right: 0.2em;
  131. background-position: bottom center;
  132. }
  133. #siteTitle{
  134. font-size:2.3em;
  135. padding-left:0px;
  136. }
  137. .hmenu {
  138. margin-top:-11px;
  139. text-align: center;
  140. }
  141. .searchBox {
  142. text-align: center;
  143. }
  144. .examplecontainer {}
  145. body {}
  146. }
  147. /*
  148. _______________________________
  149. Provide higher res assets for iPhone 4 - preset code from cssgrid.net */
  150. @media only screen and (-webkit-min-device-pixel-ratio: 2) {
  151. /* An example of how to override an image with one twice the size for iPhone 4. Specify the original pixel size with background-size.
  152. .download {
  153. background: url(../img/downarrow@2x.png) no-repeat;
  154. background-size: 27px 28px;
  155. }
  156. */
  157. }
  158. /* from http://css-tricks.com/snippets/css/media-queries-for-standard-devices/ */
  159. /* Smartphones (portrait and landscape) ----------- */
  160. @media only screen
  161. and (min-device-width : 320px)
  162. and (max-device-width : 480px) {
  163. /* Styles */
  164. }
  165. /* Smartphones (landscape) ----------- */
  166. @media only screen
  167. and (min-width : 321px) {
  168. /* Styles */
  169. }
  170. /* Smartphones (portrait) ----------- */
  171. @media handheld, only screen and (max-width : 320px) {
  172. /* Styles */
  173. #siteTitle{
  174. font-size:1.8em;
  175. padding-left:0px;
  176. }
  177. #siteTagline {
  178. font-size:0.9em;
  179. }
  180. }