custom.css 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. height: 1.6em;
  13. color: #999;
  14. font-family: Consolas,monospace;
  15. font-size: 0.8em;
  16. text-align:right;
  17. line-height:1.6em;
  18. }
  19. .pageForeground {
  20. background-color: beige;
  21. border-radius:15px;
  22. moz-border-radius:15px;
  23. -moz-box-shadow: 0 0 5px 5px #888;
  24. -webkit-box-shadow: 0 0 5px 5px#888;
  25. box-shadow: 0 0 5px 5px #888;
  26. }
  27. a.banner {
  28. background-image:url(images/oncrashrebootbanner.jpg);
  29. background-repeat:no-repeat;
  30. background-size:cover;
  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. .pageBackground {
  53. background-image:url(images/backgroundTexture.png);
  54. background-repeat:repeat;
  55. padding-right:8px;
  56. padding-left:8px;
  57. }
  58. .examplecontainer {}
  59. body {}
  60. }
  61. /*
  62. _______________________________
  63. Provide higher res assets for iPhone 4 - preset code from cssgrid.net */
  64. @media only screen and (-webkit-min-device-pixel-ratio: 2) {
  65. /* An example of how to override an image with one twice the size for iPhone 4. Specify the original pixel size with background-size.
  66. .download {
  67. background: url(../img/downarrow@2x.png) no-repeat;
  68. background-size: 27px 28px;
  69. }
  70. */
  71. }