/*
Theme Name: Rampey
Theme URI: 
Author: Biel Marín Gonzàlez
Author URI: https://bmaringonzalez.ieti.site
Description: Theme for the band of heavy metal Rampey
Tags: one-column, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, sticky-post, threaded-comments, block-styles, style-variations, accessibility-ready, blog, portfolio, news 
Version: 1.0
Requires at least: 5.0 
Tested up to: 5.4 
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: 
http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: Rampey is licensed under the GPL. Use it to make something cool, have fun, and share what you've learned with others.
*/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}


html, body {height: 100%;}
header {background-color: cyan;}
main {background-color: burlywood;}
aside {background-color: goldenrod;}
section {background-color: LightPink;}
footer {background-color: coral;}

/* +++++++++++++++++++++++++++++++++++++++++++
    Mis estilos de theme
++++++++++++++++++++++++++++++++++++ */

header, main, aside, article, footer, nav {
    padding: 20px;
    background-color: black;
    margin: 20px;
    color: white;
}
h1 {
    font-size: 36px;
    line-height: 40px;
}

h2 {
    font-size: 30px;
    line-height: 40px;
}

h3 {
    font-size: 24px;
    line-height: 40px;
}

h4 {
    font-size: 18px;
    line-height: 20px;
}

/* Won't be used here */

h5 {
    font-size: 14px;
    line-height: 20px;
}

h6 {
    font-size: 12px;
    line-height: 20px;
}

 /* unvisited link */
a:link {
  color: #ff4057;
}

/* visited link */
a:visited {
  color: #900048;
}

/* mouse over link */
a:hover {
  color: #ff8260;
}

/* selected link */
a:active {
  color: #05004e;
} 

p {
    margin: 0 0 10px;
}
ul, ol {
    margin: 0 0 0 10px;
}


/* +++++++++++++++++++++++++++++++++++++++++++
    front-page
++++++++++++++++++++++++++++++++++++ */

body.home {

}

/* +++++++++++++++++++++++++++++++++++++++++++
    header
++++++++++++++++++++++++++++++++++++ */

/* Tengo que hacer que quede como un menu de navegacion horizontal */
nav.navHeader {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}
nav.navHeader {
    font-size: 24px;
    margin-bottom: 20px;
}
nav.navHeader ul {
    display: flex;
    margin: 0;
}
nav.navHeader ul li {
    margin: 0 10px;
}
nav.navHeader ul li a {
    text-decoration: none;
    font-size: 18px;
}
nav.navHeader ul li a:hover {
    text-decoration: underline;
}

#menu-menu_principal {
    display: flex;
    justify-content: center;
}
ul.menu li {
    margin: 0 15px;
}

#menu-menu_footer {
    display: flex;
    justify-content: center;
}
ul.menu li {
    margin: 0 15px;
}
/* +++++++++++++++++++++++++++++++++++++++++++
    Blog Page
++++++++++++++++++++++++++++++++++++ */

/*Estilos para la pagina del blog para que el sidebar quedee a la derecha con un 15% y el main a la izquierda con un 85% */
/* La configuración del blog debe ser sin float, con display flex */
body.blog > div#container > div {
    display: flex;
    margin-top: 10px;
}
body.wp-singular > div#container > div {
    display: flex;
    margin-top: 10px;
}

body.blog > div#container > div > main {
    width: 75%;
    margin-right: 1px;
}
body.wp-singular > div#container > div > main {
    width: 75%;
    margin-right: 1px;
}

body.blog > div#container > div > aside {
    width: 20%;
    margin-left: 10px;
}
body.wp-singular > div#container > div > aside {
    width: 20%;
    margin-left: 10px;
}