Merge branch 'main' into logo-sticky
authorCrawKatt <man849916@gmail.com>
Sat, 28 Jan 2023 21:13:22 +0000 (18:13 -0300)
committerCrawKatt <man849916@gmail.com>
Sat, 28 Jan 2023 21:13:22 +0000 (18:13 -0300)
fusionando cambios

1  2 
themes/droda/assets/css/main.css

index 9d576a0981f80cdab9e1de9627efe97a05b55cf6,215f1ce4de5cc67ab8758dd6014837052f7f0da2..f67a0878cf0e5f7fecabb9b5efff98501e1bcb0f
  @charset "UTF-8";
  
  * {
-   box-sizing: border-box;
+    box-sizing: border-box;
  }
  
  :root {
-   --bgColorDark: #006b91;
-   --bgColorLight: #D2D2D2;
-   --globalScale: 1;
+    --bgColorDark: #242930;
+    --bgColorMidDark: #353b43;
+    --bgColorLightDark: #4f5864;
+    --bgColorLight: #D2D2D2;
+    --globalScale: 1;
  }
  
  h1 {
-   font-size: 6rem;
+    font-size: 6rem;
  }
  
  h2 {
-   font-size: 4rem;
+    font-size: 4rem;
  }
  
  h3 {
-   font-size: 3rem;
+    font-size: 3rem;
  }
  
  h4 {
-   font-size: 2rem;
+    font-size: 2rem;
  }
  
  p {
-   font-size: 1.5rem;
+    font-size: 1.5rem;
  }
  
  h1, h2, h3, h4, p {
-   padding: 0.5rem 0;
-   margin: 0;
+    padding: 0.5rem 0;
+    margin: 0;
  }
  
  a:link,
  a:visited,
  a:hover,
  a:active {
-     text-decoration: none;
-     font-size: 1.5rem;
  }
+ a:link,
+ a:visited,
+ a:hover,
+ a:active {
+    text-decoration: none;
+    font-size: 1.5rem;
+ }
  
  html {
-   font-size: calc(62.5% * var(--globalScale));
-   background-color: var(--bgColorDark);
+    font-size: calc(62.5% * var(--globalScale));
+    background-color: var(--bgColorLight);
+    height: 100%;
  }
  
  /* REGLAS DEL HOME */
  
  body {
-   display: grid;
-   grid-template-columns: 1fr;
-   grid-template-rows: 5rem 1fr 5rem;
-   grid-template-areas: /* No mostramos el aside en móbiles */
-     "navbar"
-     "main"
-     "footer";
-   height: 100vh;
-   margin: 0;
+    display: grid;
+    grid-template-columns: 1fr;
+    grid-template-rows: 5rem 1fr 5rem;
+    grid-template-areas: /* No mostramos el aside en móbiles */
+       "navbar"
+       "main"
+       "footer";
+    height: 100%;
+    margin: 0;
  }
  
  aside {
-   grid-area: aside;
-   display: none;
-   flex-flow: column nowrap;
-   align-items: flex-start;
-   justify-content: flex-start;
-   width: 100%;
-   padding: 0 1rem;
- <<<<<<< HEAD
-   background-color: #242930;
- =======
- >>>>>>> 9b5582b (recreando repositorio)
+    grid-area: aside;
+    display: none;
+    flex-flow: column nowrap;
+    align-items: flex-start;
+    justify-content: flex-start;
+    width: 100%;
+    padding: 0 1rem;
+    background-color: var(--bgColorDark);
  }
  
  aside .item {
-   display: flex;
-   flex-flow: row nowrap;
-   align-items: center;
-   justify-content: space-between;
-   font-size: 1.5rem;
-   width: 100%;
-   padding: 1rem 0;
+    display: flex;
+    flex-flow: row nowrap;
+    align-items: center;
+    justify-content: space-between;
+    font-size: 1.5rem;
+    width: 100%;
+    padding: 1rem 0;
  }
  
  nav {
-     grid-area: navbar;
-     display: flex;
-     flex-flow: row nowrap;
-     align-items: center;
-     justify-content: space-between;
-     width: 100%;
-     padding: 0 2rem;
- <<<<<<< HEAD
-     background-color: #4f5864;
-   }
-   
-   main {
-     grid-area: main;
-     padding: 2rem;
-     background-color: #353b43;
-   }
-     
-   main hr {
-     width: 100%;
-   }
-   
-   .articles {
-     display: flex;
-     flex-flow: row wrap;
-     align-items: flex-start;
-     justify-content: space-between;
-   }
-   
-   .articles article {
-     width: 30rem;
-     border: 1px solid;
-     border-radius: 0.5rem;
-     padding: 1rem;
-     margin: 1rem;
-   }
-   
-   .content table {
-     padding-top: 2rem;
-     margin: 0 auto;
-   }
-   
- =======
-   }
+    grid-area: navbar;
+    display: flex;
+    flex-flow: row nowrap;
+    align-items: center;
+    justify-content: space-between;
+    width: 100%;
+    padding: 0 2rem;
+    background-color: var(--bgColorLightDark);
+ }
  
  main {
-   grid-area: main;
-   margin: 2rem;
+    grid-area: main;
+    padding: 2rem;
+    background-color: var(--bgColorMidDark);
  }
  
  main hr {
-   width: 100%;
+    width: 100%;
  }
  
  .articles {
-   display: flex;
-   flex-flow: row wrap;
-   align-items: flex-start;
-   justify-content: space-between;
+    display: flex;
+    flex-flow: row wrap;
+    align-items: flex-start;
+    justify-content: space-between;
  }
  
  .articles article {
-   width: 30rem;
-   border: 1px solid;
-   border-radius: 0.5rem;
-   padding: 1rem;
-   margin: 1rem;
+    width: 30rem;
+    border: 1px solid;
+    border-radius: 0.5rem;
+    padding: 1rem;
+    margin: 1rem;
  }
  
  .content table {
-   padding-top: 2rem;
-   margin: 0 auto;
+    padding-top: 2rem;
+    margin: 0 auto;
  }
  
- >>>>>>> 9b5582b (recreando repositorio)
  .content table img {
-   width: 3rem;
+    width: 3rem;
  }
  
  .content table td {
-   padding: 0 0.3rem;
+    padding: 0 0.3rem;
  }
  
  footer {
-   grid-area: footer;
-   display: flex;
-   align-items: center;
-   width: 100%;
-   padding: 0 2rem;
- <<<<<<< HEAD
-   background-color: #4f5864;
- =======
- >>>>>>> 9b5582b (recreando repositorio)
+    grid-area: footer;
+    display: flex;
+    align-items: center;
+    width: 100%;
+    padding: 0 2rem;
+    background-color: var(--bgColorLightDark);
  }
  
 +.bg-logo {
 +  background-image: url('../images/salamandra.svg');
 +  background-attachment: fixed;
 +  background-size: cover;
 +  background-position: center;
 +}
 +
  .greetings {
-   background-color: var(--bgColorLight);
-   width: 80%;
- <<<<<<< HEAD
-   height: 80%;
- =======
-   heigth: 80%;
- >>>>>>> 9b5582b (recreando repositorio)
-   margin: 0 auto;
+    background-color: var(--bgColorMidDark);
+    width: 80%;
+    height: 80%;
+    margin: 0 auto;
  }
  
  @media screen and (min-width: 780px) {
-   :root {
-     --globalScale: 1.5;
-   }
-   body {
-     grid-template-columns: 11rem 1fr;
-     grid-template-areas: /* Tabletas se muestra el aside */
-       "navbar navbar"
-       "aside main"
-       "footer footer";
-   }
- <<<<<<< HEAD
-   
-   aside {
-     display: flex;
-   }
- }
- =======
+    :root {
+       --globalScale: 1.5;
+    }
  
-   aside {
-     display: flex;
-   }
+    body {
+       grid-template-columns: 11rem 1fr;
+       grid-template-areas: /* Tabletas se muestra el aside */
+        "navbar navbar"
+        "aside main"
+        "footer footer";
+    }
  
+    aside {
+       display: flex;
+    }
  }
- >>>>>>> 9b5582b (recreando repositorio)
  
  @media screen and (min-width: 1280px) {
-   :root {
-     --globalScale: 2;
-   }
+    :root {
+       --globalScale: 2;
+    }
  }
- <<<<<<< HEAD
  
-   
- =======
- >>>>>>> 9b5582b (recreando repositorio)