From 1ecdfb0891cbb825aba315250dd6363e67d0711e Mon Sep 17 00:00:00 2001 From: VentGrey Date: Fri, 30 Dec 2022 14:26:43 -0600 Subject: [PATCH 01/15] Mover colores comunes de CSS a variables --- css.css | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/css.css b/css.css index 5e41116..2ce219e 100644 --- a/css.css +++ b/css.css @@ -1,3 +1,7 @@ +:root { + --cereus-dark: #232323; +} + * { margin: 0px; padding: 0px; @@ -11,7 +15,7 @@ nav { display: flex; justify-content: space-between; align-items: center; - background-color: #232323; + background-color: var(--cereus-dark); } nav img { @@ -69,7 +73,7 @@ nav img:hover { left: 6%; margin-top: 6px; padding: 4vh 4vh 4vh 2vh; - background: #232323; + background: var(--cereus-dark); border-radius: 16px; } @@ -144,7 +148,7 @@ nav img:hover { font-size: 20px; font-weight: bold; padding: 8px 25px; - background-color: #232323; + background-color: var(--cereus-dark); color: #f2f2f2; transition: 0.6s; } @@ -411,7 +415,7 @@ nav img:hover { width: 100%; min-height: 10vh; text-align: center; - background-color: #232323; + background-color: var(--cereus-dark); color: #f2f2f2; } @@ -507,7 +511,7 @@ nav img:hover { @media (prefers-color-scheme: dark) { body { - background-color: #232323; + background-color: var(--cereus-dark); color: #f2f2f2; } @@ -524,11 +528,11 @@ nav img:hover { @media (prefers-color-scheme: light) { body { background-color: #f2f2f2; - color: #232323; + color: var(--cereus-dark); } .footer { - background-color: #232323; + background-color: var(--cereus-dark); } .intro-contenido h1:hover { From b9615402169df7e1d65841bac6bf2df618563889 Mon Sep 17 00:00:00 2001 From: VentGrey Date: Fri, 30 Dec 2022 14:27:21 -0600 Subject: [PATCH 02/15] =?UTF-8?q?A=C3=B1adido=20un=20atributo=20'alt'=20al?= =?UTF-8?q?=20logo=20de=20cereus?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- navbar.html | 35 ++++++++++++++++++----------------- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/navbar.html b/navbar.html index 951ee47..bc13cfd 100644 --- a/navbar.html +++ b/navbar.html @@ -1,18 +1,19 @@ \ No newline at end of file + Logo de Cereus Linux + + \ No newline at end of file From 330e6cbc3757d7aa2533113f08aad48a1422327d Mon Sep 17 00:00:00 2001 From: VentGrey Date: Fri, 30 Dec 2022 14:36:05 -0600 Subject: [PATCH 03/15] =?UTF-8?q?Se=20corrigieron=20los=20estilos=20inline?= =?UTF-8?q?=20con=20m=C3=A1s=20clases?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- css.css | 11 +++++++++++ index.html | 27 ++++++++++++++------------- 2 files changed, 25 insertions(+), 13 deletions(-) diff --git a/css.css b/css.css index 2ce219e..316f776 100644 --- a/css.css +++ b/css.css @@ -225,6 +225,17 @@ nav img:hover { text-decoration: none; } + +.features-desk h3 { + padding-top: 10px; + color: #FAFAFA; +} + +.features-desk p { + padding: 10px 0px; + color: #FAFAFA; +} + /* --- tarjetas --- */ .tarjeta-basics { flex-basis: 32%; diff --git a/index.html b/index.html index 37f9fb7..f0b706f 100644 --- a/index.html +++ b/index.html @@ -1,10 +1,11 @@ - + + - - Cereus Linux + + Cereus Linux @@ -49,7 +50,7 @@

Secure

Added software

-

Find everything you need with the
Cereus repos

+

Find everything you need with the
Cereus repos

@@ -59,22 +60,22 @@

Added software

Choose
What do you want

Cereus Linux offers some desktops options

-
+
-

LXQt

-

Lightweight Desktop based on Qt

+

LXQt

+

Lightweight Desktop based on Qt

-

Xfce

-

Lightweight Desktop based on GTK

+

Xfce

+

Lightweight Desktop based on GTK

-

Plasma

-

Modern and highly customizable desktop based on QT

+

Plasma

+

Modern and highly customizable desktop based on QT

-

Cinnamon

-

Modern and Classic Desktop based on GTK

+

Cinnamon

+

Modern and Classic Desktop based on GTK

From 21b9c1933b913debe066f7caa9f8b82ae20e6577 Mon Sep 17 00:00:00 2001 From: Omar Jair Purata Funes Date: Fri, 30 Dec 2022 14:37:48 -0600 Subject: [PATCH 04/15] Create static.yml --- .github/workflows/static.yml | 42 ++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .github/workflows/static.yml diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml new file mode 100644 index 0000000..143b7a4 --- /dev/null +++ b/.github/workflows/static.yml @@ -0,0 +1,42 @@ +# Simple workflow for deploying static content to GitHub Pages +name: Deploy static content to Pages + +on: + # Runs on pushes targeting the default branch + push: + branches: ["main", "webhint-compliance"] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow one concurrent deployment +concurrency: + group: "pages" + cancel-in-progress: true + +jobs: + # Single deploy job since we're just deploying + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Setup Pages + uses: actions/configure-pages@v2 + - name: Upload artifact + uses: actions/upload-pages-artifact@v1 + with: + # Upload entire repository + path: '.' + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v1 From 3cba97ea0fb5a8af577f42955e3b736becac970e Mon Sep 17 00:00:00 2001 From: VentGrey Date: Fri, 30 Dec 2022 14:40:36 -0600 Subject: [PATCH 05/15] =?UTF-8?q?Se=20a=C3=B1adieron=20atributos=20de=20al?= =?UTF-8?q?to=20y=20ancho=20al=20logo=20del=20navbar?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- navbar.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/navbar.html b/navbar.html index bc13cfd..5a552f9 100644 --- a/navbar.html +++ b/navbar.html @@ -1,5 +1,5 @@