Linha 46: | Linha 46: | ||
-------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | ||
+ | /** Add a meta tag for Google Webmaster Services */ | ||
+ | $wgHooks['OutputPageBeforeHTML'][] = 'wfAddGoogle'; | ||
− | /* Costumizar o tipo de fonte utilizada para o texto | + | function wfAddGoogle(&$out, &$text) { |
− | body { font-family: 'Dosis', sans-serif; } | + | $out->addMeta('google-site-verification', '<verification key>'); |
+ | return true; | ||
+ | } | ||
+ | |||
+ | @import url(fonts#QuickUsePlace:quickUse/Family:Dosis:400%2c700); | ||
+ | |||
+ | |||
+ | /* Costumizar o tipo de fonte utilizada para o texto | ||
+ | body { font-family: 'Dosis', sans-serif; }*/ |
/* Código CSS colocado aqui será aplicado a todos os temas */ /* Costumização das cores da barra superior */ .top-bar, .top-bar .title-area, .top-bar.expanded .title-area, .top-bar .name h1 a, .top-bar-section ul, .top-bar-section ul li.active > a, .top-bar-section li a:not(.button), .top-bar-section .has-form, .top-bar-section .dropdown li.title h5 a { background: #E0E0D1; color: #009999; } .top-bar .toggle-topbar.menu-icon, .top-bar .toggle-topbar.menu-icon a { color: #000000; } .top-bar-section > ul > .divider, .top-bar-section > ul > [role="separator"] { border-color: #E0E0D1; } /* Customização da cor dos icons da barra quando o rato está em cima */ .top-bar-section ul li.hover > a, .top-bar-section ul li ul.dropdown li.hover > a{ background: #C2C2A3; } /* Customização da cor de fundo dos menus dropdown - icons da barra */ .top-bar-section ul li ul.dropdown li > a { background: #CCCCB3; align: right; } ---------------------------------------------------------------------------------------------------------------- /* Remoção da informação sobre nº de visualizações e últimas modificações no fundo das páginas */ li#footer-viewcount { display: none; } li#footer-lastmod { display: none; } -------------------------------------------------------------------------------------------------------------------------------- /** Add a meta tag for Google Webmaster Services */ $wgHooks['OutputPageBeforeHTML'][] = 'wfAddGoogle'; function wfAddGoogle(&$out, &$text) { $out->addMeta('google-site-verification', '<verification key>'); return true; } @import url(fonts#QuickUsePlace:quickUse/Family:Dosis:400%2c700); /* Costumizar o tipo de fonte utilizada para o texto body { font-family: 'Dosis', sans-serif; }*/