custom.css 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  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-bottom: 1.0em;
  60. }
  61. .publicationDate {
  62. margin-top: -4em;
  63. margin-bottom: 1.0em;
  64. display: block;
  65. background-color: white;
  66. margin-right: 0em;
  67. width: 12.2em;
  68. padding: 0em 0.5em 0em 0.5em;
  69. font-family: georgia;
  70. font-size: 1.0em;
  71. color: dimGray;
  72. font-style: normal;
  73. }
  74. .post {
  75. font-family: Georgia, "DejaVu Serif", Times, "Times New Roman", serif;
  76. font-size: 1.0em;
  77. line-height: 1.5em;
  78. color: #111;
  79. text-align: justify;
  80. }
  81. /*
  82. _______________________________
  83. Mobile version - preset code from cssgrid.net */
  84. @media handheld, only screen and (max-width: 767px) {
  85. .topNavBar {
  86. text-align:center;
  87. }
  88. .pageForeground {
  89. border-radius:0px;
  90. moz-border-radius:0px;
  91. }
  92. .siteBanner {
  93. margin-top:-16px;
  94. padding-left: 0.2em;
  95. padding-right: 0.2em;
  96. background-position: bottom center;
  97. }
  98. #siteTitle{
  99. font-size:2.3em;
  100. padding-left:0px;
  101. }
  102. .hmenu {
  103. margin-top:-11px;
  104. }
  105. .publicationDate {
  106. margin-top:-2.5em;
  107. margin-left:5em;
  108. }
  109. .examplecontainer {}
  110. body {}
  111. }
  112. /*
  113. _______________________________
  114. Provide higher res assets for iPhone 4 - preset code from cssgrid.net */
  115. @media only screen and (-webkit-min-device-pixel-ratio: 2) {
  116. /* An example of how to override an image with one twice the size for iPhone 4. Specify the original pixel size with background-size.
  117. .download {
  118. background: url(../img/downarrow@2x.png) no-repeat;
  119. background-size: 27px 28px;
  120. }
  121. */
  122. }
  123. /* from http://css-tricks.com/snippets/css/media-queries-for-standard-devices/ */
  124. /* Smartphones (portrait and landscape) ----------- */
  125. @media only screen
  126. and (min-device-width : 320px)
  127. and (max-device-width : 480px) {
  128. /* Styles */
  129. }
  130. /* Smartphones (landscape) ----------- */
  131. @media only screen
  132. and (min-width : 321px) {
  133. /* Styles */
  134. }
  135. /* Smartphones (portrait) ----------- */
  136. @media handheld, only screen and (max-width : 320px) {
  137. /* Styles */
  138. #siteTitle{
  139. font-size:1.8em;
  140. padding-left:0px;
  141. }
  142. #siteTagline {
  143. font-size:0.9em;
  144. }
  145. .publicationDate {
  146. margin-top:-2.5em;
  147. margin-left:2em;
  148. }
  149. }