Advertisement
Krisna22

studycase(CSS)

Jan 14th, 2023
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.78 KB | None | 0 0
  1. html, body, div, span, applet, object, iframe,
  2. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  3. a, abbr, acronym, address, big, cite, code,
  4. del, dfn, em, img, ins, kbd, q, s, samp,
  5. small, strike, strong, sub, sup, tt, var,
  6. b, u, i, center,
  7. dl, dt, dd, ol, ul, li,
  8. fieldset, form, label, legend,
  9. table, caption, tbody, tfoot, thead, tr, th, td,
  10. article, aside, canvas, details, embed,
  11. figure, figcaption, footer, header, hgroup,
  12. menu, nav, output, ruby, section, summary,
  13. time, mark, audio, video {
  14.     margin: 0;
  15.     padding: 0;
  16.     border: 0;
  17.     font-size: 100%;
  18.     font: inherit;
  19.     vertical-align: baseline;
  20. }
  21. /* HTML5 display-role reset for older browsers */
  22. article, aside, details, figcaption, figure,
  23. footer, header, hgroup, menu, nav, section {
  24.     display: block;
  25. }
  26. body {
  27.     line-height: 1;
  28. }
  29. ol, ul {
  30.     list-style: none;
  31. }
  32. blockquote, q {
  33.     quotes: none;
  34. }
  35. blockquote:before, blockquote:after,
  36. q:before, q:after {
  37.     content: '';
  38.     content: none;
  39. }
  40. table {
  41.     border-collapse: collapse;
  42.     border-spacing: 0;
  43. }
  44.  
  45. html {
  46.     font-family: Arial, Helvetica, sans-serif;
  47.     box-sizing: border-box;
  48. }
  49.  
  50. body {
  51.     background-color: #529ffa;
  52.     display: flex;
  53.     justify-content: center;
  54.     min-height: 100vh;
  55. }
  56.  
  57.  
  58. .panel {
  59.     background-color: white;
  60.     border-radius: 10px;
  61.     padding: 15px 25px;
  62.     width: 100%;
  63.     max-width: 960px;
  64.     text-align: center;
  65.     text-transform: uppercase;
  66.     display: flex;
  67.     flex-direction: row;
  68.    
  69. }
  70.  
  71. .pricing-plan {
  72.     border-bottom: 1px solid #e1f1ff;
  73. }
  74.  
  75. .pricing-plan:last-child {
  76.     border-bottom: none;
  77. }
  78.  
  79. .pricing-img {
  80.     margin-bottom: 25px;
  81.     max-width: 100%;
  82. }
  83.  
  84. img {
  85.     height: 300px;
  86. }
  87.  
  88. .pricing-header {
  89.     color: #888;
  90.     font-weight: 600;
  91.     letter-spacing: 1px;
  92. }
  93.  
  94. .pricing-features {
  95.     margin: 50px 0px 25px;
  96.     color: #015ff9;
  97. }
  98.  
  99. .pricing-features-item {
  100.     font-weight: 600;
  101.     font-size: 12px;
  102.     letter-spacing: 1px;
  103.     line-height: 1.5;
  104.     padding: 25px 0;
  105.     border-top: 1px solid #e1f1ff;
  106. }
  107.  
  108. .pricing-features-item:last-child {
  109.     border-bottom: 1px solid #e1f1ff;
  110. }
  111.  
  112. .prising-price {
  113.     font-size: 32px;
  114.     color: #016ff9;
  115.     display: block;
  116.     font-weight: 700;
  117. }
  118.  
  119. .pricing-button {
  120.     border: 1px solid #9dd1ff;
  121.     padding: 15px 35px;
  122.     border-radius: 10px;
  123.     display: inline-block;
  124.     margin: 25px 0;
  125.     text-decoration: none;
  126.     color: #348efe;
  127. }
  128.  
  129. .pricing-button:hover,
  130. .pricing-button:focus {
  131.     background-color: #e1f1ff;
  132. }
  133.  
  134. .pricing-button.is-fetured {
  135.     background-color: #48aaff ;
  136.     color: white;
  137. }
  138.  
  139. .pricing-button.is-fetured:hover,
  140. .pricing-button.is-fetured:focus {
  141.     background-color: #269aff;
  142.     color: white;
  143.  
  144. }
  145.  
  146. @media (min-width: 900px){
  147.     .panel  {
  148.         flex-direction: row;
  149.     }
  150. }
  151.  
  152.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement