custom.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /*
  2. _______________________________
  3. Desktop version layout - place your custom code here */
  4. body {
  5. }
  6. .pageBackground {
  7. background-image:url(images/backgroundTexture.png);
  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. #siteTitle{
  37. font-family:Consolas, monospace, "Courier New";
  38. font-size:3.0em;
  39. margin:0 0 0 0;
  40. }
  41. #siteTagline {
  42. font-family:"Palatino Linotype", "MS Serif", "Times New Roman";
  43. color:black;
  44. font-style: italic;
  45. margin: 0em 0px 0em 0px;
  46. font-size: 1.5em;
  47. font-weight: normal;
  48. }
  49. .hmenu {
  50. background-color: #141414;
  51. text-align: center;
  52. color: #999;
  53. padding-top: 0.5em;
  54. padding-bottom: 0.5em;
  55. font-family: Georgia, "DejaVu Serif", Times, "Times New Roman", serif;
  56. font-size: 1.1em;
  57. }
  58. .post {
  59. font-family: Georgia, "DejaVu Serif", Times, "Times New Roman", serif;
  60. font-size: 1.0em;
  61. line-height: 1.5em;
  62. color: #111;
  63. text-align: justify;
  64. }
  65. /*
  66. _______________________________
  67. Mobile version - preset code from cssgrid.net */
  68. @media handheld, only screen and (max-width: 767px) {
  69. .topNavBar {
  70. text-align:center;
  71. }
  72. .pageForeground {
  73. border-radius:0px;
  74. moz-border-radius:0px;
  75. }
  76. .siteBanner {
  77. margin-top:-16px;
  78. }
  79. #siteTitle{
  80. font-size:2.3em;
  81. padding-left:0px;
  82. }
  83. .hmenu {
  84. margin-top:-11px;
  85. }
  86. .examplecontainer {}
  87. body {}
  88. }
  89. /*
  90. _______________________________
  91. Provide higher res assets for iPhone 4 - preset code from cssgrid.net */
  92. @media only screen and (-webkit-min-device-pixel-ratio: 2) {
  93. /* An example of how to override an image with one twice the size for iPhone 4. Specify the original pixel size with background-size.
  94. .download {
  95. background: url(../img/downarrow@2x.png) no-repeat;
  96. background-size: 27px 28px;
  97. }
  98. */
  99. }