Difference between revisions of "MediaWiki:Common.css"
Adelo Vieira (talk | contribs) |
Adelo Vieira (talk | contribs) |
||
(194 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
− | /* | + | /* Parece que estos imports tienen que estar al inicio de esta página */ |
+ | @import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"); | ||
+ | |||
+ | |||
+ | /* Esta clase la defini para poder incluir divisiones ocultas en las páginas */ | ||
+ | .oculto { | ||
+ | display: none | ||
+ | } | ||
+ | |||
+ | |||
+ | #t-specialpages { display: none !important } | ||
+ | #t-upload { display: none !important } | ||
+ | #t-print { display: none !important } | ||
+ | #t-cite { display: none !important } | ||
+ | #t-contribution { display: none !important } | ||
+ | #t-log { display: none !important } | ||
+ | #t-blockp { display: none !important } | ||
+ | #t-userrithts { display: none !important } | ||
+ | #p-tb { display: none !important } | ||
+ | |||
+ | |||
+ | .mw-collapsible-toggle { outline: none !important; } | ||
+ | .mw-collapsible-text:hover { color: red !important; } | ||
+ | .mw-collapsible-toggle:hover { color: red !important;} | ||
+ | |||
+ | |||
+ | /* For a floating TOC */ | ||
+ | #toc {float:right;margin:0 0 1em 1em;position:fixed;top:85px;right:0px;}; | ||
+ | |||
+ | |||
+ | /* La siguiente línea permite eliminar la numeración en la TOC. Debemos también colocar <div class="noautonum">__TOC__</div> en la página donde no queremos que las secciones sean numeradas en la TOC */ | ||
+ | .noautonum .tocnumber { display: none; } | ||
+ | |||
+ | /* ########### | ||
+ | How to change font size and colour in Mediawiki navigation sidebar and footer: | ||
+ | http://stackoverflow.com/questions/17461308/how-to-change-font-size-and-colour-in-mediawiki-navigation-sidebar-and-footer | ||
+ | |||
+ | div#mw-panel div.portal div.body ul li a { | ||
+ | font-size:16px; | ||
+ | color: #008000; | ||
+ | } | ||
+ | div#mw-panel div.portal div.body ul li a:visited { | ||
+ | color: #A0600B; | ||
+ | } | ||
+ | |||
+ | |||
+ | use this when you want the same color for a link and visited link | ||
+ | |||
+ | div#mw-panel div.portal div.body ul li a, a:visited { | ||
+ | font-size:16px; | ||
+ | color: #008000; | ||
+ | } | ||
+ | |||
+ | or simple add a new line with this code | ||
+ | |||
+ | #mw-panel .portal a, #mw-panel .portal a:visited { | ||
+ | font-size:16px!important; | ||
+ | color: red!important; | ||
+ | } | ||
+ | |||
+ | For the Footer | ||
+ | |||
+ | add new line with this code | ||
+ | |||
+ | div#footer ul li{ | ||
+ | font-size:16px!important; | ||
+ | color:black!important; | ||
+ | } | ||
+ | |||
+ | div#footer ul li a,div#footer ul li a:visited { | ||
+ | color: orange!important; | ||
+ | } | ||
+ | |||
+ | ########### */ | ||
+ | |||
+ | |||
+ | /* Color of visited interwiki and external links | ||
+ | https://www.mediawiki.org/wiki/Topic:Uan4hrs0chronbyt | ||
+ | https://www.mediawiki.org/wiki/Design/Link_colors | ||
+ | |||
+ | .mw-body-content a:visited { color: #0645AD !IMPORTANT; } | ||
+ | .mw-body-content a.new:link { color: #cc2200 !IMPORTANT; } | ||
+ | .mw-body-content a.new:visited { color: #a55858 !IMPORTANT; } */ | ||
+ | |||
+ | a:visited { color: #0645AD !IMPORTANT; } | ||
+ | a.new:link { color: #cc2200 !IMPORTANT; } | ||
+ | a.new:visited { color: #a55858 !IMPORTANT; } | ||
+ | |||
+ | |||
/* Ocultar títulos en la barra vertical izquierda (sidebar) */ | /* Ocultar títulos en la barra vertical izquierda (sidebar) */ | ||
Line 16: | Line 104: | ||
#t-recentchangeslinked { display: none !important; } | #t-recentchangeslinked { display: none !important; } | ||
+ | |||
/* Ocultar títulos en las páginas: */ | /* Ocultar títulos en las páginas: */ | ||
+ | body.page-Mis_páginas h1.firstHeading { display: none; } | ||
body.page-Página_principal h1.firstHeading { display: none; } | body.page-Página_principal h1.firstHeading { display: none; } | ||
− | body.page- | + | body.page-Página_base h1.firstHeading { display: none; } |
− | body.page- | + | body.page-Sinfronteras h1.firstHeading { display: none; } |
− | |||
+ | body.page-Formal_Natural_and_Applied_sciences h1.firstHeading { display: none; } | ||
+ | body.page-Social_sciences_and_Humanities h1.firstHeading { display: none; } | ||
+ | body.page-Música h1.firstHeading { display: none; } | ||
+ | body.page-Carrera h1.firstHeading { display: none; } | ||
− | /* | + | body.page-CV_-_Skills_and_Qualifications h1.firstHeading { display: none; } |
+ | body.page-CV_-_Work_experience h1.firstHeading { display: none; } | ||
+ | body.page-CV_-_Work_experience h1.firstHeading { display: none; } | ||
+ | body.page-CV_-_Education h1.firstHeading { display: none; } | ||
+ | body.page-CV_-_Languages h1.firstHeading { display: none; } | ||
+ | body.page-CV_-_Publications h1.firstHeading { display: none; } | ||
+ | body.page-CV_-_Interests h1.firstHeading { display: none; } | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | /* Asi podemos oculatar la sidebar | ||
+ | .page-Adelo_Vieira_-_Curriculum #mw-panel { display: none !important; } | ||
+ | .page-Adelo_Vieira_-_Curriculum #p-navigation { display: none !important; } | ||
+ | .page-Adelo_Vieira_-_Curriculum #p-tb { display: none !important; } | ||
+ | */ | ||
+ | |||
− | + | /* De esta forma se pueden oculatar links específicos en la sidebar */ | |
− | + | /* Así ocultamos el link «Tools» */ | |
− | .page- | + | .page-Adelo_Vieira_-_Curriculum #p-tb { display: none !important; } |
− | + | .page-CV_-_Skills_and_Qualifications #p-tb { display: none !important; } | |
− | .page- | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
/* | /* | ||
Line 65: | Line 149: | ||
*/ | */ | ||
− | /*.page- | + | /*.page-Prueba_CV #n-Ideas-Propuestas { display: none !important; }*/ |
− | .page- | + | .page-Prueba_CV #n-help { display: none !important; } |
Line 84: | Line 168: | ||
padding: 0; | padding: 0; | ||
} | } | ||
+ | |||
/*Cambiar el formato de los títulos de las secciones*/ | /*Cambiar el formato de los títulos de las secciones*/ | ||
− | /*#bodyContent h2 { font-size: | + | |
+ | /*#bodyContent h2 { font-size: 1.8em !important; font-style:bold !important; }*/ | ||
Line 102: | Line 188: | ||
/*h2 { | /*h2 { | ||
color: black; | color: black; | ||
− | |||
background: none; | background: none; | ||
font-weight: normal; | font-weight: normal; | ||
Line 110: | Line 195: | ||
border-bottom: 1px solid #aaa; | border-bottom: 1px solid #aaa; | ||
*/ | */ | ||
+ | |||
+ | |||
+ | /* Oculatar paginas en la sidebar en la pagina ERoster*/ | ||
+ | |||
+ | |||
+ | |||
+ | .mw-highlight > pre { background: #babcc6 } | ||
+ | |||
+ | /* #ddd8ba #9ca0ba */ | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | /* Modeificaciones hechas para tratar de crear una página de CV */ | ||
+ | |||
+ | /* */ | ||
+ | |||
+ | |||
+ | |||
+ | /* .page-CV .mediawiki { padding-left: 50pt !important; padding-right: 50pt !important; } */ | ||
+ | /* .page-CV #mw-panel { visibility: collapse !important; } */ | ||
+ | /* .page-CV #p-namespaces { visibility: collapse !important; } */ | ||
+ | /* .page-CV #content { max-width: 1200pt !important; margin-left: auto !important; margin-right: auto !important; } */ | ||
+ | /* .page-CV #mw-panel { visibility: collapse !important; } */ | ||
+ | /* .page-CV #mw-page-base { visibility: collapse !important; } */ | ||
+ | |||
+ | /* .page-CV #p-search { display: none !important; } */ | ||
+ | /* .page-CV #ca-head-base { display: none !important; } */ | ||
+ | /* .page-CV #ca-nstab-main { display: none !important; } */ | ||
+ | /* .page-CV #ca-talk { display: none !important; } */ | ||
+ | /* .page-CV #ca-view { display: none !important; } */ | ||
+ | /* .page-CV #ca-viewsource { display: none !important; } */ | ||
+ | /* .page-CV #ca-edit { display: none !important; } */ | ||
+ | /* .page-CV #ca-ve-edit { display: none !important; } */ | ||
+ | /* .page-CV #ca-history { display: none !important; } */ | ||
+ | /* .page-CV #ca-unwatch { display: none !important; } */ | ||
+ | /* .page-CV #ca-watch { display: none !important; } */ | ||
+ | /* .page-CV #p-cactions { display: none !important; } */ | ||
+ | /* .page-CV #pt-userpage { display: none !important; } */ | ||
+ | /* .page-CV #pt-mytalk { display: none !important; } */ | ||
+ | /* .page-CV #pt-preferences { display: none !important; } */ | ||
+ | /* .page-CV #pt-watchlist { display: none !important; } */ | ||
+ | /* .page-CV #pt-mycontris { display: none !important; } */ | ||
+ | /* .page-CV #pt-logout { display: none !important; } */ | ||
+ | /* .page-CV #pt-anonuserpage { display: none !important; } */ | ||
+ | /* .page-CV #pt-anontalk { display: none !important; } */ | ||
+ | /* .page-CV #pt-createaccount { display: none !important; } */ | ||
+ | /* .page-CV #pt-login { display: none !important; } */ | ||
+ | /* .page-CV #footer-info-copyright { display: none !important; } */ | ||
+ | /* .page-CV #footer-places-privacy { display: none !important; } */ | ||
+ | /* .page-CV #footer-places-about { display: none !important; } */ | ||
+ | /* .page-CV #footer-places-disclaimer { display: none !important; } */ | ||
+ | /* .page-CV #p-tb { display: none !important; } */ | ||
+ | |||
+ | |||
+ | |||
+ | /* */ | ||
+ | |||
+ | /* .page-CV_-_Skills_and_Qualifications #p-search { display: none !important; } */ | ||
+ | .page-CV_-_Skills_and_Qualifications #ca-head-base { display: none !important; } | ||
+ | .page-CV_-_Skills_and_Qualifications #ca-nstab-main { display: none !important; } | ||
+ | .page-CV_-_Skills_and_Qualifications #ca-talk { display: none !important; } | ||
+ | .page-CV_-_Skills_and_Qualifications #ca-view { display: none !important; } | ||
+ | .page-CV_-_Skills_and_Qualifications #ca-viewsource { display: none !important; } | ||
+ | .page-CV_-_Skills_and_Qualifications #ca-edit { display: none !important; } | ||
+ | .page-CV_-_Skills_and_Qualifications #ca-ve-edit { display: none !important; } | ||
+ | .page-CV_-_Skills_and_Qualifications #ca-history { display: none !important; } | ||
+ | .page-CV_-_Skills_and_Qualifications #ca-unwatch { display: none !important; } | ||
+ | .page-CV_-_Skills_and_Qualifications #ca-watch { display: none !important; } | ||
+ | .page-CV_-_Skills_and_Qualifications #p-cactions { display: none !important; } | ||
+ | .page-CV_-_Skills_and_Qualifications #pt-userpage { display: none !important; } | ||
+ | .page-CV_-_Skills_and_Qualifications #pt-mytalk { display: none !important; } | ||
+ | .page-CV_-_Skills_and_Qualifications #pt-preferences { display: none !important; } | ||
+ | .page-CV_-_Skills_and_Qualifications #pt-watchlist { display: none !important; } | ||
+ | .page-CV_-_Skills_and_Qualifications #pt-mycontris { display: none !important; } | ||
+ | .page-CV_-_Skills_and_Qualifications #pt-logout { display: none !important; } | ||
+ | .page-CV_-_Skills_and_Qualifications #pt-anonuserpage { display: none !important; } | ||
+ | .page-CV_-_Skills_and_Qualifications #pt-anontalk { display: none !important; } | ||
+ | .page-CV_-_Skills_and_Qualifications #pt-createaccount { display: none !important; } | ||
+ | .page-CV_-_Skills_and_Qualifications #pt-login { display: none !important; } | ||
+ | .page-CV_-_Skills_and_Qualifications #footer-info-copyright { display: none !important; } | ||
+ | .page-CV_-_Skills_and_Qualifications #footer-places-privacy { display: none !important; } | ||
+ | .page-CV_-_Skills_and_Qualifications #footer-places-about { display: none !important; } | ||
+ | .page-CV_-_Skills_and_Qualifications #footer-places-disclaimer { display: none !important; } | ||
+ | .page-CV_-_Skills_and_Qualifications #p-tb { display: none !important; } | ||
+ | |||
+ | |||
+ | |||
+ | /* */ | ||
+ | |||
+ | /* .page-CV_-_Work_experience #p-search { display: none !important; } */ | ||
+ | .page-CV_-_Work_experience #ca-head-base { display: none !important; } | ||
+ | .page-CV_-_Work_experience #ca-nstab-main { display: none !important; } | ||
+ | .page-CV_-_Work_experience #ca-talk { display: none !important; } | ||
+ | .page-CV_-_Work_experience #ca-view { display: none !important; } | ||
+ | .page-CV_-_Work_experience #ca-viewsource { display: none !important; } | ||
+ | .page-CV_-_Work_experience #ca-edit { display: none !important; } | ||
+ | .page-CV_-_Work_experience #ca-ve-edit { display: none !important; } | ||
+ | .page-CV_-_Work_experience #ca-history { display: none !important; } | ||
+ | .page-CV_-_Work_experience #ca-unwatch { display: none !important; } | ||
+ | .page-CV_-_Work_experience #ca-watch { display: none !important; } | ||
+ | .page-CV_-_Work_experience #p-cactions { display: none !important; } | ||
+ | .page-CV_-_Work_experience #pt-userpage { display: none !important; } | ||
+ | .page-CV_-_Work_experience #pt-mytalk { display: none !important; } | ||
+ | .page-CV_-_Work_experience #pt-preferences { display: none !important; } | ||
+ | .page-CV_-_Work_experience #pt-watchlist { display: none !important; } | ||
+ | .page-CV_-_Work_experience #pt-mycontris { display: none !important; } | ||
+ | .page-CV_-_Work_experience #pt-logout { display: none !important; } | ||
+ | .page-CV_-_Work_experience #pt-anonuserpage { display: none !important; } | ||
+ | .page-CV_-_Work_experience #pt-anontalk { display: none !important; } | ||
+ | .page-CV_-_Work_experience #pt-createaccount { display: none !important; } | ||
+ | .page-CV_-_Work_experience #pt-login { display: none !important; } | ||
+ | .page-CV_-_Work_experience #footer-info-copyright { display: none !important; } | ||
+ | .page-CV_-_Work_experience #footer-places-privacy { display: none !important; } | ||
+ | .page-CV_-_Work_experience #footer-places-about { display: none !important; } | ||
+ | .page-CV_-_Work_experience #footer-places-disclaimer { display: none !important; } | ||
+ | .page-CV_-_Work_experience #p-tb { display: none !important; } | ||
+ | |||
+ | |||
+ | |||
+ | /* */ | ||
+ | |||
+ | /* .page-CV_-_Education #p-search { display: none !important; } */ | ||
+ | .page-CV_-_Education #ca-head-base { display: none !important; } | ||
+ | .page-CV_-_Education #ca-nstab-main { display: none !important; } | ||
+ | .page-CV_-_Education #ca-talk { display: none !important; } | ||
+ | .page-CV_-_Education #ca-view { display: none !important; } | ||
+ | .page-CV_-_Education #ca-viewsource { display: none !important; } | ||
+ | .page-CV_-_Education #ca-edit { display: none !important; } | ||
+ | .page-CV_-_Education #ca-ve-edit { display: none !important; } | ||
+ | .page-CV_-_Education #ca-history { display: none !important; } | ||
+ | .page-CV_-_Education #ca-unwatch { display: none !important; } | ||
+ | .page-CV_-_Education #ca-watch { display: none !important; } | ||
+ | .page-CV_-_Education #p-cactions { display: none !important; } | ||
+ | .page-CV_-_Education #pt-userpage { display: none !important; } | ||
+ | .page-CV_-_Education #pt-mytalk { display: none !important; } | ||
+ | .page-CV_-_Education #pt-preferences { display: none !important; } | ||
+ | .page-CV_-_Education #pt-watchlist { display: none !important; } | ||
+ | .page-CV_-_Education #pt-mycontris { display: none !important; } | ||
+ | .page-CV_-_Education #pt-logout { display: none !important; } | ||
+ | .page-CV_-_Education #pt-anonuserpage { display: none !important; } | ||
+ | .page-CV_-_Education #pt-anontalk { display: none !important; } | ||
+ | .page-CV_-_Education #pt-createaccount { display: none !important; } | ||
+ | .page-CV_-_Education #pt-login { display: none !important; } | ||
+ | .page-CV_-_Education #footer-info-copyright { display: none !important; } | ||
+ | .page-CV_-_Education #footer-places-privacy { display: none !important; } | ||
+ | .page-CV_-_Education #footer-places-about { display: none !important; } | ||
+ | .page-CV_-_Education #footer-places-disclaimer { display: none !important; } | ||
+ | .page-CV_-_Education #p-tb { display: none !important; } | ||
+ | |||
+ | |||
+ | |||
+ | /* */ | ||
+ | |||
+ | /* .page-CV_-_Languages #p-search { display: none !important; } */ | ||
+ | .page-CV_-_Languages #ca-head-base { display: none !important; } | ||
+ | .page-CV_-_Languages #ca-nstab-main { display: none !important; } | ||
+ | .page-CV_-_Languages #ca-talk { display: none !important; } | ||
+ | .page-CV_-_Languages #ca-view { display: none !important; } | ||
+ | .page-CV_-_Languages #ca-viewsource { display: none !important; } | ||
+ | .page-CV_-_Languages #ca-edit { display: none !important; } | ||
+ | .page-CV_-_Languages #ca-ve-edit { display: none !important; } | ||
+ | .page-CV_-_Languages #ca-history { display: none !important; } | ||
+ | .page-CV_-_Languages #ca-unwatch { display: none !important; } | ||
+ | .page-CV_-_Languages #ca-watch { display: none !important; } | ||
+ | .page-CV_-_Languages #p-cactions { display: none !important; } | ||
+ | .page-CV_-_Languages #pt-userpage { display: none !important; } | ||
+ | .page-CV_-_Languages #pt-mytalk { display: none !important; } | ||
+ | .page-CV_-_Languages #pt-preferences { display: none !important; } | ||
+ | .page-CV_-_Languages #pt-watchlist { display: none !important; } | ||
+ | .page-CV_-_Languages #pt-mycontris { display: none !important; } | ||
+ | .page-CV_-_Languages #pt-logout { display: none !important; } | ||
+ | .page-CV_-_Languages #pt-anonuserpage { display: none !important; } | ||
+ | .page-CV_-_Languages #pt-anontalk { display: none !important; } | ||
+ | .page-CV_-_Languages #pt-createaccount { display: none !important; } | ||
+ | .page-CV_-_Languages #pt-login { display: none !important; } | ||
+ | .page-CV_-_Languages #footer-info-copyright { display: none !important; } | ||
+ | .page-CV_-_Languages #footer-places-privacy { display: none !important; } | ||
+ | .page-CV_-_Languages #footer-places-about { display: none !important; } | ||
+ | .page-CV_-_Languages #footer-places-disclaimer { display: none !important; } | ||
+ | .page-CV_-_Languages #p-tb { display: none !important; } | ||
+ | |||
+ | |||
+ | |||
+ | /* */ | ||
+ | |||
+ | /* .page-CV_-_Courses #p-search { display: none !important; } */ | ||
+ | .page-CV_-_Courses #ca-head-base { display: none !important; } | ||
+ | .page-CV_-_Courses #ca-nstab-main { display: none !important; } | ||
+ | .page-CV_-_Courses #ca-talk { display: none !important; } | ||
+ | .page-CV_-_Courses #ca-view { display: none !important; } | ||
+ | .page-CV_-_Courses #ca-viewsource { display: none !important; } | ||
+ | .page-CV_-_Courses #ca-edit { display: none !important; } | ||
+ | .page-CV_-_Courses #ca-ve-edit { display: none !important; } | ||
+ | .page-CV_-_Courses #ca-history { display: none !important; } | ||
+ | .page-CV_-_Courses #ca-unwatch { display: none !important; } | ||
+ | .page-CV_-_Courses #ca-watch { display: none !important; } | ||
+ | .page-CV_-_Courses #p-cactions { display: none !important; } | ||
+ | .page-CV_-_Courses #pt-userpage { display: none !important; } | ||
+ | .page-CV_-_Courses #pt-mytalk { display: none !important; } | ||
+ | .page-CV_-_Courses #pt-preferences { display: none !important; } | ||
+ | .page-CV_-_Courses #pt-watchlist { display: none !important; } | ||
+ | .page-CV_-_Courses #pt-mycontris { display: none !important; } | ||
+ | .page-CV_-_Courses #pt-logout { display: none !important; } | ||
+ | .page-CV_-_Courses #pt-anonuserpage { display: none !important; } | ||
+ | .page-CV_-_Courses #pt-anontalk { display: none !important; } | ||
+ | .page-CV_-_Courses #pt-createaccount { display: none !important; } | ||
+ | .page-CV_-_Courses #pt-login { display: none !important; } | ||
+ | .page-CV_-_Courses #footer-info-copyright { display: none !important; } | ||
+ | .page-CV_-_Courses #footer-places-privacy { display: none !important; } | ||
+ | .page-CV_-_Courses #footer-places-about { display: none !important; } | ||
+ | .page-CV_-_Courses #footer-places-disclaimer { display: none !important; } | ||
+ | .page-CV_-_Courses #p-tb { display: none !important; } | ||
+ | |||
+ | |||
+ | |||
+ | /* */ | ||
+ | |||
+ | /* .page-CV_-_Publications #p-search { display: none !important; } */ | ||
+ | .page-CV_-_Publications #ca-head-base { display: none !important; } | ||
+ | .page-CV_-_Publications #ca-nstab-main { display: none !important; } | ||
+ | .page-CV_-_Publications #ca-talk { display: none !important; } | ||
+ | .page-CV_-_Publications #ca-view { display: none !important; } | ||
+ | .page-CV_-_Publications #ca-viewsource { display: none !important; } | ||
+ | .page-CV_-_Publications #ca-edit { display: none !important; } | ||
+ | .page-CV_-_Publications #ca-ve-edit { display: none !important; } | ||
+ | .page-CV_-_Publications #ca-history { display: none !important; } | ||
+ | .page-CV_-_Publications #ca-unwatch { display: none !important; } | ||
+ | .page-CV_-_Publications #ca-watch { display: none !important; } | ||
+ | .page-CV_-_Publications #p-cactions { display: none !important; } | ||
+ | .page-CV_-_Publications #pt-userpage { display: none !important; } | ||
+ | .page-CV_-_Publications #pt-mytalk { display: none !important; } | ||
+ | .page-CV_-_Publications #pt-preferences { display: none !important; } | ||
+ | .page-CV_-_Publications #pt-watchlist { display: none !important; } | ||
+ | .page-CV_-_Publications #pt-mycontris { display: none !important; } | ||
+ | .page-CV_-_Publications #pt-logout { display: none !important; } | ||
+ | .page-CV_-_Publications #pt-anonuserpage { display: none !important; } | ||
+ | .page-CV_-_Publications #pt-anontalk { display: none !important; } | ||
+ | .page-CV_-_Publications #pt-createaccount { display: none !important; } | ||
+ | .page-CV_-_Publications #pt-login { display: none !important; } | ||
+ | .page-CV_-_Publications #footer-info-copyright { display: none !important; } | ||
+ | .page-CV_-_Publications #footer-places-privacy { display: none !important; } | ||
+ | .page-CV_-_Publications #footer-places-about { display: none !important; } | ||
+ | .page-CV_-_Publications #footer-places-disclaimer { display: none !important; } | ||
+ | .page-CV_-_Publications #p-tb { display: none !important; } | ||
+ | |||
+ | |||
+ | |||
+ | /* */ | ||
+ | |||
+ | /* .page-CV_-_Interests #p-search { display: none !important; } */ | ||
+ | .page-CV_-_Interests #ca-head-base { display: none !important; } | ||
+ | .page-CV_-_Interests #ca-nstab-main { display: none !important; } | ||
+ | .page-CV_-_Interests #ca-talk { display: none !important; } | ||
+ | .page-CV_-_Interests #ca-view { display: none !important; } | ||
+ | .page-CV_-_Interests #ca-viewsource { display: none !important; } | ||
+ | .page-CV_-_Interests #ca-edit { display: none !important; } | ||
+ | .page-CV_-_Interests #ca-ve-edit { display: none !important; } | ||
+ | .page-CV_-_Interests #ca-history { display: none !important; } | ||
+ | .page-CV_-_Interests #ca-unwatch { display: none !important; } | ||
+ | .page-CV_-_Interests #ca-watch { display: none !important; } | ||
+ | .page-CV_-_Interests #p-cactions { display: none !important; } | ||
+ | .page-CV_-_Interests #pt-userpage { display: none !important; } | ||
+ | .page-CV_-_Interests #pt-mytalk { display: none !important; } | ||
+ | .page-CV_-_Interests #pt-preferences { display: none !important; } | ||
+ | .page-CV_-_Interests #pt-watchlist { display: none !important; } | ||
+ | .page-CV_-_Interests #pt-mycontris { display: none !important; } | ||
+ | .page-CV_-_Interests #pt-logout { display: none !important; } | ||
+ | .page-CV_-_Interests #pt-anonuserpage { display: none !important; } | ||
+ | .page-CV_-_Interests #pt-anontalk { display: none !important; } | ||
+ | .page-CV_-_Interests #pt-createaccount { display: none !important; } | ||
+ | .page-CV_-_Interests #pt-login { display: none !important; } | ||
+ | .page-CV_-_Interests #footer-info-copyright { display: none !important; } | ||
+ | .page-CV_-_Interests #footer-places-privacy { display: none !important; } | ||
+ | .page-CV_-_Interests #footer-places-about { display: none !important; } | ||
+ | .page-CV_-_Interests #footer-places-disclaimer { display: none !important; } | ||
+ | .page-CV_-_Interests #p-tb { display: none !important; } |
Latest revision as of 21:48, 16 March 2021
/* Los estilos CSS colocados aquí se aplicarán a todas las apariencias */
/* Parece que estos imports tienen que estar al inicio de esta página */
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
/* Esta clase la defini para poder incluir divisiones ocultas en las páginas */
.oculto {
display: none
}
#t-specialpages { display: none !important }
#t-upload { display: none !important }
#t-print { display: none !important }
#t-cite { display: none !important }
#t-contribution { display: none !important }
#t-log { display: none !important }
#t-blockp { display: none !important }
#t-userrithts { display: none !important }
#p-tb { display: none !important }
.mw-collapsible-toggle { outline: none !important; }
.mw-collapsible-text:hover { color: red !important; }
.mw-collapsible-toggle:hover { color: red !important;}
/* For a floating TOC */
#toc {float:right;margin:0 0 1em 1em;position:fixed;top:85px;right:0px;};
/* La siguiente línea permite eliminar la numeración en la TOC. Debemos también colocar <div class="noautonum">__TOC__</div> en la página donde no queremos que las secciones sean numeradas en la TOC */
.noautonum .tocnumber { display: none; }
/* ###########
How to change font size and colour in Mediawiki navigation sidebar and footer:
http://stackoverflow.com/questions/17461308/how-to-change-font-size-and-colour-in-mediawiki-navigation-sidebar-and-footer
div#mw-panel div.portal div.body ul li a {
font-size:16px;
color: #008000;
}
div#mw-panel div.portal div.body ul li a:visited {
color: #A0600B;
}
use this when you want the same color for a link and visited link
div#mw-panel div.portal div.body ul li a, a:visited {
font-size:16px;
color: #008000;
}
or simple add a new line with this code
#mw-panel .portal a, #mw-panel .portal a:visited {
font-size:16px!important;
color: red!important;
}
For the Footer
add new line with this code
div#footer ul li{
font-size:16px!important;
color:black!important;
}
div#footer ul li a,div#footer ul li a:visited {
color: orange!important;
}
########### */
/* Color of visited interwiki and external links
https://www.mediawiki.org/wiki/Topic:Uan4hrs0chronbyt
https://www.mediawiki.org/wiki/Design/Link_colors
.mw-body-content a:visited { color: #0645AD !IMPORTANT; }
.mw-body-content a.new:link { color: #cc2200 !IMPORTANT; }
.mw-body-content a.new:visited { color: #a55858 !IMPORTANT; } */
a:visited { color: #0645AD !IMPORTANT; }
a.new:link { color: #cc2200 !IMPORTANT; }
a.new:visited { color: #a55858 !IMPORTANT; }
/* Ocultar títulos en la barra vertical izquierda (sidebar) */
#n-randompage { display: none !important; }
#n-recentchanges { display: none !important; }
#t-whatlinkshere { display: none !important; }
#t-info { display: none !important; }
#t-permalink { display: none !important; }
#t-recentchangeslinked { display: none !important; }
/* Ocultar títulos en las páginas: */
body.page-Mis_páginas h1.firstHeading { display: none; }
body.page-Página_principal h1.firstHeading { display: none; }
body.page-Página_base h1.firstHeading { display: none; }
body.page-Sinfronteras h1.firstHeading { display: none; }
body.page-Formal_Natural_and_Applied_sciences h1.firstHeading { display: none; }
body.page-Social_sciences_and_Humanities h1.firstHeading { display: none; }
body.page-Música h1.firstHeading { display: none; }
body.page-Carrera h1.firstHeading { display: none; }
body.page-CV_-_Skills_and_Qualifications h1.firstHeading { display: none; }
body.page-CV_-_Work_experience h1.firstHeading { display: none; }
body.page-CV_-_Work_experience h1.firstHeading { display: none; }
body.page-CV_-_Education h1.firstHeading { display: none; }
body.page-CV_-_Languages h1.firstHeading { display: none; }
body.page-CV_-_Publications h1.firstHeading { display: none; }
body.page-CV_-_Interests h1.firstHeading { display: none; }
/* Asi podemos oculatar la sidebar
.page-Adelo_Vieira_-_Curriculum #mw-panel { display: none !important; }
.page-Adelo_Vieira_-_Curriculum #p-navigation { display: none !important; }
.page-Adelo_Vieira_-_Curriculum #p-tb { display: none !important; }
*/
/* De esta forma se pueden oculatar links específicos en la sidebar */
/* Así ocultamos el link «Tools» */
.page-Adelo_Vieira_-_Curriculum #p-tb { display: none !important; }
.page-CV_-_Skills_and_Qualifications #p-tb { display: none !important; }
/*
n-Art.C3.ADculos
Art%C3%ADculos
*/
/*.page-Prueba_CV #n-Ideas-Propuestas { display: none !important; }*/
.page-Prueba_CV #n-help { display: none !important; }
/*
div#mw-panel { width: 20em; }
div#footer, #mw-head-base, div#content { margin-left: 20em; }
#left-navigation { margin-left: 20em; }
*/
#globalWrapper {
position:relative;
font-size: 127%;
width: 900px;
margin-left:auto;
margin-right:auto;
padding: 0;
}
/*Cambiar el formato de los títulos de las secciones*/
/*#bodyContent h2 { font-size: 1.8em !important; font-style:bold !important; }*/
/* Bold h1 and h2 */
h1 { font-weight: bold; }
.editsection { font-weight: normal; }
h2 { font-weight: bold; }
.editsection { font-weight: normal; }
/*h2 {
color: black;
background: none;
font-weight: normal;
margin: 0;
padding-top: .5em;
padding-bottom: .17em;
border-bottom: 1px solid #aaa;
*/
/* Oculatar paginas en la sidebar en la pagina ERoster*/
.mw-highlight > pre { background: #babcc6 }
/* #ddd8ba #9ca0ba */
/* Modeificaciones hechas para tratar de crear una página de CV */
/* */
/* .page-CV .mediawiki { padding-left: 50pt !important; padding-right: 50pt !important; } */
/* .page-CV #mw-panel { visibility: collapse !important; } */
/* .page-CV #p-namespaces { visibility: collapse !important; } */
/* .page-CV #content { max-width: 1200pt !important; margin-left: auto !important; margin-right: auto !important; } */
/* .page-CV #mw-panel { visibility: collapse !important; } */
/* .page-CV #mw-page-base { visibility: collapse !important; } */
/* .page-CV #p-search { display: none !important; } */
/* .page-CV #ca-head-base { display: none !important; } */
/* .page-CV #ca-nstab-main { display: none !important; } */
/* .page-CV #ca-talk { display: none !important; } */
/* .page-CV #ca-view { display: none !important; } */
/* .page-CV #ca-viewsource { display: none !important; } */
/* .page-CV #ca-edit { display: none !important; } */
/* .page-CV #ca-ve-edit { display: none !important; } */
/* .page-CV #ca-history { display: none !important; } */
/* .page-CV #ca-unwatch { display: none !important; } */
/* .page-CV #ca-watch { display: none !important; } */
/* .page-CV #p-cactions { display: none !important; } */
/* .page-CV #pt-userpage { display: none !important; } */
/* .page-CV #pt-mytalk { display: none !important; } */
/* .page-CV #pt-preferences { display: none !important; } */
/* .page-CV #pt-watchlist { display: none !important; } */
/* .page-CV #pt-mycontris { display: none !important; } */
/* .page-CV #pt-logout { display: none !important; } */
/* .page-CV #pt-anonuserpage { display: none !important; } */
/* .page-CV #pt-anontalk { display: none !important; } */
/* .page-CV #pt-createaccount { display: none !important; } */
/* .page-CV #pt-login { display: none !important; } */
/* .page-CV #footer-info-copyright { display: none !important; } */
/* .page-CV #footer-places-privacy { display: none !important; } */
/* .page-CV #footer-places-about { display: none !important; } */
/* .page-CV #footer-places-disclaimer { display: none !important; } */
/* .page-CV #p-tb { display: none !important; } */
/* */
/* .page-CV_-_Skills_and_Qualifications #p-search { display: none !important; } */
.page-CV_-_Skills_and_Qualifications #ca-head-base { display: none !important; }
.page-CV_-_Skills_and_Qualifications #ca-nstab-main { display: none !important; }
.page-CV_-_Skills_and_Qualifications #ca-talk { display: none !important; }
.page-CV_-_Skills_and_Qualifications #ca-view { display: none !important; }
.page-CV_-_Skills_and_Qualifications #ca-viewsource { display: none !important; }
.page-CV_-_Skills_and_Qualifications #ca-edit { display: none !important; }
.page-CV_-_Skills_and_Qualifications #ca-ve-edit { display: none !important; }
.page-CV_-_Skills_and_Qualifications #ca-history { display: none !important; }
.page-CV_-_Skills_and_Qualifications #ca-unwatch { display: none !important; }
.page-CV_-_Skills_and_Qualifications #ca-watch { display: none !important; }
.page-CV_-_Skills_and_Qualifications #p-cactions { display: none !important; }
.page-CV_-_Skills_and_Qualifications #pt-userpage { display: none !important; }
.page-CV_-_Skills_and_Qualifications #pt-mytalk { display: none !important; }
.page-CV_-_Skills_and_Qualifications #pt-preferences { display: none !important; }
.page-CV_-_Skills_and_Qualifications #pt-watchlist { display: none !important; }
.page-CV_-_Skills_and_Qualifications #pt-mycontris { display: none !important; }
.page-CV_-_Skills_and_Qualifications #pt-logout { display: none !important; }
.page-CV_-_Skills_and_Qualifications #pt-anonuserpage { display: none !important; }
.page-CV_-_Skills_and_Qualifications #pt-anontalk { display: none !important; }
.page-CV_-_Skills_and_Qualifications #pt-createaccount { display: none !important; }
.page-CV_-_Skills_and_Qualifications #pt-login { display: none !important; }
.page-CV_-_Skills_and_Qualifications #footer-info-copyright { display: none !important; }
.page-CV_-_Skills_and_Qualifications #footer-places-privacy { display: none !important; }
.page-CV_-_Skills_and_Qualifications #footer-places-about { display: none !important; }
.page-CV_-_Skills_and_Qualifications #footer-places-disclaimer { display: none !important; }
.page-CV_-_Skills_and_Qualifications #p-tb { display: none !important; }
/* */
/* .page-CV_-_Work_experience #p-search { display: none !important; } */
.page-CV_-_Work_experience #ca-head-base { display: none !important; }
.page-CV_-_Work_experience #ca-nstab-main { display: none !important; }
.page-CV_-_Work_experience #ca-talk { display: none !important; }
.page-CV_-_Work_experience #ca-view { display: none !important; }
.page-CV_-_Work_experience #ca-viewsource { display: none !important; }
.page-CV_-_Work_experience #ca-edit { display: none !important; }
.page-CV_-_Work_experience #ca-ve-edit { display: none !important; }
.page-CV_-_Work_experience #ca-history { display: none !important; }
.page-CV_-_Work_experience #ca-unwatch { display: none !important; }
.page-CV_-_Work_experience #ca-watch { display: none !important; }
.page-CV_-_Work_experience #p-cactions { display: none !important; }
.page-CV_-_Work_experience #pt-userpage { display: none !important; }
.page-CV_-_Work_experience #pt-mytalk { display: none !important; }
.page-CV_-_Work_experience #pt-preferences { display: none !important; }
.page-CV_-_Work_experience #pt-watchlist { display: none !important; }
.page-CV_-_Work_experience #pt-mycontris { display: none !important; }
.page-CV_-_Work_experience #pt-logout { display: none !important; }
.page-CV_-_Work_experience #pt-anonuserpage { display: none !important; }
.page-CV_-_Work_experience #pt-anontalk { display: none !important; }
.page-CV_-_Work_experience #pt-createaccount { display: none !important; }
.page-CV_-_Work_experience #pt-login { display: none !important; }
.page-CV_-_Work_experience #footer-info-copyright { display: none !important; }
.page-CV_-_Work_experience #footer-places-privacy { display: none !important; }
.page-CV_-_Work_experience #footer-places-about { display: none !important; }
.page-CV_-_Work_experience #footer-places-disclaimer { display: none !important; }
.page-CV_-_Work_experience #p-tb { display: none !important; }
/* */
/* .page-CV_-_Education #p-search { display: none !important; } */
.page-CV_-_Education #ca-head-base { display: none !important; }
.page-CV_-_Education #ca-nstab-main { display: none !important; }
.page-CV_-_Education #ca-talk { display: none !important; }
.page-CV_-_Education #ca-view { display: none !important; }
.page-CV_-_Education #ca-viewsource { display: none !important; }
.page-CV_-_Education #ca-edit { display: none !important; }
.page-CV_-_Education #ca-ve-edit { display: none !important; }
.page-CV_-_Education #ca-history { display: none !important; }
.page-CV_-_Education #ca-unwatch { display: none !important; }
.page-CV_-_Education #ca-watch { display: none !important; }
.page-CV_-_Education #p-cactions { display: none !important; }
.page-CV_-_Education #pt-userpage { display: none !important; }
.page-CV_-_Education #pt-mytalk { display: none !important; }
.page-CV_-_Education #pt-preferences { display: none !important; }
.page-CV_-_Education #pt-watchlist { display: none !important; }
.page-CV_-_Education #pt-mycontris { display: none !important; }
.page-CV_-_Education #pt-logout { display: none !important; }
.page-CV_-_Education #pt-anonuserpage { display: none !important; }
.page-CV_-_Education #pt-anontalk { display: none !important; }
.page-CV_-_Education #pt-createaccount { display: none !important; }
.page-CV_-_Education #pt-login { display: none !important; }
.page-CV_-_Education #footer-info-copyright { display: none !important; }
.page-CV_-_Education #footer-places-privacy { display: none !important; }
.page-CV_-_Education #footer-places-about { display: none !important; }
.page-CV_-_Education #footer-places-disclaimer { display: none !important; }
.page-CV_-_Education #p-tb { display: none !important; }
/* */
/* .page-CV_-_Languages #p-search { display: none !important; } */
.page-CV_-_Languages #ca-head-base { display: none !important; }
.page-CV_-_Languages #ca-nstab-main { display: none !important; }
.page-CV_-_Languages #ca-talk { display: none !important; }
.page-CV_-_Languages #ca-view { display: none !important; }
.page-CV_-_Languages #ca-viewsource { display: none !important; }
.page-CV_-_Languages #ca-edit { display: none !important; }
.page-CV_-_Languages #ca-ve-edit { display: none !important; }
.page-CV_-_Languages #ca-history { display: none !important; }
.page-CV_-_Languages #ca-unwatch { display: none !important; }
.page-CV_-_Languages #ca-watch { display: none !important; }
.page-CV_-_Languages #p-cactions { display: none !important; }
.page-CV_-_Languages #pt-userpage { display: none !important; }
.page-CV_-_Languages #pt-mytalk { display: none !important; }
.page-CV_-_Languages #pt-preferences { display: none !important; }
.page-CV_-_Languages #pt-watchlist { display: none !important; }
.page-CV_-_Languages #pt-mycontris { display: none !important; }
.page-CV_-_Languages #pt-logout { display: none !important; }
.page-CV_-_Languages #pt-anonuserpage { display: none !important; }
.page-CV_-_Languages #pt-anontalk { display: none !important; }
.page-CV_-_Languages #pt-createaccount { display: none !important; }
.page-CV_-_Languages #pt-login { display: none !important; }
.page-CV_-_Languages #footer-info-copyright { display: none !important; }
.page-CV_-_Languages #footer-places-privacy { display: none !important; }
.page-CV_-_Languages #footer-places-about { display: none !important; }
.page-CV_-_Languages #footer-places-disclaimer { display: none !important; }
.page-CV_-_Languages #p-tb { display: none !important; }
/* */
/* .page-CV_-_Courses #p-search { display: none !important; } */
.page-CV_-_Courses #ca-head-base { display: none !important; }
.page-CV_-_Courses #ca-nstab-main { display: none !important; }
.page-CV_-_Courses #ca-talk { display: none !important; }
.page-CV_-_Courses #ca-view { display: none !important; }
.page-CV_-_Courses #ca-viewsource { display: none !important; }
.page-CV_-_Courses #ca-edit { display: none !important; }
.page-CV_-_Courses #ca-ve-edit { display: none !important; }
.page-CV_-_Courses #ca-history { display: none !important; }
.page-CV_-_Courses #ca-unwatch { display: none !important; }
.page-CV_-_Courses #ca-watch { display: none !important; }
.page-CV_-_Courses #p-cactions { display: none !important; }
.page-CV_-_Courses #pt-userpage { display: none !important; }
.page-CV_-_Courses #pt-mytalk { display: none !important; }
.page-CV_-_Courses #pt-preferences { display: none !important; }
.page-CV_-_Courses #pt-watchlist { display: none !important; }
.page-CV_-_Courses #pt-mycontris { display: none !important; }
.page-CV_-_Courses #pt-logout { display: none !important; }
.page-CV_-_Courses #pt-anonuserpage { display: none !important; }
.page-CV_-_Courses #pt-anontalk { display: none !important; }
.page-CV_-_Courses #pt-createaccount { display: none !important; }
.page-CV_-_Courses #pt-login { display: none !important; }
.page-CV_-_Courses #footer-info-copyright { display: none !important; }
.page-CV_-_Courses #footer-places-privacy { display: none !important; }
.page-CV_-_Courses #footer-places-about { display: none !important; }
.page-CV_-_Courses #footer-places-disclaimer { display: none !important; }
.page-CV_-_Courses #p-tb { display: none !important; }
/* */
/* .page-CV_-_Publications #p-search { display: none !important; } */
.page-CV_-_Publications #ca-head-base { display: none !important; }
.page-CV_-_Publications #ca-nstab-main { display: none !important; }
.page-CV_-_Publications #ca-talk { display: none !important; }
.page-CV_-_Publications #ca-view { display: none !important; }
.page-CV_-_Publications #ca-viewsource { display: none !important; }
.page-CV_-_Publications #ca-edit { display: none !important; }
.page-CV_-_Publications #ca-ve-edit { display: none !important; }
.page-CV_-_Publications #ca-history { display: none !important; }
.page-CV_-_Publications #ca-unwatch { display: none !important; }
.page-CV_-_Publications #ca-watch { display: none !important; }
.page-CV_-_Publications #p-cactions { display: none !important; }
.page-CV_-_Publications #pt-userpage { display: none !important; }
.page-CV_-_Publications #pt-mytalk { display: none !important; }
.page-CV_-_Publications #pt-preferences { display: none !important; }
.page-CV_-_Publications #pt-watchlist { display: none !important; }
.page-CV_-_Publications #pt-mycontris { display: none !important; }
.page-CV_-_Publications #pt-logout { display: none !important; }
.page-CV_-_Publications #pt-anonuserpage { display: none !important; }
.page-CV_-_Publications #pt-anontalk { display: none !important; }
.page-CV_-_Publications #pt-createaccount { display: none !important; }
.page-CV_-_Publications #pt-login { display: none !important; }
.page-CV_-_Publications #footer-info-copyright { display: none !important; }
.page-CV_-_Publications #footer-places-privacy { display: none !important; }
.page-CV_-_Publications #footer-places-about { display: none !important; }
.page-CV_-_Publications #footer-places-disclaimer { display: none !important; }
.page-CV_-_Publications #p-tb { display: none !important; }
/* */
/* .page-CV_-_Interests #p-search { display: none !important; } */
.page-CV_-_Interests #ca-head-base { display: none !important; }
.page-CV_-_Interests #ca-nstab-main { display: none !important; }
.page-CV_-_Interests #ca-talk { display: none !important; }
.page-CV_-_Interests #ca-view { display: none !important; }
.page-CV_-_Interests #ca-viewsource { display: none !important; }
.page-CV_-_Interests #ca-edit { display: none !important; }
.page-CV_-_Interests #ca-ve-edit { display: none !important; }
.page-CV_-_Interests #ca-history { display: none !important; }
.page-CV_-_Interests #ca-unwatch { display: none !important; }
.page-CV_-_Interests #ca-watch { display: none !important; }
.page-CV_-_Interests #p-cactions { display: none !important; }
.page-CV_-_Interests #pt-userpage { display: none !important; }
.page-CV_-_Interests #pt-mytalk { display: none !important; }
.page-CV_-_Interests #pt-preferences { display: none !important; }
.page-CV_-_Interests #pt-watchlist { display: none !important; }
.page-CV_-_Interests #pt-mycontris { display: none !important; }
.page-CV_-_Interests #pt-logout { display: none !important; }
.page-CV_-_Interests #pt-anonuserpage { display: none !important; }
.page-CV_-_Interests #pt-anontalk { display: none !important; }
.page-CV_-_Interests #pt-createaccount { display: none !important; }
.page-CV_-_Interests #pt-login { display: none !important; }
.page-CV_-_Interests #footer-info-copyright { display: none !important; }
.page-CV_-_Interests #footer-places-privacy { display: none !important; }
.page-CV_-_Interests #footer-places-about { display: none !important; }
.page-CV_-_Interests #footer-places-disclaimer { display: none !important; }
.page-CV_-_Interests #p-tb { display: none !important; }