custom.css 695 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. _______________________________
  3. Desktop version layout - place your custom code here */
  4. body {
  5. }
  6. /*
  7. _______________________________
  8. Mobile version - preset code from cssgrid.net */
  9. @media handheld, only screen and (max-width: 767px) {
  10. .examplecontainer {}
  11. body {}
  12. }
  13. /*
  14. _______________________________
  15. Provide higher res assets for iPhone 4 - preset code from cssgrid.net */
  16. @media only screen and (-webkit-min-device-pixel-ratio: 2) {
  17. /* An example of how to override an image with one twice the size for iPhone 4. Specify the original pixel size with background-size.
  18. .download {
  19. background: url(../img/downarrow@2x.png) no-repeat;
  20. background-size: 27px 28px;
  21. }
  22. */
  23. }