1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- .weather {
- background: #d6eeff;
- display: inline-block;
- text-align: center;
- width: 100%;
- border-bottom-left-radius: 15px;
- border-bottom-right-radius: 15px;
- border: 1px solid #e8e8e8;
- margin-bottom: 20px;
- }
- .selects select{
- display: block;
- width: 100%;
- height: 50px;
- font-size: 20px;
- border: 1px solid #e8e8e8;
- padding: 10px;
- }
- .selects select:first-child {
- border-top-left-radius: 15px;
- border-top-right-radius: 15px;
- margin-top: 40px;
- }
- .forecast {
- width: 37%;
- margin: 0 auto;
- font-size: 20px;
- }
- body {
- font-family: arial, sans-serif;
- line-height: 30px;
- margin: 0;
- padding: 0;
- }
- body * {
- box-sizing: border-box;
- outline: none;
- }
- .forecast img {
- width: 70px;
- margin-bottom: 15px;
- margin-top: 10px;
- }
|