diff --git a/.hintrc b/.hintrc new file mode 100644 index 00000000..67466058 --- /dev/null +++ b/.hintrc @@ -0,0 +1,15 @@ +{ + "extends": [ + "development" + ], + "hints": { + "compat-api/css": [ + "default", + { + "ignore": [ + "backdrop-filter" + ] + } + ] + } +} \ No newline at end of file diff --git a/Css-Files/input.css b/Css-Files/input.css index 366ba4f6..7f7c1d8e 100644 --- a/Css-Files/input.css +++ b/Css-Files/input.css @@ -1,43 +1,130 @@ -body{ - background-color: #74EBD5; - background-image: linear-gradient(90deg, #74EBD5 0%, #9FACE6 100%); +body { + background-color: black; overflow-x: hidden; overflow-y: hidden; height: 100vh; width: 100vw; + margin: 0; } -.map{ + +.container { display: flex; height: 100%; - flex-direction: column; - justify-content: center; + width: 100%; + flex-direction: row; + justify-content: right; align-items: center; gap: 2rem; - + background: #0f0c29; + background: -webkit-linear-gradient(to right, #24243e, #302b63, #0f0c29); + background: linear-gradient(to right, #24243e, #302b63, #0f0c29); + color: white; + font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; + } -.map-input{ + +.items { + width: 25vw; + height: 100%; display: flex; + height: 100vh; flex-direction: column; - gap: 1.5rem; + justify-content: space-around; + align-items: center; + z-index: 10; +} + +.item1, +.item2, +.item3 { + display: flex; + flex-direction: column; + width: 50%; + height: 20vh; + background-color: #39365b; + backdrop-filter: blur(20px); + border: 1px solid #332e5e; + align-items: center; + justify-content: center; + border-radius: 5%; + font-weight: bold; } -#text{ - font-size: 3rem; + +.text1 { + width: 100%; + font-size: 40px; + display: flex; + justify-content: center; +} +.text2 { + width: 50%; + margin-left: 5px; + font-size:20px; + display: flex; + justify-content: center; +} + +.doc { + display: flex; + width: 40vw; + height: 100vh; + justify-content: end; +} +.docimg { + + display: flex; + justify-content: start; +} +.text { + width: 50vw; + padding-right: 50px; + height: 100vh; color: black; - font-weight: 700; + display: flex; + flex-direction: column; + justify-content: center; + gap: 20px; } -#location-input{ - height: 2rem; - width: 15rem; - font-size: 1.5rem; - border-radius: 10px; - border: 1px solid white; -} -.map button{ - background-color: #74EBD5; - background-image: linear-gradient(90deg, #74EBD5 0%, #9FACE6 100%); - border: 2px solid black; - height: 2.5rem; - border-radius: 15px; - font-size: large; + +.head1 { + padding: auto; + color: white; + font-size: 70px; font-weight: 500; +} + +.head2 { + color: wheat; + font-size: 20px; + font-weight: 500; +} + +.text input { + width: 60%; + background-color: #f5f5f5; + border-radius: 5px; + font-size: 20px; +} +.text button { + width: 25%; + height: 50px; + border-radius: 10px; + font-size: 20px; + font: weight 5px; + border-radius: 5px; + background-color: #f5f5f5; + align-items: center; + background: #ADA996; + background: -webkit-linear-gradient(to right, #EAEAEA, #DBDBDB, #F2F2F2, #ADA996); + background: linear-gradient(to right, #EAEAEA, #DBDBDB, #F2F2F2, #ADA996); +} + +.text button:hover { + cursor: pointer; +} + +.input { + display: flex; + flex-direction: row; + gap: 30px; } \ No newline at end of file diff --git a/Html-Files/input.html b/Html-Files/input.html index c8636eef..a49c46d4 100644 --- a/Html-Files/input.html +++ b/Html-Files/input.html @@ -7,17 +7,32 @@