diff --git a/background.png b/background.png new file mode 100644 index 0000000..606f3be Binary files /dev/null and b/background.png differ diff --git a/homework1.html b/homework1.html new file mode 100644 index 0000000..d72d943 --- /dev/null +++ b/homework1.html @@ -0,0 +1,49 @@ + + + + + + Document + + + +
+

Welcome to Paint Quote System

+
+

+ Consequat adipisicing ea do labore irure adipisicing occaecat cupidatat excepteur duis mo +

+
+ +
+
+
+

Sign Up

+

Enter details to create your account

+
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ + + + +
+
+ + \ No newline at end of file diff --git a/style1.css b/style1.css new file mode 100644 index 0000000..efd283f --- /dev/null +++ b/style1.css @@ -0,0 +1,110 @@ +*{ + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body{ + min-height: 100vh; + display: flex; + align-items: center; + justify-content: center; + gap: 180px; + padding-left: 170px; + padding-right: 150px; + + background-image: url("background.png"); + background-size: cover; + background-repeat: no-repeat; +} + +.left-panel{ + flex: 1; + width: 100%; + max-width: 460px; + margin-left: -40px; + margin-top: -35px; +} + +.left-panel h1{ + font-size: 27px; + margin-bottom: 16px; + color: rgb(47, 74, 120); +} + +.left-panel hr{ + width: 100%; + max-width: 430px; + border: none; + border-top: 2px solid rgb(47, 74, 120); + margin: 12px 0 16px 0; +} + +.left-panel p{ + line-height: 1.7; + color: rgb(47, 74, 120); +} + +.right-panel{ + flex: 1; + width: 100%; + max-width: 500px; + flex-shrink: 0; +} + +form{ + width: 100%; + background-color: white; + padding: 30px 30px; + border-radius: 10px; + border: 1px solid #ddd; + box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); +} + +form h2 { + text-align: center; +} + +.title-line{ + text-align: center; + color: #777; + margin-bottom: 40px; +} + +label{ + display: block; + margin-top: 20px; + margin-bottom: 6px; +} + +input{ + display: block; + width: 100%; + padding: 14px 16px; + border: 1px solid #ccc; + border-radius: 6px; +} + +.preliminary-button{ + display: block; + width: 100%; + padding: 16px; + margin-top: 20px; + font-size: 18px; + + background-color: #3f81b3; + color: #ffffff; + + border: none; + border-radius: 6px; +} + +.form-footer { + margin-top: 16px; + text-align: center; + font-size: 14px; +} + +.form-footer a { + text-decoration: none; +} \ No newline at end of file