custom.css 916 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. _______________________________
  3. Desktop version layout - place your custom code here */
  4. body {
  5. }
  6. .hmenu {
  7. background-color: #333;
  8. text-align: center;
  9. color: white;
  10. }
  11. .post
  12. {
  13. font-family: Georgia, "DejaVu Serif", Times, "Times New Roman", serif;
  14. font-size: 1.0em;
  15. line-height: 1.5em;
  16. color: #111;
  17. text-align: justify;
  18. }
  19. /*
  20. _______________________________
  21. Mobile version - preset code from cssgrid.net */
  22. @media handheld, only screen and (max-width: 767px) {
  23. .examplecontainer {}
  24. body {}
  25. }
  26. /*
  27. _______________________________
  28. Provide higher res assets for iPhone 4 - preset code from cssgrid.net */
  29. @media only screen and (-webkit-min-device-pixel-ratio: 2) {
  30. /* An example of how to override an image with one twice the size for iPhone 4. Specify the original pixel size with background-size.
  31. .download {
  32. background: url(../img/downarrow@2x.png) no-repeat;
  33. background-size: 27px 28px;
  34. }
  35. */
  36. }