| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- /* mHome/pages/exchangeRate/exchangeRate.wxss */
- .base-currency {
- display: grid;
- width: 100%;
- }
- .base-currency .title {
- display: flex;
- justify-content: space-between;
- background-color: #f0f0f0;
- }
- .base-currency .title text {
- font-size: 10px;
- color: #666;
- padding: 10px 10px;
- }
- .base-rate {
- display: flex;
- justify-content: space-between;
- align-content: center;
- align-items: center;
- width: 95%;
- padding-left: 10px;
- margin-top: 5px;
- }
- .base-rate text {
- width: 80px;
- font-size: 16px;
- color: #333;
- text-align: left;
- padding-left: 10px;
- margin-bottom: 10px;
- }
- .input-rate {
- display: grid;
- width: 100%;
- }
- .input-rate text {
- font-size: 10px;
- color: #666;
- text-align: right;
- width: 95%;
- margin-top: 10px;
- }
- .ex-currency .title {
- display: flex;
- justify-content: space-between;
- background-color: #f0f0f0;
- }
- .ex-currency .title text {
- font-size: 10px;
- color: #666;
- padding: 10px 10px;
- }
- .ex-rate {
- display: flex;
- justify-content: space-between;
- align-content: center;
- align-items: center;
- width: 95%;
- padding-left: 10px;
- margin-top: 5px;
- }
- .ex-rate text {
- width: 60px;
- font-size: 16px;
- color: #333;
- text-align: left;
- padding-left: 10px;
- margin-bottom: 10px;
- }
- .ex-result-rate {
- display: grid;
- width: 100%;
- }
- .ex-result-rate text:nth-child(1) {
- font-size: 16px;
- color: #333;
- text-align: right;
- width: 95%;
- margin-top: 10px;
- }
- .ex-result-rate text:nth-child(2) {
- font-size: 10px;
- color: #666;
- text-align: right;
- width: 95%;
- margin-top: 10px;
- }
|