Pārlūkot izejas kodu

Improved_Front_End_VXX

eddy 3 gadi atpakaļ
vecāks
revīzija
eb5596f13e

+ 5 - 3
app/static/css/style.css

@@ -82,7 +82,8 @@ body {
 }
 .navbar-nav-middle {
     position: absolute;
-    right: 400px;
+    top: 25px;
+    right: 350px;
     list-style-type: none;
 }
 .a-font {
@@ -131,11 +132,12 @@ body {
 }
 
 #market_item_text_right {
-    font-size: 14px;
+    font-size: 15px;
     color: grey;
     position: absolute;
     right: 18px;
     list-style-type: none;
+    font-weight:bold;
 }
 
 .grid-item {
@@ -372,7 +374,7 @@ input.create_art-input {
 
 .change_password_location {
   position:relative;
-  left:-10px;
+  left:10px;
 }
 
 .Select_Picture_Button {

+ 0 - 3
app/templates/create_art.html

@@ -58,9 +58,6 @@
       <div class="row tips_location">
         <small>Information:</small>
       </div>
-      <div class="row tips_location">
-        <small>- The maximum Auction time is 14 days</small>
-      </div>
       <div class="row tips_location">
         <small>- The exact time of closing is 0000 hrs of that date</small>
       </div>

+ 1 - 1
app/templates/mfa.html

@@ -6,7 +6,7 @@
   <div class="row justify-content-center">
     <div class="col-lg-12">
       <div class="jumbotron text-center p-4">
-        <h2>Flask + 2FA Demo</h2>
+        <h2>Flask + 2FA</h2>
         <h4>Setup and Authenticate 2FA</h4>
       </div>
     </div>

+ 7 - 8
app/templates/search.html

@@ -1,30 +1,29 @@
 {% extends "base.html" %}
 
 {% block content %}
-<p>Search Results</p>
 
 <div class="container">
+    <h1 class="text-center">Search Results</h1>
     <div class="row row-cols-4">
         {% if sr %}
         {% for r in sr %}
         {% if r.dname %}
         <div class="card col-md-3 grid-item shadow p-3 mb-5 bg-white rounded"  type="button">
             <form method="POST">
-            <button name="focus_but" type="submit" class="btn btn-link" value="{{r.filehash}}"><img class="market_each_bid_image_size" src="static/repository/{{r.dname}}"></button>
-            <div class="row" id="market_item_name_left">
+                <button name="focus_but" type="submit" class="btn btn-link" value="{{r.filehash}}">
+                    <img class="market_each_bid_image_size" src="static/repository/{{r.dname}}">
+                </button>
             </form>
-                <b></b>
-            </div>
             <div class="row">
-                <p id="market_item_text_left">{{r.name}}</b>
-            </div>
+                <p id="market_item_name_left"><b>{{r.name}}</b>
             </div>
         </div>
         {% endif %}
         {% endfor %}
         {% endif %}
     </div>
-  </div>
+</div>
+
 
 
 {% endblock %}