Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.08 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title></title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  6. <style>
  7. html {
  8. box-sizing: border-box;
  9. -ms-overflow-style: scrollbar;
  10. }
  11.  
  12. *,
  13. *::before,
  14. *::after {
  15. box-sizing: inherit;
  16. }
  17.  
  18. .container {
  19. width: 100%;
  20. padding-right: 15px;
  21. padding-left: 15px;
  22. margin-right: auto;
  23. margin-left: auto;
  24. }
  25.  
  26. .row {
  27. display: -ms-flexbox;
  28. display: flex;
  29. -ms-flex-wrap: wrap;
  30. flex-wrap: wrap;
  31. margin-right: -15px;
  32. margin-left: -15px;
  33. }
  34.  
  35. .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto {
  36. position: relative;
  37. width: 100%;
  38. padding-right: 15px;
  39. padding-left: 15px;
  40. }
  41.  
  42. .col {
  43. -ms-flex-preferred-size: 0;
  44. flex-basis: 0;
  45. -ms-flex-positive: 1;
  46. flex-grow: 1;
  47. max-width: 100%;
  48. }
  49.  
  50. .col-auto {
  51. -ms-flex: 0 0 auto;
  52. flex: 0 0 auto;
  53. width: auto;
  54. max-width: 100%;
  55. }
  56.  
  57. .col-1 {
  58. -ms-flex: 0 0 8.333333%;
  59. flex: 0 0 8.333333%;
  60. max-width: 8.333333%;
  61. }
  62.  
  63. .col-2 {
  64. -ms-flex: 0 0 16.666667%;
  65. flex: 0 0 16.666667%;
  66. max-width: 16.666667%;
  67. }
  68.  
  69. .col-3 {
  70. -ms-flex: 0 0 25%;
  71. flex: 0 0 25%;
  72. max-width: 25%;
  73. }
  74.  
  75. .col-4 {
  76. -ms-flex: 0 0 33.333333%;
  77. flex: 0 0 33.333333%;
  78. max-width: 33.333333%;
  79. }
  80.  
  81. .col-5 {
  82. -ms-flex: 0 0 41.666667%;
  83. flex: 0 0 41.666667%;
  84. max-width: 41.666667%;
  85. }
  86.  
  87. .col-6 {
  88. -ms-flex: 0 0 50%;
  89. flex: 0 0 50%;
  90. max-width: 50%;
  91. }
  92.  
  93. .col-7 {
  94. -ms-flex: 0 0 58.333333%;
  95. flex: 0 0 58.333333%;
  96. max-width: 58.333333%;
  97. }
  98.  
  99. .col-8 {
  100. -ms-flex: 0 0 66.666667%;
  101. flex: 0 0 66.666667%;
  102. max-width: 66.666667%;
  103. }
  104.  
  105. .col-9 {
  106. -ms-flex: 0 0 75%;
  107. flex: 0 0 75%;
  108. max-width: 75%;
  109. }
  110.  
  111. .col-10 {
  112. -ms-flex: 0 0 83.333333%;
  113. flex: 0 0 83.333333%;
  114. max-width: 83.333333%;
  115. }
  116.  
  117. .col-11 {
  118. -ms-flex: 0 0 91.666667%;
  119. flex: 0 0 91.666667%;
  120. max-width: 91.666667%;
  121. }
  122.  
  123. .col-12 {
  124. -ms-flex: 0 0 100%;
  125. flex: 0 0 100%;
  126. max-width: 100%;
  127. }
  128.  
  129. @font-face {
  130. font-family: 'Roboto';
  131. font-style: normal;
  132. font-weight: 400;
  133. src: local('Roboto'), local('Roboto-Regular'), url(Roboto.woff2) format('woff2');
  134. }
  135.  
  136. body{
  137. width:100%;
  138. height:100%;
  139. font-family: 'Roboto', sans-serif;
  140. background: linear-gradient(to right, #fcf9fa 50%, #FFFFFF 50%);
  141. }
  142.  
  143. a{text-decoration:none;}
  144.  
  145. a:hover{text-decoration:none;}
  146.  
  147. a:active{text-decoration:none;}
  148.  
  149. button:focus {outline:0;}
  150.  
  151. .check-bill {
  152. margin-top: 40px !important;
  153. padding: 30px !important;
  154. background-color: #fff !important;
  155. border: 1px solid #d4d4d4 !important;
  156. width: 50% !important;
  157. text-align: left !important;
  158. }
  159.  
  160. .btn-action {
  161. color: #000;
  162. background-color: #fff;
  163. border-color: #d4d4d4;
  164. }
  165.  
  166. .btn-action:hover {
  167. color: #000;
  168. background-color: #F6F6F6;
  169. border-color: #d4d4d4;
  170. }
  171.  
  172. .btn-action:active {
  173. color: #000;
  174. background-color: #E1E1E1;
  175. border-color: #d4d4d4;
  176. }
  177. </style>
  178. </head>
  179. <body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement