custom.css 1.8 KB

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