index.html 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Document</title>
  6. <style>
  7. .weather {
  8. background: #d6eeff;
  9. display: inline-block;
  10. text-align: center;
  11. width: 100%;
  12. border-bottom-left-radius: 15px;
  13. border-bottom-right-radius: 15px;
  14. border: 1px solid #e8e8e8;
  15. margin-bottom: 20px;
  16. }
  17. .selects select{
  18. display: block;
  19. width: 100%;
  20. height: 50px;
  21. font-size: 20px;
  22. border: 1px solid #e8e8e8;
  23. padding: 10px;
  24. }
  25. .selects select:first-child {
  26. border-top-left-radius: 15px;
  27. border-top-right-radius: 15px;
  28. margin-top: 40px;
  29. }
  30. .forecast {
  31. width: 37%;
  32. margin: 0 auto;
  33. font-size: 20px;
  34. }
  35. body {
  36. font-family: arial, sans-serif;
  37. line-height: 30px;
  38. }
  39. body * {
  40. box-sizing: border-box;
  41. outline: none;
  42. }
  43. .forecast img {
  44. width: 70px;
  45. margin-bottom: 15px;
  46. margin-top: 10px;
  47. }
  48. </style>
  49. </head>
  50. <body>
  51. <div class="forecast">
  52. <div class="selects"></div>
  53. <div class="weather"></div>
  54. </div>
  55. <script src="main.js"></script>
  56. </body>
  57. </html>