custom.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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: beige;
  20. border-radius:15px;
  21. moz-border-radius:15px;
  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. }
  26. .siteBanner {
  27. background-image:url(images/oncrashrebootbanner.jpg);
  28. background-repeat:no-repeat;
  29. background-size:cover;
  30. display:block;
  31. }
  32. #siteTitle{
  33. font-family:Consolas, monospace, "Courier New";
  34. font-size:3.0em;
  35. padding-left:0.5em;
  36. margin:0.5em 0px 0.5em 0px;
  37. }
  38. .hmenu {
  39. background-color: #141414;
  40. text-align: center;
  41. color: #999;
  42. padding-top: 0.5em;
  43. padding-bottom: 0.5em;
  44. font-family: Georgia, "DejaVu Serif", Times, "Times New Roman", serif;
  45. font-size: 1.1em;
  46. }
  47. .post {
  48. font-family: Georgia, "DejaVu Serif", Times, "Times New Roman", serif;
  49. font-size: 1.0em;
  50. line-height: 1.5em;
  51. color: #111;
  52. text-align: justify;
  53. }
  54. /*
  55. _______________________________
  56. Mobile version - preset code from cssgrid.net */
  57. @media handheld, only screen and (max-width: 767px) {
  58. .topNavBar {
  59. text-align:center;
  60. }
  61. .pageForeground {
  62. /* Do not show shadow on mobile */
  63. -moz-box-shadow: 0 0 0px 0px #888;
  64. -webkit-box-shadow: 0 0 0px 0px#888;
  65. box-shadow: 0 0 0px 0px #888;
  66. }
  67. .siteBanner {
  68. margin-top:-16px;
  69. }
  70. #siteTitle{
  71. font-size:2.3em;
  72. padding-left:0px;
  73. }
  74. .hmenu {
  75. margin-top:-11px;
  76. }
  77. .examplecontainer {}
  78. body {}
  79. }
  80. /*
  81. _______________________________
  82. Provide higher res assets for iPhone 4 - preset code from cssgrid.net */
  83. @media only screen and (-webkit-min-device-pixel-ratio: 2) {
  84. /* An example of how to override an image with one twice the size for iPhone 4. Specify the original pixel size with background-size.
  85. .download {
  86. background: url(../img/downarrow@2x.png) no-repeat;
  87. background-size: 27px 28px;
  88. }
  89. */
  90. }