tree.page.scss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. ion-app {
  2. --ion-background-color: #e1e1e1; /* Light grey */
  3. }
  4. .image-container {
  5. display: flex;
  6. justify-content: center;
  7. margin-top: 20px;
  8. img {
  9. margin-top: 40px;
  10. width: 80%;
  11. border-radius: 10px;
  12. }
  13. }
  14. .info-container {
  15. margin-top: 50px;
  16. h2 {
  17. width: 170px;
  18. text-align: left;
  19. margin-left: 30px;
  20. font-size: 2.5rem;
  21. color: #333;
  22. font-weight: bold;
  23. }
  24. }
  25. .timer-display {
  26. margin-top: 50px;
  27. justify-content: right;
  28. font-size: 2.2rem;
  29. color: #333;
  30. border: 2px solid #c1c1c1;
  31. border-radius: 10%;
  32. padding: 5px 5px 5px 5px;
  33. }
  34. .timer-icon {
  35. margin-top: 50px;
  36. margin-left: 25px;
  37. font-size: 2.5rem;
  38. color: black;
  39. border: 2px solid #c2c2c2;
  40. border-radius: 10%;
  41. width: 60%;
  42. height: 50%;
  43. padding: 5px 5px 0px 5px;
  44. }
  45. .icon-buttons {
  46. display: flex;
  47. justify-content: space-around;
  48. margin: 45px 20px;
  49. .i-button {
  50. --background: #e1e1e1;
  51. --border-radius: 50%;
  52. --padding: 5px;
  53. ion-icon {
  54. font-size: 2.4rem;
  55. color: rgb(178, 178, 178);
  56. }
  57. }
  58. }
  59. .control-buttons {
  60. display: flex;
  61. justify-content: space-around;
  62. margin: 45px 20px;
  63. .ctrl-button {
  64. --background: #e1e1e1;
  65. border-radius: 100%;
  66. border: 5px wheat;
  67. padding: 10px;
  68. box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.415),
  69. -4px -4px 8px rgba(255, 255, 255, 0.914);
  70. ion-icon {
  71. font-size: 1.8rem;
  72. color: #000000;
  73. }
  74. }
  75. }