mirror of
				https://github.com/ae-utbm/sith.git
				synced 2025-10-31 00:53:08 +00:00 
			
		
		
		
	Few proposals in CSS
This commit is contained in:
		| @@ -19,15 +19,17 @@ header { | ||||
|     display: block; | ||||
|     position: absolute; | ||||
|     top : 0px; | ||||
|     right : 8%; | ||||
|     right : 2%; | ||||
|     background-color:#DDD; | ||||
|     margin: 0 10px; | ||||
|     padding: 0 10px; | ||||
|     border-radius: 0 0 10px 10px; | ||||
| } | ||||
| header ul { | ||||
|     display: inline-block; | ||||
|     list-style-type: none; | ||||
|     margin: 0px; | ||||
|     padding-right: 3px; | ||||
|     vertical-align: middle; | ||||
| } | ||||
| header a { | ||||
| @@ -51,10 +53,17 @@ header form { | ||||
| } | ||||
| #language_chooser { | ||||
|     position: absolute; | ||||
|     text-align: center; | ||||
|     left: 5px; | ||||
|     top: 5px; | ||||
| } | ||||
|  | ||||
| #language_chooser input { | ||||
|     margin: 2px; | ||||
|     width: 3em; | ||||
|     height: 2em; | ||||
| } | ||||
|  | ||||
| /*---------------------------------NAV---------------------------------*/ | ||||
| nav { | ||||
|     display: block; | ||||
| @@ -73,7 +82,7 @@ nav a { | ||||
|     padding: 20px; | ||||
| } | ||||
| nav a:hover { | ||||
|     background: purple; | ||||
|     background: #535353; | ||||
|     color: white; | ||||
| } | ||||
|  | ||||
| @@ -147,7 +156,8 @@ table { | ||||
| } | ||||
| td { | ||||
|     padding: 4px; | ||||
|     border: solid 1px black; | ||||
|     margin: 5px; | ||||
|     border: solid 1px darkgrey; | ||||
|     border-collapse: collapse; | ||||
|     vertical-align: top; | ||||
|     overflow: hidden; | ||||
| @@ -164,7 +174,7 @@ tbody>tr:nth-child(even) { | ||||
|     background: lightgrey; | ||||
| } | ||||
| tbody>tr:hover { | ||||
|     background: yellow; | ||||
|     background: darkgrey; | ||||
|     width: 100%; | ||||
| } | ||||
| .tool-bar { | ||||
|   | ||||
| @@ -19,7 +19,7 @@ | ||||
|                                                               alt="{% trans %}Logo{% endtrans %}" /></a></div> | ||||
|         <header> | ||||
|             {% if not user.is_authenticated() %} | ||||
|             <a href="{{ url('core:login') }}">{% trans %}Login{% endtrans %}</a> | | ||||
|             <a href="{{ url('core:login') }}">{% trans %}Login{% endtrans %}</a> | ||||
|             <a href="{{ url('core:register') }}">{% trans %}Register{% endtrans %}</a> | ||||
|             {% else %} | ||||
|             <ul> | ||||
| @@ -34,8 +34,8 @@ | ||||
|                 </li> | ||||
|             {% endfor %} | ||||
|             </ul> | ||||
|             <a href="{{ url('core:user_profile', user_id=user.id) }}">{{ user.get_display_name() }}</a> | | ||||
|             <a href="{{ url('core:user_tools') }}">{% trans %}Tools{% endtrans %}</a> | | ||||
|             <a href="{{ url('core:user_profile', user_id=user.id) }}">{{ user.get_display_name() }}</a> | ||||
|             <a href="{{ url('core:user_tools') }}">{% trans %}Tools{% endtrans %}</a> | ||||
|             <a href="{{ url('core:logout') }}">{% trans %}Logout{% endtrans %}</a> | ||||
|             <form action="{{ url('core:search') }}" method="GET"> | ||||
|                 <input type="text" placeholder="{% trans %}Search{% endtrans %}" name="query" id="search" /> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user