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/old/style.css | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 static/css/old/style.css (limited to 'static/css/old') 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; +} -- cgit v1.2.3