| Giorgi Lekveishvili | 5035756 | 2023-06-09 12:57:18 +0400 | [diff] [blame^] | 1 | <!DOCTYPE html> |
| 2 | <html lang="en"> |
| 3 | <head> |
| 4 | <title>dodo - Cloud</title> |
| 5 | <meta charset="utf-8"> |
| 6 | <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 7 | |
| 8 | <link rel="preconnect" href="https://fonts.googleapis.com"> |
| 9 | <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> |
| 10 | <link href="https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&family=Roboto:wght@400;700&display=swap" rel="stylesheet"> |
| 11 | <style> |
| 12 | @viewport { |
| 13 | width: device-width ; |
| 14 | zoom: 1.0 ; |
| 15 | } |
| 16 | |
| 17 | @media screen and (max-width:800px) { |
| 18 | #main { |
| 19 | width: 90%; |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | @media screen and (min-width:801px) { |
| 24 | #main { |
| 25 | width: 600px; |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | |
| 30 | #main { |
| 31 | margin: auto; |
| 32 | font-family: 'Noto Sans', sans-serif; |
| 33 | } |
| 34 | |
| 35 | .text { |
| 36 | text-align: justify; |
| 37 | } |
| 38 | |
| 39 | h5 { |
| 40 | margin-bottom: 5px; |
| 41 | } |
| 42 | |
| 43 | #form { |
| 44 | margin-top: 30px; |
| 45 | margin-bottom: 30px; |
| 46 | } |
| 47 | |
| 48 | #form div.section { |
| 49 | text-align: left; |
| 50 | margin-bottom: 10px; |
| 51 | } |
| 52 | |
| 53 | .section label { |
| 54 | display: block; |
| 55 | } |
| 56 | |
| 57 | .section input.text { |
| 58 | width: 50%; |
| 59 | outline: none; |
| 60 | } |
| 61 | |
| 62 | .section input.text:focus { |
| 63 | border-color: black; |
| 64 | } |
| 65 | .section textarea { |
| 66 | width: 95%; |
| 67 | outline: none; |
| 68 | } |
| 69 | .section textarea:focus { |
| 70 | border-color: black; |
| 71 | } |
| 72 | .section input:checked { |
| 73 | accent-color: black; |
| 74 | } |
| 75 | </style> |
| 76 | </head> |
| 77 | <body> |
| 78 | <div id="main"> |
| 79 | <div id="intro"> |
| 80 | <h1>dodo Cloud</h1> |
| 81 | <span class="text"> |
| 82 | Thank you for signing up! |
| 83 | </span> |
| 84 | </div> |
| 85 | </div> |
| 86 | </body> |
| 87 | </html> |