Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 19th, 2012  |  syntax: None  |  size: 0.91 KB  |  hits: 6  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. /**
  2.  * The first commented line is your dabblet’s title
  3.  */
  4.  #body {
  5.    min-height: 100%;
  6.    background: beige;
  7.    width: 100%;
  8. }
  9.  
  10. #main {
  11.    display: -webkit-flexbox;
  12.    width: 100%;
  13.    height: 100%;
  14. }
  15.  
  16. #main div {
  17.     flex-pack: center;  
  18.     flex: 1;
  19.     border: 8px solid pink;
  20.     box-sizing: border-box;
  21.     border-radius: 12px;
  22.     padding: 6px;
  23.     margin: 4px;
  24.     transition: all 0.3s ease-in-out;
  25. }
  26.  
  27. #main div:nth-child(2) {
  28.     flex: 2;
  29. }
  30.  
  31. #main div img {
  32.     width: 100%;
  33.     max-width: 700px;
  34. }
  35.  
  36. #main div:last-child {
  37.     margin-right: 0;
  38. }
  39.  
  40. @media all and (orientation: portrait) {
  41.     #main {
  42.          flex-direction: column-reverse;
  43.     }
  44. }
  45.          
  46. @media all and (orientation: landscape) {
  47.    #main {
  48.        flex-direction: row;
  49.    }
  50.    #main div {
  51.       border-color: green;
  52.    }
  53. }
  54.  
  55. @media handheld {
  56.    #media div {
  57.        border: 0;
  58.        padding: 2px;
  59.        background: grey;
  60.        color: purple;
  61.    }
  62. }