cannabinieri website
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

79 lines
1.3 KiB

3 years ago
  1. .container {
  2. height: calc(100% - 30vh);
  3. font-family: 'Lato', sans-serif;
  4. }
  5. .donation_container {
  6. color: #333;
  7. height: 40vh;
  8. display: flex;
  9. align-items: center;
  10. text-align: center;
  11. flex-direction: column;
  12. justify-content: space-evenly;
  13. border-bottom: solid 1vh #ff00ff;
  14. }
  15. .donation_container h1 {
  16. color: #ff00ff;
  17. }
  18. .donation_container p {
  19. font-size: 3vh;
  20. line-height: 5vh;
  21. }
  22. .donation_container p span {
  23. color: #333;
  24. font-weight: 600;
  25. }
  26. .form_container {
  27. position: relative;
  28. display: flex;
  29. justify-content: center;
  30. align-items: center;
  31. text-align: center;
  32. height: 100%;
  33. width: 100%;
  34. }
  35. .right {
  36. padding: 3vh 4vw;
  37. }
  38. .right h2 {
  39. padding-bottom: 2vh;
  40. }
  41. .input {
  42. border: solid;
  43. border-top-color: currentcolor;
  44. border-right-color: currentcolor;
  45. border-bottom-color: currentcolor;
  46. border-left-color: currentcolor;
  47. border-radius: 4vw;
  48. background-color: white;
  49. padding: 1vh 1vw;
  50. margin: 1vh 0;
  51. border-color: #f0f;
  52. }
  53. #message {
  54. width: 60vw;
  55. height: 30vw;
  56. }
  57. #sub_btn {
  58. background-color: white;
  59. border: solid;
  60. border-radius: 4vw;
  61. border-color: #f0f;
  62. width: 30vw;
  63. height: 10vw;
  64. color:#f0f;
  65. cursor: pointer;
  66. }