diff --git a/index.html b/index.html new file mode 100644 index 0000000..2376f1f --- /dev/null +++ b/index.html @@ -0,0 +1,21 @@ + + + + + + + +
+

Log In

+

Enter your credentials

+
+ + + + + Forgot Password? + +
+
+ + \ No newline at end of file diff --git a/style_pimp.css b/style_pimp.css new file mode 100644 index 0000000..34befe8 --- /dev/null +++ b/style_pimp.css @@ -0,0 +1,71 @@ + +* { + box-sizing: border-box; +} + +body { + background-image: url("https://images.pexels.com/photos/547114/pexels-photo-547114.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2"); + background-size: cover; + background-position: center; + margin: 0; + height: 100vh; + font-family: Helvetica, serif; + color: #1b3de5; +} + +.panel { + position: absolute; + top: 20%; + left: calc(50% - 200px); + background: rgba(255, 255, 255, 0.8); + border-radius: 20px; + text-align: center; + padding: 20px 50px 30px 50px; + width: 400px; +} + +form { + display: flex; + flex-direction: column; + gap: 12px; + padding: 15px 0; +} + +label { + font-size: 0.85rem; + align-self: start; + position: relative; + top: 5px; + left: 15px; +} + +input { + font-size: 1rem; + padding: 12px 20px; + border: 2px #1b3de5 solid; + border-radius: 10px; +} + +a:any-link { + font-size: .85rem; + text-decoration: none; + color: #1b3de5; + text-align: right; +} + +#submit { + border: none; + cursor: pointer; + width: 100%; + margin-top: 20px; + padding: 10px 22px; + font-size: 22px; + font-weight: 400; + color: white; + background: linear-gradient(90deg,#1b3de5 0,#0074e4 100%); + border-radius: 50px; +} + +#submit:hover{ + background: linear-gradient(-90deg,#1b3de5 0,#0074e4 100%); +} \ No newline at end of file diff --git a/style_wishes.css b/style_wishes.css new file mode 100644 index 0000000..599b12a --- /dev/null +++ b/style_wishes.css @@ -0,0 +1,57 @@ +* { + box-sizing: border-box; +} + +body { + background-color: dodgerblue; + height: 100vh; + margin: 0; + font-family: Helvetica; + color: royalblue; +} + +.panel { + background-color: white; + position: absolute; + width: 400px; + top: 20%; + left: calc(50% - 200px); + padding: 40px; + border-radius: 20px; + text-align: center; +} + +form { + display: flex; + flex-direction: column; + gap: 10px; + align-items: center; + padding: 20px 0; +} + +input { + padding: 12px 20px; + border-radius: 10px; + width: 100%; +} + +label { + align-self: start; + position: relative; + top: 5px +} + +a { + font-size: .85rem; + align-self: end; +} + +#submit { + margin-top: 20px; + border-radius: 50px; + background-color: mediumseagreen; +} + +#submit:hover { + background-color: darkseagreen; +} \ No newline at end of file