custom.css 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /*
  2. _______________________________
  3. Desktop version layout - place your custom code here */
  4. body {
  5. }
  6. .pageBackground {
  7. background-image:url(images/background_texture_wood.png), url(images/binder.jpg);
  8. background-repeat:repeat, repeat-y;
  9. }
  10. .pageForeground {
  11. background-color: beige;
  12. border-radius:15px;
  13. moz-border-radius:15px;
  14. -moz-box-shadow: 0 0 5px 5px #888;
  15. -webkit-box-shadow: 0 0 5px 5px#888;
  16. box-shadow: 0 0 5px 5px #888;
  17. }
  18. a.banner {
  19. background-image:url(images/oncrashrebootbanner.jpg);
  20. background-repeat:no-repeat;
  21. background-size:cover;
  22. }
  23. .hmenu {
  24. background-color: #333;
  25. text-align: center;
  26. color: white;
  27. }
  28. .post {
  29. font-family: Georgia, "DejaVu Serif", Times, "Times New Roman", serif;
  30. font-size: 1.0em;
  31. line-height: 1.5em;
  32. color: #111;
  33. text-align: justify;
  34. }
  35. /*
  36. _______________________________
  37. Mobile version - preset code from cssgrid.net */
  38. @media handheld, only screen and (max-width: 767px) {
  39. .pageBackground {
  40. background-image:url(images/background_texture_wood.png);
  41. background-repeat:repeat;
  42. padding-right:8px;
  43. padding-left:8px;
  44. }
  45. .examplecontainer {}
  46. body {}
  47. }
  48. /*
  49. _______________________________
  50. Provide higher res assets for iPhone 4 - preset code from cssgrid.net */
  51. @media only screen and (-webkit-min-device-pixel-ratio: 2) {
  52. /* An example of how to override an image with one twice the size for iPhone 4. Specify the original pixel size with background-size.
  53. .download {
  54. background: url(../img/downarrow@2x.png) no-repeat;
  55. background-size: 27px 28px;
  56. }
  57. */
  58. }