Advertisement
Guest User

Untitled

a guest
Aug 31st, 2016
319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.43 KB | None | 0 0
  1.  
  2. /****************************************
  3.   ==== RESETS
  4. ****************************************/
  5.  
  6.  
  7. html,body,div,canvas
  8. {
  9. margin: 0; padding: 0; width: 100%;
  10.   height: 100%; overflow: hidden;
  11. }
  12.  
  13. ::-moz-selection
  14. {
  15.  color: #000000; text-shadow: none;
  16. }
  17.  
  18. ::selection
  19. {  
  20. color: #333; text-shadow: none;
  21. }
  22.  
  23. .clear:after
  24. {
  25. visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0;
  26. }
  27.  
  28. .clear
  29. {
  30. display: inline-table; clear: both;
  31. }
  32. /* Hides from IE-mac \*/ *
  33. html .clear
  34. {
  35. height: 1%;
  36. }
  37. .clear
  38. {
  39. display: block;
  40. }
  41. /* End hide from IE-mac */
  42.  
  43. /****************************************
  44.   ==== LAYOUT
  45. ****************************************/
  46.  
  47.  
  48. html, body
  49. {
  50. width: 100%; height: 100%; font-family: Helvetica, Verdana, Arial, sans-serif;
  51. }
  52.  
  53. body
  54. {
  55. }
  56.  
  57. p.header, p.footer
  58. {
  59. display: none;
  60. }
  61.  
  62. div.logo
  63. {
  64. width: 204px; height: 38px; float: left; background: url(logo.png) 0 0 no-repeat; position: relative; z-index: 10;
  65. }
  66.  
  67.  
  68. .template-wrap
  69. {
  70. position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%);
  71. }
  72.  
  73. .template-wrap canvas
  74. {
  75. margin: 0 0 10px 0; position: relative; z-index: 9; box-shadow: 0 10px 30px rgba(0,0,0,0); -moz-box-shadow: 0 10px 30px rgba(0,0,0,0);
  76. }
  77.  
  78.  
  79. body.template
  80. {
  81. }
  82.  
  83. .template
  84. .template-wrap
  85. {
  86. }
  87.  
  88. .template
  89. .template-wrap canvas
  90. {
  91. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement