Commit 7578baa2f8947f646ddb03ba9b98b49940622b4f
1 parent
317f3bdb
Exists in
master
and in
3 other branches
Adjusting topbar css
Showing
2 changed files
with
32 additions
and
4 deletions
Show diff stats
amadeus/static/css/base/amadeus.css
... | ... | @@ -67,7 +67,35 @@ |
67 | 67 | margin-bottom: 5em; |
68 | 68 | } |
69 | 69 | |
70 | -.navbar .logo {position: absolute; top: 6px; text-align: center; height: 48px; width: 48px;} | |
70 | +/* NavBar Top */ | |
71 | +.navbar { | |
72 | + height: 50px; | |
73 | +} | |
74 | + | |
75 | +.navbar .logo {position: absolute; top: 8px; text-align: center; height: 32px; width: 32px;} | |
76 | + | |
77 | +.navbar-nav li > a { | |
78 | + font-size: 28px; | |
79 | + padding-top: 12px !important; | |
80 | + padding-left: 20px; | |
81 | +} | |
82 | + | |
83 | +.top-search { | |
84 | + color: #F5F5F5; | |
85 | +} | |
86 | +.top-search::-webkit-input-placeholder { | |
87 | + font-style: italic; | |
88 | +} | |
89 | +.top-search::-moz-placeholder { | |
90 | + font-style: italic; | |
91 | +} | |
92 | +.top-search:-ms-input-placeholder { | |
93 | + font-style: italic; | |
94 | +} | |
95 | +.top-search:-moz-placeholder { | |
96 | + font-style: italic; | |
97 | +} | |
98 | +/* End NavBar Top */ | |
71 | 99 | |
72 | 100 | /* Modal */ |
73 | 101 | .modal-header {min-height: 60px; border-bottom: 1px solid #E6E7E8 !important; padding-bottom: 15px !important;} |
... | ... | @@ -439,7 +467,7 @@ ul, li { |
439 | 467 | padding-bottom: 10px; |
440 | 468 | } |
441 | 469 | .form-group{ |
442 | - margin-top: 10px; | |
470 | + margin-top: 5px; | |
443 | 471 | } |
444 | 472 | |
445 | 473 | /* core/register_user.html classes*/ | ... | ... |
amadeus/templates/base.html
... | ... | @@ -70,14 +70,14 @@ |
70 | 70 | <span class="icon-bar"></span> |
71 | 71 | <span class="icon-bar"></span> |
72 | 72 | </button> |
73 | - <a class="navbar-brand" href="{% url 'categories:index' %}"><img class="logo" src="{% static 'img/topo-amadeus-white.png' %}" alt="Logo"/></a> | |
73 | + <a class="navbar-brand" href="{% url 'categories:index' %}"><img class="logo" src="{% static 'img/topo-amadeus-white.png' %}" alt="Logo" /></a> | |
74 | 74 | </div> |
75 | 75 | <div class="navbar-collapse collapse navbar-responsive-collapse"> |
76 | 76 | <div class="col-md-5 cards-content" id= 'NavBarSearch'> |
77 | 77 | <form id="SearchForm" action="#" method="get" accept-charset="utf-8"> |
78 | 78 | <div class="input-group"> |
79 | 79 | <div class="form-group is-empty" > |
80 | - <input type="text" class="form-control" placeholder="{% trans 'Search Files (.pdf, others) and/or activities' %}" name="search"> | |
80 | + <input type="text" class="form-control top-search" placeholder="{% trans 'Search Files (.pdf, others) and/or activities' %}" name="search"> | |
81 | 81 | </div> |
82 | 82 | <span class="input-group-btn input-group-sm"> |
83 | 83 | <button type="submit" class="btn btn-primary" id="btn-search"> | ... | ... |