custom.css 1.8 KB

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