From 84375f2a7acfa35cf18859442f045876be897343 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Manuel=20Cortes=20Cer=C3=B3n?= Date: Mon, 30 Jun 2025 20:34:37 -0600 Subject: [PATCH 1/2] feat: add files for bases --- css/main.css | 0 index.html | 12 ++++++++++++ js/main.js | 0 3 files changed, 12 insertions(+) create mode 100644 css/main.css create mode 100644 index.html create mode 100644 js/main.js diff --git a/css/main.css b/css/main.css new file mode 100644 index 0000000..e69de29 diff --git a/index.html b/index.html new file mode 100644 index 0000000..b99ba86 --- /dev/null +++ b/index.html @@ -0,0 +1,12 @@ + + + + + + José Manuel Cortes Cerón - Portfolio + + +

Portfolio

+

Here you can find my portfolio

+ + \ No newline at end of file diff --git a/js/main.js b/js/main.js new file mode 100644 index 0000000..e69de29 From 3abb6775370d09cfc39f8823954fc97a1e5c9709 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Manuel=20Cortes=20Cer=C3=B3n?= Date: Mon, 30 Jun 2025 20:37:36 -0600 Subject: [PATCH 2/2] feat: add base CSS reset, variables and container styles --- css/main.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/css/main.css b/css/main.css index e69de29..177f39c 100644 --- a/css/main.css +++ b/css/main.css @@ -0,0 +1,16 @@ +body { + font-family: var(--font-family); + color: var(--primary-color); + background-color: var(--secondary-color); + line-height: 1.6; +} + +.container { + max-width: var(--max-width); + margin: 0 auto; + padding: var(--spacing); +} +h1 { + font-size: 2.5rem; + margin-bottom: var(--spacing); +} \ No newline at end of file