--bgColorMidDark: #353b43;
--bgColorLightDark: #4f5864;
--bgColorLight: #D2D2D2;
- --bgColorBlue: #007fce;
+ --bgColorBlue: #1b6694;
+ --bgColorSalamandra: rgb(236, 162, 143);
--globalScale: 1;
}
a:active {
text-decoration: none;
font-size: 1.5rem;
+ color: var(--bgColorSalamandra);
}
html {
aside {
position: fixed;
- inset: 0 65%;
+ inset: 0 calc(100% - 18rem);
grid-area: aside;
display: none;
flex-flow: column nowrap;
align-items: flex-start;
justify-content: flex-start;
- width: 35%;
- height: 80%;
+ width: 18rem;
+ height: calc(100% - 5rem);
margin-top: 5rem;
padding: 2rem 1rem;
background-color: var(--bgColorDark);
}
aside .item {
+ color: var(--bgColorLight);
display: flex;
flex-flow: column nowrap;
align-items: center;
background-size: cover;
border: none;
+ cursor: pointer;
transition: background-image ease 0.2s;
grid-template-columns: 13rem 1fr;
grid-template-areas: /* Tabletas se muestra el aside */
"navbar navbar"
- "aside main"
+ "main main"
"footer footer";
}
}
aside {
- display: flex;
- position: relative;
- width: 100%;
- height: 100%;
- margin-top: 0;
- inset: 0;
- overflow-x: hidden;
+ display: none;
}
nav button, aside li a {