Advertisement
Guest User

Untitled

a guest
Sep 28th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 KB | None | 0 0
  1. html {
  2. height: 100%;
  3. }
  4. body {
  5. background: red;
  6. font-family: 'Open Sans';
  7. min-height: 100%;
  8. width: 100%;
  9. display: -webkit-box;
  10. -webkit-box-orient: horizontal;
  11. -webkit-box-pack: center;
  12. -webkit-box-align: center;
  13. display: -moz-box;
  14. -moz-box-orient: horizontal;
  15. -moz-box-pack: center;
  16. -moz-box-align: center;
  17. display: -ms-flexbox;
  18. -ms-box-orient: horizontal;
  19. -ms-box-pack: center;
  20. -ms-box-align: center;
  21. display: box;
  22. box-orient: horizontal;
  23. box-pack: center;
  24. box-align: center;
  25. text-align: center;
  26. }
  27. .box {
  28. background: none repeat scroll 0 0 #E7F3FF;
  29. border: 4px solid #FFFFFF;
  30. border-radius: 16px 16px 16px 16px;
  31. box-shadow: 0 2px 2px rgba(1, 1, 1, 0.2);
  32. color: #054B98;
  33. height: 620px;
  34. margin: 0 auto 20px;
  35. position: relative;
  36. width: 930px;
  37. }
  38.  
  39. body {
  40. background: red;
  41. font-family: 'Open Sans';
  42. min-height: 100%;
  43. width: 100%;
  44.  
  45. display: -webkit-box;
  46. display: -moz-box;
  47. display: -ms-flexbox;
  48. display: -webkit-flex;
  49. display: flex;
  50.  
  51. -webkit-box-pack: center;
  52. -moz-box-pack: center;
  53. -ms-flex-pack: center;
  54. -webkit-justify-content: center;
  55. justify-content: center;
  56.  
  57. -webkit-box-align: center;
  58. -moz-box-align: center;
  59. -ms-flex-line-pack: center;
  60. -webkit-align-content: center;
  61. align-content: center;
  62. }
  63.  
  64. body {
  65. background: red;
  66. font-family: 'Open Sans';
  67. min-height: 100%;
  68. width: 100%;
  69.  
  70. display: -webkit-box;
  71. display: -moz-box;
  72. display: -ms-flexbox;
  73. display: -webkit-flex;
  74. display: flex;
  75.  
  76. -webkit-box-pack: center;
  77. -moz-box-pack: center;
  78. -ms-flex-pack: center;
  79. -webkit-justify-content: center;
  80. justify-content: center;
  81.  
  82. -webkit-box-align: center;
  83. -moz-box-align: center;
  84.  
  85. -ms-flex-align: center;
  86. -webkit-align-items: center;
  87. align-items: center;
  88. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement