diff --git a/core/static/css/base/header.css b/core/static/css/base/header.css index deb3afb..c337f9f 100644 --- a/core/static/css/base/header.css +++ b/core/static/css/base/header.css @@ -10,15 +10,25 @@ .logo{ height:100%; - margin-left: 30%; } .link{ - transition-duration: 0.5s; + text-decoration: none; + position: relative; } -.link:hover{ - transform:scale(1.1); +.link:after{ + content: ''; + position: absolute; + bottom: 0; + left: 0; + width: 0%; + border-bottom: 2px solid; + transition: 0.4s; +} + +.link:hover:after{ + width: 100%; } .notification-count{ diff --git a/core/static/img/topo-amadeus-white.png b/core/static/img/topo-amadeus-white.png new file mode 100644 index 0000000..d50a8b5 Binary files /dev/null and b/core/static/img/topo-amadeus-white.png differ diff --git a/core/templates/base.html b/core/templates/base.html index 4387773..00633d3 100644 --- a/core/templates/base.html +++ b/core/templates/base.html @@ -45,12 +45,12 @@ - + -- libgit2 0.21.2