From 6216ea96b331baf7730890965b22b5ab2c78ea9e Mon Sep 17 00:00:00 2001 From: Leandro Nunes dos Santos Date: Mon, 20 Oct 2014 18:37:54 -0300 Subject: [PATCH] adicionando top-search-bar e modificando fonte padrão --- header.html.erb | 35 +++++++++++++++++++++++++++++++++++ style.css | 3 ++- top-search-bar.css | 10 ++++++++++ 3 files changed, 47 insertions(+), 1 deletion(-) create mode 100644 top-search-bar.css diff --git a/header.html.erb b/header.html.erb index 11cb716..a50c02b 100644 --- a/header.html.erb +++ b/header.html.erb @@ -2,6 +2,41 @@ <%= theme_include "user_menu", :locals => {:person => user.person} if user %> +
diff --git a/style.css b/style.css index f3c8448..298a4f9 100644 --- a/style.css +++ b/style.css @@ -1,12 +1,13 @@ @import url(../base/style.css); /****************** ESTILO BASE ******************/ @import url(cabecalho.css); +@import url(top-search-bar.css); /****************** FIM cabecalho amarelo ******************/ @import url(style-core.css); @import url(user-menu.css); body, th, td, input { -font-family: Arial, sans-serif; +font-family: Open Sans; } #wrap-2 {background-color:#ebeff2;} diff --git a/top-search-bar.css b/top-search-bar.css new file mode 100644 index 0000000..41dda85 --- /dev/null +++ b/top-search-bar.css @@ -0,0 +1,10 @@ +#top-search-bar { + height: 26px; +} + +#top-search-bar .hide{ display: none;} +#top-search-bar ul { margin:0 0 0 20px; padding:0; list-style-type:none; list-style-position:outside; background:#ffffff; } +#top-search-bar ul a:link, #top-search-bar ul a:active, #top-search-bar ul a:visited { display:block; padding:0; text-decoration:none; } +#top-search-bar ul li { float:left; position:relative; background:none; padding:5px 12px; transition: all 300ms ease-in; } +#top-search-bar ul li:hover { background:#257CAD; color: white; text-shadow: none; } +#top-search-bar ul li a:hover { color: white; } -- libgit2 0.21.2