custom.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. /*
  2. _______________________________
  3. Desktop version layout - place your custom code here */
  4. body {
  5. }
  6. .pageBackground {
  7. background-image:url(images/woodTexture.jpg);
  8. background-repeat:repeat;
  9. }
  10. .topNavBar {
  11. background-color: black;
  12. color: #999;
  13. font-family: Consolas,monospace, "Courier New";
  14. font-size: 0.8em;
  15. text-align:right;
  16. line-height:1.6em;
  17. }
  18. .pageForeground {
  19. background-color: whiteSmoke;
  20. border-radius:7px;
  21. moz-border-radius:7px;
  22. -moz-box-shadow: 0 0 5px 5px #888;
  23. -webkit-box-shadow: 0 0 5px 5px#888;
  24. box-shadow: 0 0 5px 5px #888;
  25. background-image:url(images/foregroundTexture.png);
  26. }
  27. .siteBanner {
  28. background-image:url(images/oncrashrebootbanner.jpg);
  29. background-repeat:no-repeat;
  30. background-size:cover;
  31. display:block;
  32. padding-left: 2em;
  33. padding-top: 2em;
  34. padding-bottom: 2em;
  35. }
  36. a.siteBanner:hover{
  37. text-decoration:none;
  38. }
  39. #siteTitle{
  40. font-family:Consolas, monospace, "Courier New";
  41. font-size:3.0em;
  42. margin:0 0 0 0;
  43. }
  44. #siteTagline {
  45. font-family:"Palatino Linotype", "MS Serif", "Times New Roman";
  46. color:black;
  47. font-style: italic;
  48. margin: 0em 0px 0em 0px;
  49. font-size: 1.5em;
  50. font-weight: normal;
  51. }
  52. .hmenu {
  53. background-color: #141414;
  54. text-align: center;
  55. color: #999;
  56. padding-top: 0.5em;
  57. padding-bottom: 0.5em;
  58. font-family: Georgia, "DejaVu Serif", Times, "Times New Roman", serif;
  59. font-size: 1.1em;
  60. }
  61. .articleTitle {
  62. border-top: 1px solid #CCC;
  63. border-bottom: 1px solid #CCC;
  64. font-size: 3.2em;
  65. color: darkRed;
  66. font-weight: normal;
  67. font-family: Georgia, "DejaVu Serif", Times, "Times New Roman", serif;
  68. line-height: 1.5;
  69. margin-left:0.5em;
  70. margin-bottom: 1.0em;
  71. }
  72. .publicationDate {
  73. margin-top: -4em;
  74. margin-bottom: 1.0em;
  75. margin-left: 9.0em;
  76. display: block;
  77. background-color: whiteSmoke;
  78. background-image: url(images/foregroundTexture.png);
  79. margin-right: 0em;
  80. width: 12.2em;
  81. padding: 0em 0.5em 0em 0.5em;
  82. font-family: georgia;
  83. font-size: 1.0em;
  84. color: dimGray;
  85. font-style: normal;
  86. }
  87. .post {
  88. font-family: Georgia, "DejaVu Serif", Times, "Times New Roman", serif;
  89. font-size: 1.0em;
  90. line-height: 1.5em;
  91. color: #111;
  92. text-align: justify;
  93. }
  94. /*
  95. _______________________________
  96. Mobile version - preset code from cssgrid.net */
  97. @media handheld, only screen and (max-width: 767px) {
  98. .topNavBar {
  99. text-align:center;
  100. }
  101. .pageForeground {
  102. border-radius:0px;
  103. moz-border-radius:0px;
  104. }
  105. .siteBanner {
  106. margin-top:-16px;
  107. padding-left: 0.2em;
  108. padding-right: 0.2em;
  109. background-position: bottom center;
  110. }
  111. #siteTitle{
  112. font-size:2.3em;
  113. padding-left:0px;
  114. }
  115. .hmenu {
  116. margin-top:-11px;
  117. }
  118. .examplecontainer {}
  119. body {}
  120. }
  121. /*
  122. _______________________________
  123. Provide higher res assets for iPhone 4 - preset code from cssgrid.net */
  124. @media only screen and (-webkit-min-device-pixel-ratio: 2) {
  125. /* An example of how to override an image with one twice the size for iPhone 4. Specify the original pixel size with background-size.
  126. .download {
  127. background: url(../img/downarrow@2x.png) no-repeat;
  128. background-size: 27px 28px;
  129. }
  130. */
  131. }