123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- ion-searchbar {
- --background: #f4f4f4;
- margin: 10px;
- border-radius: 10px;
- }
- .info-box {
- text-align: center;
- font-weight: bold;
- }
- .info-value {
- text-align: center;
- margin-top: 10px;
- font-size: 1.2em;
- color: #888;
- }
- .wave-container {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 200px;
- position: relative;
- margin: 20px 0;
- }
- .wave-circle {
- width: 150px;
- height: 150px;
- background: radial-gradient(circle at 50% 50%, #6ec1e4, #378ab7);
- border-radius: 50%;
- position: relative;
- overflow: hidden;
- display: flex;
- justify-content: center;
- align-items: center;
- box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
- }
- .wave {
- position: absolute;
- width: 200%;
- height: 200%;
- top: -75%;
- left: -50%;
- background: rgba(255, 255, 255, 0.4);
- border-radius: 45%;
- animation: wave 4s infinite linear;
- }
- @keyframes wave {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(360deg);
- }
- }
- // 每日小习惯
- .daily-habit {
- display: flex;
- align-items: center;
- margin: 20px 0;
- }
- .daily-habit-line {
- width: 5px;
- height: 20px;
- background-color: green;
- margin-right: 10px;
- }
- .daily-habit-text {
- font-size: 1.2em;
- color: #666;
- }
- .habit-button {
- width: 60px;
- height: 60px;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 0.8em;
- margin: 10px 0;
- background-color: #fff;
- border: 2px solid #000;
- border-radius: 50%;
- transition: background-color 0.3s;
- }
- .habit-button ion-icon {
- font-size: 1.5em;
- }
- .habit-label {
- text-align: center;
- font-size: 0.8em;
- color: #666;
- margin-top: 5px;
- }
- .habit-button.blue {
- background-color: #007bff; /* 蓝色背景 */
- }
- .habit-button.white {
- background-color: #fff; /* 白色背景 */
- }
- // .habit-button div {
- // font-size: 0.8em;
- // margin-top: 5px;
- // }
- .habit-button:active {
- transform: scale(0.9);
- box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
- }
|