├── .editorconfig ├── .github └── ISSUE_TEMPLATE │ └── solicitud-de-adici-n-de-arte-a-galer-a.md ├── .gitignore ├── README.md ├── package.json ├── public ├── AnalisisData │ ├── Recursos │ │ ├── Analisis1.md │ │ ├── Analisis2.md │ │ ├── Dibujarte0_edicion1.png │ │ ├── Dibujarte0_edicion2.png │ │ ├── Dibujarte1_edicion1.png │ │ ├── Dibujarte1_edicion2.png │ │ └── Dibujarte2_edicion2.png │ ├── dataCSS.py │ ├── dataHTML.py │ ├── dataJS.py │ └── dataMain.py ├── Traducciones │ ├── english.md │ └── portugues.md ├── favicon.ico ├── index.html ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.js ├── assets │ ├── arrow-down.svg │ ├── fonts │ │ ├── fonts │ │ │ ├── icomoon.eot │ │ │ ├── icomoon.svg │ │ │ ├── icomoon.ttf │ │ │ └── icomoon.woff │ │ └── style.css │ ├── logo192.png │ ├── moon.svg │ └── sun.svg ├── components │ ├── ArtCard.js │ ├── DarkMode.js │ ├── Filter.js │ ├── Footer.js │ ├── Gallery.js │ ├── Header.js │ └── Switcher.js ├── constants │ └── index.js ├── index.css └── index.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/solicitud-de-adici-n-de-arte-a-galer-a.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/.github/ISSUE_TEMPLATE/solicitud-de-adici-n-de-arte-a-galer-a.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/package.json -------------------------------------------------------------------------------- /public/AnalisisData/Recursos/Analisis1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/public/AnalisisData/Recursos/Analisis1.md -------------------------------------------------------------------------------- /public/AnalisisData/Recursos/Analisis2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/public/AnalisisData/Recursos/Analisis2.md -------------------------------------------------------------------------------- /public/AnalisisData/Recursos/Dibujarte0_edicion1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/public/AnalisisData/Recursos/Dibujarte0_edicion1.png -------------------------------------------------------------------------------- /public/AnalisisData/Recursos/Dibujarte0_edicion2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/public/AnalisisData/Recursos/Dibujarte0_edicion2.png -------------------------------------------------------------------------------- /public/AnalisisData/Recursos/Dibujarte1_edicion1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/public/AnalisisData/Recursos/Dibujarte1_edicion1.png -------------------------------------------------------------------------------- /public/AnalisisData/Recursos/Dibujarte1_edicion2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/public/AnalisisData/Recursos/Dibujarte1_edicion2.png -------------------------------------------------------------------------------- /public/AnalisisData/Recursos/Dibujarte2_edicion2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/public/AnalisisData/Recursos/Dibujarte2_edicion2.png -------------------------------------------------------------------------------- /public/AnalisisData/dataCSS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/public/AnalisisData/dataCSS.py -------------------------------------------------------------------------------- /public/AnalisisData/dataHTML.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/public/AnalisisData/dataHTML.py -------------------------------------------------------------------------------- /public/AnalisisData/dataJS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/public/AnalisisData/dataJS.py -------------------------------------------------------------------------------- /public/AnalisisData/dataMain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/public/AnalisisData/dataMain.py -------------------------------------------------------------------------------- /public/Traducciones/english.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/public/Traducciones/english.md -------------------------------------------------------------------------------- /public/Traducciones/portugues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/public/Traducciones/portugues.md -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/src/App.js -------------------------------------------------------------------------------- /src/assets/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/src/assets/arrow-down.svg -------------------------------------------------------------------------------- /src/assets/fonts/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/src/assets/fonts/fonts/icomoon.eot -------------------------------------------------------------------------------- /src/assets/fonts/fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/src/assets/fonts/fonts/icomoon.svg -------------------------------------------------------------------------------- /src/assets/fonts/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/src/assets/fonts/fonts/icomoon.ttf -------------------------------------------------------------------------------- /src/assets/fonts/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/src/assets/fonts/fonts/icomoon.woff -------------------------------------------------------------------------------- /src/assets/fonts/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/src/assets/fonts/style.css -------------------------------------------------------------------------------- /src/assets/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/src/assets/logo192.png -------------------------------------------------------------------------------- /src/assets/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/src/assets/moon.svg -------------------------------------------------------------------------------- /src/assets/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/src/assets/sun.svg -------------------------------------------------------------------------------- /src/components/ArtCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/src/components/ArtCard.js -------------------------------------------------------------------------------- /src/components/DarkMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/src/components/DarkMode.js -------------------------------------------------------------------------------- /src/components/Filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/src/components/Filter.js -------------------------------------------------------------------------------- /src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/src/components/Footer.js -------------------------------------------------------------------------------- /src/components/Gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/src/components/Gallery.js -------------------------------------------------------------------------------- /src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/src/components/Header.js -------------------------------------------------------------------------------- /src/components/Switcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/src/components/Switcher.js -------------------------------------------------------------------------------- /src/constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/src/constants/index.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/src/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musartedev/dibujarte-css/HEAD/yarn.lock --------------------------------------------------------------------------------