From c866ff3317bd86facf8dfa14edd2064fed10c09f Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Thu, 8 Apr 2021 20:20:31 +0530 Subject: worked on the main page --- static/css/new.main.css | 111 ---------------------------------------- static/css/style.css | 37 ++++++++++++++ static/media/HG.png | Bin 149549 -> 0 bytes static/media/HG2.png | Bin 77249 -> 0 bytes static/media/hell-girl-full.png | Bin 0 -> 149549 bytes static/media/hell-girl-half.png | Bin 0 -> 77249 bytes static/media/image-big.png | Bin 347647 -> 0 bytes static/media/index.png | Bin 5097 -> 0 bytes static/media/logo.png | Bin 0 -> 5097 bytes 9 files changed, 37 insertions(+), 111 deletions(-) delete mode 100644 static/css/new.main.css create mode 100644 static/css/style.css delete mode 100644 static/media/HG.png delete mode 100644 static/media/HG2.png create mode 100644 static/media/hell-girl-full.png create mode 100644 static/media/hell-girl-half.png delete mode 100644 static/media/image-big.png delete mode 100644 static/media/index.png create mode 100644 static/media/logo.png (limited to 'static') diff --git a/static/css/new.main.css b/static/css/new.main.css deleted file mode 100644 index 403d1e4..0000000 --- a/static/css/new.main.css +++ /dev/null @@ -1,111 +0,0 @@ -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/style.css b/static/css/style.css new file mode 100644 index 0000000..8714d21 --- /dev/null +++ b/static/css/style.css @@ -0,0 +1,37 @@ +body { + background-color: #232627; + height: 100vh; + margin: 0; + color: #FFFFFF; +} + +.navbar { + height: 3.5rem; + border-bottom: 1px solid pink; + margin-bottom: 2.5rem; +} + +.root { + width: 100%; + height: 25rem; + margin: auto; + background: url("/media/hell-girl-full.png"); + background-repeat: no-repeat; +} + +strong, em { + color: red; + font-style: normal; +} +em { + font-size: 2rem; +} + +.content { + text-align: center; +} + + + +@media only screen and (max-device-width: 480px) { +} diff --git a/static/media/HG.png b/static/media/HG.png deleted file mode 100644 index ff657d1..0000000 Binary files a/static/media/HG.png and /dev/null differ diff --git a/static/media/HG2.png b/static/media/HG2.png deleted file mode 100644 index d5ed4e8..0000000 Binary files a/static/media/HG2.png and /dev/null differ diff --git a/static/media/hell-girl-full.png b/static/media/hell-girl-full.png new file mode 100644 index 0000000..ff657d1 Binary files /dev/null and b/static/media/hell-girl-full.png differ diff --git a/static/media/hell-girl-half.png b/static/media/hell-girl-half.png new file mode 100644 index 0000000..d5ed4e8 Binary files /dev/null and b/static/media/hell-girl-half.png differ diff --git a/static/media/image-big.png b/static/media/image-big.png deleted file mode 100644 index 44bb792..0000000 Binary files a/static/media/image-big.png and /dev/null differ diff --git a/static/media/index.png b/static/media/index.png deleted file mode 100644 index edb81a5..0000000 Binary files a/static/media/index.png and /dev/null differ diff --git a/static/media/logo.png b/static/media/logo.png new file mode 100644 index 0000000..edb81a5 Binary files /dev/null and b/static/media/logo.png differ -- cgit v1.2.3