DetailCountry.module.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. .detailWrapper {
  2. position: fixed;
  3. display: flex;
  4. justify-content: center;
  5. align-content: center;
  6. align-items: center;
  7. top: 0;
  8. left: 0;
  9. width: 100vw;
  10. height: 100vh;
  11. background: rgba(0, 0, 0, 0.5);
  12. }
  13. .detailNotification {
  14. width: 600px;
  15. height: 400px;
  16. background: #ffffff;
  17. border-radius: 20px;
  18. padding: 20px;
  19. }
  20. .detailNotification__title {
  21. margin-bottom: 40px;
  22. text-align: center;
  23. font-family: Roboto;
  24. font-style: normal;
  25. font-weight: bold;
  26. font-size: 48px;
  27. line-height: 56px;
  28. color: #000000;
  29. }
  30. .detailNotification__row {
  31. display: flex;
  32. flex-wrap: nowrap;
  33. justify-content: space-between;
  34. width: 560px;
  35. height: 30px;
  36. margin-bottom: 40px;
  37. }
  38. .detailNotification__row__title {
  39. font-family: Roboto;
  40. font-style: normal;
  41. font-weight: normal;
  42. font-size: 24px;
  43. line-height: 28px;
  44. color: #666666;
  45. margin-left: 40px;
  46. width: 160px;
  47. }
  48. .detailNotification__row__amount {
  49. font-family: Roboto;
  50. font-style: normal;
  51. font-weight: normal;
  52. font-size: 24px;
  53. line-height: 28px;
  54. color: #666666;
  55. width: 330px;
  56. text-align: right;
  57. }
  58. .detailNotification__btn {
  59. display: block;
  60. margin: 0 auto;
  61. text-transform: uppercase;
  62. width: 171px;
  63. height: 49px;
  64. background: #2196f3;
  65. border-radius: 20px;
  66. font-family: Roboto;
  67. font-style: normal;
  68. font-weight: bold;
  69. font-size: 24px;
  70. line-height: 28px;
  71. color: #ffffff;
  72. }