From b33e3fe60f4ae7eff88ab1ca28f45f94d2d9d713 Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Thu, 8 Apr 2021 19:11:50 +0530 Subject: initial commit --- static/css/new.main.css | 111 +++++++++++++++++++++++++++++++++++++++++++++ static/css/old/style.css | 42 +++++++++++++++++ static/media/HG.png | Bin 0 -> 149549 bytes static/media/HG2.png | Bin 0 -> 77249 bytes static/media/image-big.png | Bin 0 -> 347647 bytes static/media/index.png | Bin 0 -> 5097 bytes 6 files changed, 153 insertions(+) create mode 100644 static/css/new.main.css create mode 100644 static/css/old/style.css create mode 100644 static/media/HG.png create mode 100644 static/media/HG2.png create mode 100644 static/media/image-big.png create mode 100644 static/media/index.png (limited to 'static') diff --git a/static/css/new.main.css b/static/css/new.main.css new file mode 100644 index 0000000..403d1e4 --- /dev/null +++ b/static/css/new.main.css @@ -0,0 +1,111 @@ +body { + background-color: #232627; +} + +strong { + color: red; +} + +.navbar { + background-color: #222526; + overflow: hidden; +} + +.navbar a { + float: right; + display: block; + color: #9e00ff; + text-align: right; +/* padding: 30px 50px;*/ + padding: 30px 8%; + text-decoration: none; + font-size: 24; +} + +.navbar #logo { + float: left; + padding: 0px 0px; +} + +.navbar .hamburger-icon { + display: none; +} + +/*hamburger menu shit*/ +@media screen and (max-width: 481px) { + .navbar a:not(:first-child) {display: none;} + .navbar a.hamburger-icon { + float: right; + display: block; + } +} + +@media screen and (max-width: 481px) { + .navbar.responsive {position: relative;} + .navbar.responsive a.hamburger-icon { +/* display: none;*/ + position: relative; + right: 0; + top: 0; + padding: 30px 8%; + float:right; + } + .navbar.responsive a { + float: right; + display: block; + text-align: center; + padding: 30px 8%; + } +} + +/*Navbar is done*/ +.body { + background-image: url("HG.png"); + background-repeat: no-repeat; + background-position: left top; + text-align: center; + margin-left: 4%; +} + +.body h1, h3 { + color: #f0f0f0; + background-color: #23262766; + display: inline; + padding: 1px 1px; +} + +.rightflex { + float: right; + margin-right: 10%; +} + +.form { + padding: 9%; +} + +#send { + margin-left: 6%; + color: #000000; + background-color: #ff0057; + border: 1px solid #e30808; + border-radius: 8px; + padding: 1% 5%; + transition-duration: 0.4s; +} + +#send:hover { + background-color: #ff0000; +} + +#name { + color: #ff0000; +} + +.big { + font-size: 20px; + padding: 4px 4px; +} + +.subtext { + margin-top: 3%; +} diff --git a/static/css/old/style.css b/static/css/old/style.css new file mode 100644 index 0000000..281322d --- /dev/null +++ b/static/css/old/style.css @@ -0,0 +1,42 @@ +@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap'); + +body { + background-color: #000000; + color: #FFFFFF; + display: flex; + justify-content: center; + align-items: center; + height: 100vh; + margin: 0; +} + +* { + font-family: 'Roboto', sans-serif; + text-align: center; +} + +form { + display: flex; + flex-direction: column; + align-items: center; +} + +input[type=text] { + height: 1.5rem; + width: 200px; + margin: 0; + box-sizing: border-box; + color: red; +} + +input[type=submit] { + background-color: #C0C8CA; + color: #000000; + width: 3.5rem; + height: 1.7rem; + margin: 1.3rem; +} + +input[type=submit]:hover { + background-color: #A0A8C8; +} diff --git a/static/media/HG.png b/static/media/HG.png new file mode 100644 index 0000000..ff657d1 Binary files /dev/null and b/static/media/HG.png differ diff --git a/static/media/HG2.png b/static/media/HG2.png new file mode 100644 index 0000000..d5ed4e8 Binary files /dev/null and b/static/media/HG2.png differ diff --git a/static/media/image-big.png b/static/media/image-big.png new file mode 100644 index 0000000..44bb792 Binary files /dev/null and b/static/media/image-big.png differ diff --git a/static/media/index.png b/static/media/index.png new file mode 100644 index 0000000..edb81a5 Binary files /dev/null and b/static/media/index.png differ -- cgit v1.2.3