custom.css 3.7 KB

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