Advertisement
contatowellington

Untitled

Jun 16th, 2018
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. <style type="text/css">
  2. @page
  3. {
  4. size: A4; /* auto is the initial value */
  5. margin: 0mm; /* this affects the margin in the printer settings */
  6. }
  7.  
  8. @font-face {
  9. font-family: helveticaneue;
  10. src: url(Helvetica LT 97 Black Condensed.ttf);
  11. src: url(Helvetica LT 97 Black Condensed.otf) format('opentype'),
  12. url(Helvetica LT 97 Black Condensed.ttf) format('opentype'),
  13. url(Helvetica LT 97 Black Condensed.otf) format('opentype');
  14. font-weight: normal;
  15. font-style: normal;
  16. }
  17.  
  18. .centro {
  19. text-align: center;
  20. margin-top:0px;
  21. }
  22. .imagem {
  23. max-width: 100%;
  24. }
  25. .produto { /* produto */
  26. text-align: center;
  27. margin: 0 auto;
  28. margin-top: 60px;
  29. font-family: Arial, Verdana, Tahoma, Sans-Serif;
  30. color: #333333;
  31. font-size: 50px;
  32. text-transform: uppercase;
  33. font-weight: 900;
  34. font-stretch: expanded;
  35. left: 0;
  36. right: 0;
  37. }
  38. .price{
  39. font-family: helvetica neue, helvetcaneue, 'helveticaneue', 'helvetica neue', 'Anton' !important;
  40. font-size:280px;
  41. color: red;
  42. letter-spacing:10px;
  43. font-weight: 900;
  44.  
  45.  
  46. }
  47. .cents{
  48. font-family: helvetica neue, helvetcaneue, 'helveticaneue', 'helvetica neue', 'Anton' !important;
  49. font-size:140px;
  50. color: red;
  51. font-weight: 900;
  52. display:inline-block;
  53. vertical-align:100px;
  54. letter-spacing:8px;
  55.  
  56. }
  57.  
  58. .cents.top{
  59. vertical-align:top;
  60. }
  61. .posicao { /* descrição */
  62. text-align: center !important;
  63. }
  64. .cifrao{
  65. font-family: Arial, Verdana, Tahoma, Sans-Serif;
  66. color: red;
  67. font-size:30px;
  68. vertical-align:180px;
  69. }
  70. .unidade { /* descrição */
  71.  
  72. text-align: left;
  73. font-family: Arial, Verdana, Tahoma, Sans-Serif;
  74. color: #333333;
  75. font-size: 50px;
  76. font-weight: 900;
  77. font-stretch: expanded;
  78. }
  79. /*CSS para impressão*/
  80. @media print {
  81. body {
  82. margin:0;
  83. padding:0;
  84. }
  85. @page {
  86. margin: 0;
  87. }
  88. nav, footer, video, audio, object, embed {
  89. display:none;
  90. }
  91. img {
  92. max-width: 100%;
  93. }
  94. }
  95. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement