1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Document</title>
- <style>
- .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;
- }
- body * {
- box-sizing: border-box;
- outline: none;
- }
- .forecast img {
- width: 70px;
- margin-bottom: 15px;
- margin-top: 10px;
- }
- </style>
- </head>
- <body>
- <div class="forecast">
- <div class="selects"></div>
- <div class="weather"></div>
- </div>
-
- <script src="main.js"></script>
- </body>
- </html>
|