Last active
November 25, 2020 09:34
-
-
Save CHINOBv/174326a3ccfe486aae24f8d45607c0c6 to your computer and use it in GitHub Desktop.
Agregar las clases y solo alternar la clase show en la clase nav con el evento click en x elemento, los colores se cambian desde la variable
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$primary: #5039E7; | |
$secondary: #7A58FF; | |
$tither: #A178FF; | |
$for: #C798FF; | |
$success: #5039E7; | |
*, *:after, *:before{ | |
box-sizing: border-box; | |
padding: 0; | |
margin: 0; | |
outline: none; | |
box-sizing: border-box; | |
} | |
body{ | |
background-color: $primary; | |
color: #fff; | |
font-size: 14px; | |
font-family: 'Roboto', sans-serif; | |
} | |
@import './_navbar'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment