diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/root/css/color_scheme.jpg b/root/css/color_scheme.jpg new file mode 100644 index 0000000000000000000000000000000000000000..59a714d5f071528a5223c5b1ccaa94b0394d756b Binary files /dev/null and b/root/css/color_scheme.jpg differ diff --git a/root/css/color_scheme.txt b/root/css/color_scheme.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a381024bf9ec965087bfc9a7916e20da30e7535 --- /dev/null +++ b/root/css/color_scheme.txt @@ -0,0 +1,5 @@ +plum: rgb(65,62,119) +lighter plum: rgb(92,88,138) +pale cobalt blue: rgb(191,216,255) +lime green: rgb(167,180,4) +winter white: rgb(250, 250, 250) diff --git a/root/css/main.css b/root/css/main.css new file mode 100644 index 0000000000000000000000000000000000000000..a2eff8a4071af950871f705c0d25b6bc1e17cad1 --- /dev/null +++ b/root/css/main.css @@ -0,0 +1,46 @@ +body { + background-color: rgb(210,210,210); + color: rgb(250,250,250); +} + +.frame { + border: 7px solid rgb(65,62,119); + border-radius: 25px; + background-color: rgb(92,88,138); + margin: 50px auto; +} + +#login_frame { + height: 300px; + width: 300px; +} + +#login_frame > h1 { + text-align: center; +} + +#login_frame > div { + left: 10%; + width: 80%; + height: auto; + border: 1px solid red; + position: relative; +} + +#login_frame input{ + width: 100%; +} + +#login_frame input[type="submit"] { + display: block; + width: 100px; + margin: auto; +} + +a:link, a:visited { + color: rgb(250,250,250); +} + +a:hover { + color: rgb(167,180,4); +} \ No newline at end of file