123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- ion-app {
- --ion-background-color: #e1e1e1; /* Light grey */
- }
- .image-container {
- display: flex;
- justify-content: center;
- margin-top: 20px;
- img {
- margin-top: 40px;
- width: 80%;
- border-radius: 10px;
- }
- }
- .info-container {
- margin-top: 50px;
- h2 {
- width: 170px;
- text-align: left;
- margin-left: 30px;
- font-size: 2.5rem;
- color: #333;
- font-weight: bold;
- }
- }
- .timer-display {
- margin-top: 50px;
- justify-content: right;
- font-size: 2.2rem;
- color: #333;
- border: 2px solid #c1c1c1;
- border-radius: 10%;
- padding: 5px 5px 5px 5px;
- }
- .timer-icon {
- margin-top: 50px;
- margin-left: 25px;
- font-size: 2.5rem;
- color: black;
- border: 2px solid #c2c2c2;
- border-radius: 10%;
- width: 60%;
- height: 50%;
- padding: 5px 5px 0px 5px;
- }
- .icon-buttons {
- display: flex;
- justify-content: space-around;
- margin: 45px 20px;
- .i-button {
- --background: #e1e1e1;
- --border-radius: 50%;
- --padding: 5px;
- ion-icon {
- font-size: 2.4rem;
- color: rgb(178, 178, 178);
- }
- }
- }
- .control-buttons {
- display: flex;
- justify-content: space-around;
- margin: 45px 20px;
- .ctrl-button {
- --background: #e1e1e1;
- border-radius: 100%;
- border: 5px wheat;
- padding: 10px;
- box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.415),
- -4px -4px 8px rgba(255, 255, 255, 0.914);
- ion-icon {
- font-size: 1.8rem;
- color: #000000;
- }
- }
- }
|