style.css 798 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. body {
  2. font-size: 14px;
  3. line-height: 20px;
  4. background-color: #ececec;
  5. color: #000;
  6. font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  7. }
  8. .wrapper {
  9. padding: 7% 3%;
  10. }
  11. .title {
  12. text-align: center;
  13. font-size: 2.2em;
  14. line-height: 2em;
  15. }
  16. .today {
  17. text-align: center;
  18. margin-bottom: 1%;
  19. font-size: 1.8em;
  20. line-height: 1.8em;
  21. }
  22. .price__inner {
  23. display: flex;
  24. align-items: center;
  25. justify-content: center;
  26. padding-bottom: 2%;
  27. }
  28. .price__number,
  29. .currency {
  30. width: 150px;
  31. padding: 5px;
  32. text-align: center;
  33. color: #000000;
  34. background-color: transparent;
  35. }
  36. .currency {
  37. width: 100px;
  38. margin-left: 15px;
  39. }
  40. .price__result {
  41. width:150px;
  42. background-color: transparent;
  43. text-align: center;
  44. color: #ff0000;
  45. font-size: 1.5em;
  46. font-weight: bold;
  47. }