Skip to content

Commit fe678f9

Browse files
authored
Merge pull request #1 from VentGrey/main
Bunch of improvements
2 parents f11381d + 8026126 commit fe678f9

23 files changed

+168
-95
lines changed

.github/workflows/static.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Simple workflow for deploying static content to GitHub Pages
2+
name: Deploy static content to Pages
3+
4+
on:
5+
# Runs on pushes targeting the default branch
6+
push:
7+
branches: ["main"]
8+
9+
# Allows you to run this workflow manually from the Actions tab
10+
workflow_dispatch:
11+
12+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
13+
permissions:
14+
contents: read
15+
pages: write
16+
id-token: write
17+
18+
# Allow one concurrent deployment
19+
concurrency:
20+
group: "pages"
21+
cancel-in-progress: true
22+
23+
jobs:
24+
# Single deploy job since we're just deploying
25+
deploy:
26+
environment:
27+
name: github-pages
28+
url: ${{ steps.deployment.outputs.page_url }}
29+
runs-on: ubuntu-latest
30+
steps:
31+
- name: Checkout
32+
uses: actions/checkout@v3
33+
- name: AutoMinify assets
34+
uses: nizarmah/auto-minify@v2.1
35+
with:
36+
overwrite: true
37+
- name: Setup Pages
38+
uses: actions/configure-pages@v2
39+
- name: Upload artifact
40+
uses: actions/upload-pages-artifact@v1
41+
with:
42+
# Upload entire repository
43+
path: '.'
44+
- name: Deploy to GitHub Pages
45+
id: deployment
46+
uses: actions/deploy-pages@v1

about.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
<!DOCTYPE html>
2-
<html lang=eng>
2+
<html lang="EN">
3+
<meta charset="UTF-8">
34
<!--HEADERS-->
45
<head>
56
<!--TITLE-->
67
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico?">
78
<title> Cereus Linux</title>
9+
<meta name="description" content="Cereus Linux it's a Gnu/Linux distribution derived from Void Linux thar focuses on delivering a user friendly experience.">
810
<meta name="viewport" content="width=device-width, initial-scale=1.0">
911
<link rel="stylesheet" href="css.css">
1012
<script src="navbar.js"></script>

css.css

Lines changed: 26 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
:root {
2+
--cereus-dark: #232323;
3+
--cereus-light: #FAFAFA;
4+
}
5+
16
* {
27
margin: 0px;
38
padding: 0px;
@@ -11,7 +16,7 @@ nav {
1116
display: flex;
1217
justify-content: space-between;
1318
align-items: center;
14-
background-color: #232323;
19+
background-color: var(--cereus-dark);
1520
}
1621

1722
nav img {
@@ -69,7 +74,7 @@ nav img:hover {
6974
left: 6%;
7075
margin-top: 6px;
7176
padding: 4vh 4vh 4vh 2vh;
72-
background: #232323;
77+
background: var(--cereus-dark);
7378
border-radius: 16px;
7479
}
7580

@@ -144,7 +149,7 @@ nav img:hover {
144149
font-size: 20px;
145150
font-weight: bold;
146151
padding: 8px 25px;
147-
background-color: #232323;
152+
background-color: var(--cereus-dark);
148153
color: #f2f2f2;
149154
transition: 0.6s;
150155
}
@@ -221,6 +226,17 @@ nav img:hover {
221226
text-decoration: none;
222227
}
223228

229+
230+
.features-desk h3 {
231+
padding-top: 10px;
232+
color: #FAFAFA;
233+
}
234+
235+
.features-desk p {
236+
padding: 10px 0px;
237+
color: #FAFAFA;
238+
}
239+
224240
/* --- tarjetas --- */
225241
.tarjeta-basics {
226242
flex-basis: 32%;
@@ -371,7 +387,7 @@ nav img:hover {
371387
transition: 0.6s;
372388
}
373389
.dev-dc:hover {
374-
box-shadow: 0px 0px 30px #ffffff;
390+
box-shadow: 0px 0px 30px var(--cereus-light);
375391
transform: scale(1.02);
376392
}
377393

@@ -387,7 +403,7 @@ nav img:hover {
387403
transition: 0.6s;
388404
}
389405
.dev-kf:hover {
390-
box-shadow: 0px 0px 30px #ffffff;
406+
box-shadow: 0px 0px 30px var(--cereus-light);
391407
transform: scale(1.02);
392408
}
393409
.dev-slnx {
@@ -403,15 +419,15 @@ nav img:hover {
403419
}
404420

405421
.dev-slnx:hover {
406-
box-shadow: 0px 0px 30px #ffffff;
422+
box-shadow: 0px 0px 30px var(--cereus-light);
407423
transform: scale(1.02);
408424
}
409425
/* --- Footer --- */
410426
.footer {
411427
width: 100%;
412428
min-height: 10vh;
413429
text-align: center;
414-
background-color: #232323;
430+
background-color: var(--cereus-dark);
415431
color: #f2f2f2;
416432
}
417433

@@ -507,7 +523,7 @@ nav img:hover {
507523

508524
@media (prefers-color-scheme: dark) {
509525
body {
510-
background-color: #232323;
526+
background-color: var(--cereus-dark);
511527
color: #f2f2f2;
512528
}
513529

@@ -524,11 +540,11 @@ nav img:hover {
524540
@media (prefers-color-scheme: light) {
525541
body {
526542
background-color: #f2f2f2;
527-
color: #232323;
543+
color: var(--cereus-dark);
528544
}
529545

530546
.footer {
531-
background-color: #232323;
547+
background-color: var(--cereus-dark);
532548
}
533549

534550
.intro-contenido h1:hover {

downloads.html

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
<!DOCTYPE html>
2-
<html lang=eng>
2+
<html lang="EN">
3+
<meta charset="UTF-8">
34
<!--HEADERS-->
45
<head>
56
<!--TITLE-->
6-
<link rel="shortcut icon" type="" href="../res/DE/cereus-icon.png">
7+
<link rel="shortcut icon" type="image/png" href="../res/DE/cereus-icon.png">
78
<title> Cereus Linux: Downloads</title>
9+
<meta name="description" content="Cereus Linux it's a Gnu/Linux distribution derived from Void Linux thar focuses on delivering a user friendly experience.">
810
<meta name="viewport" content="width=device-width, initial-scale=1.0">
911
<link rel="stylesheet" href="css.css">
1012
<script src="navbar.js"></script>
@@ -21,54 +23,54 @@
2123
<section class="header">
2224
<div class="texto-inicio">
2325
<h1>Thank you!</h1>
24-
<p>We are happy for you consider<br>download Cereus Linux</p>
26+
<p>We are happy that you considered<br>Cereus Linux!</p>
2527
</div>
2628
</section>
2729

2830
<section class="pictures">
2931
<div class="intro-contenido">
30-
<h1>Cereus Linux has 4 versions</h1>
31-
<p>Choose which you prefer.</p>
32+
<h1>Cereus Linux has 4 flavours</h1>
33+
<p>Choose your favorite.</p>
3234
</div>
3335
<div class="versions">
3436
<div class="logo">
35-
<a href="https://lxqt-project.org/" target="_blank"><img src="res/DE/lxqt-logo.png"></a>
37+
<a title="LXQT Project" rel="noopener" href="https://lxqt-project.org/" target="_blank"><img alt="LXQT project logo" src="res/DE/lxqt-logo.png"></a>
3638
</div>
3739
<div>
3840
<h1>LXQT</h1>
3941
<p>Lighweight desktop based on QT</p>
40-
<a href="https://sourceforge.net/projects/cereus-linux/files/isos/beta/" target="_blank"><img src="res/DE/lxqt.png"></a>
42+
<a title="Download Cereus LXQT" rel="noopener" href="https://sourceforge.net/projects/cereus-linux/files/isos/beta/" target="_blank"><img alt="Image showing a screenshot of Cereus running the LXQT Desktop" src="res/DE/lxqt.png"></a>
4143
</div>
4244
<div>
4345
<div class="logo">
44-
<a href="https://www.xfce.org/" target="_blank"><img src="res/DE/xfce-logo.png"></a>
46+
<a title="XFCE Project" rel="noopener" href="https://www.xfce.org/" target="_blank"><img alt="XFCE Project Logo" src="res/DE/xfce-logo.png"></a>
4547
</div>
4648
<h1>XFCE4</h1>
4749
<p>Lightweight desktop based on GTK</p>
48-
<a href="https://sourceforge.net/projects/cereus-linux/" target="_blank"><img src="res/DE/xfce.png"></a>
50+
<a title="Download Cereus XFCE" rel="noopener" href="https://sourceforge.net/projects/cereus-linux/" target="_blank"><img alt="Image showing a screenshot of Cereus running the XFCE Desktop" src="res/DE/xfce.png"></a>
4951
</div>
5052
<div>
5153
<div class="logo">
52-
<a href="https://kde.org/es/plasma-desktop/" target="_blank"><img src="res/DE/plasma-logo.png"></a>
54+
<a title="KDE Plasma Project" rel="noopener" href="https://kde.org/es/plasma-desktop/" target="_blank"><img alt="KDE PLasma Logo" src="res/DE/plasma-logo.png"></a>
5355
</div>
5456
<h1>Plasma</h1>
5557
<p>Modern and highly customizable desktop based on QT</p>
56-
<a href="https://sourceforge.net/projects/cereus-linux/" target="_blank"><img src="res/DE/plasma.png"></a>
58+
<a title="Download Cereus Plasma" rel="noopener" href="https://sourceforge.net/projects/cereus-linux/" target="_blank"><img alt="Image showing a screenshot of Cereus running the KDE Plasma Desktop" src="res/DE/plasma.png"></a>
5759
</div>
5860
<div class="logo">
59-
<a href="https://linuxmint.com/" target="_blank"><img src="res/DE/cinnamon-logo.png"></a>
61+
<a title="Cinnamon Desktop" rel="noopener" href="https://linuxmint.com/" target="_blank"><img alt="Cinnamon Desktop Logo" src="res/DE/cinnamon-logo.png"></a>
6062
</div>
6163
<div>
6264
<h1>Cinnamon</h1>
6365
<p>Modern and Classic Desktop based on GTK</p>
64-
<a href="https://sourceforge.net/projects/cereus-linux/" target="_blank"><img src="res/DE/cinnamon.png"></a>
66+
<a title="Download Cereus Cinnamon" rel="noopener" href="https://sourceforge.net/projects/cereus-linux/" target="_blank"><img alt="Image showing a screenshot of Cereus running the Cinnamon Desktop" src="res/DE/cinnamon.png"></a>
6567
</div>
6668
</div>
6769
</section>
6870

6971
<section class="footer">
7072
<h2>Cereus Linux</h2>
71-
<h5>Copyright 2022 Cereus Linux. All right reserved.</h5>
73+
<h5>Copyright 2022 Cereus Linux. All rights reserved.</h5>
7274
<h6>Cereus is backed up by the Cereus Team.</h6>
7375
</section>
7476
</body>

index.html

Lines changed: 23 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
<!DOCTYPE html>
2-
<html lang=eng>
2+
<html lang="EN">
3+
<meta charset="UTF-8">
34
<!--HEADERS-->
45
<head>
56
<!--TITLE-->
6-
<link rel="shortcut icon" type="" href="../res/DE/cereus-icon.png">
7-
<title> Cereus Linux</title>
7+
<link rel="shortcut icon" type="image/png" href="../res/DE/cereus-icon.png">
8+
<title>Cereus Linux</title>
9+
<meta name="description" content="Cereus Linux it's a Gnu/Linux distribution derived from Void Linux thar focuses on delivering a user friendly experience.">
810
<meta name="viewport" content="width=device-width, initial-scale=1.0">
911
<link rel="stylesheet" href="css.css">
1012
<script src="navbar.js"></script>
@@ -22,7 +24,7 @@
2224
<section class="header">
2325
<div class="texto-inicio">
2426
<h1>Cereus Linux</h1>
25-
<p>A Void Linux derivate that cares in give <br>an user-friendly experience.</p>
27+
<p>A Void Linux based distribution,<br> that focuses in delivering a user-friendly experience.</p>
2628
<a href="downloads.html">Get it now!</a>
2729
</div>
2830
</section>
@@ -36,52 +38,52 @@ <h1>For you,<br>For everyone</h1>
3638
</div>
3739
<div class="features">
3840
<div class="tarjeta-basics">
39-
<h3>Only with the essencial</h3>
40-
<p>Cereus Linux provides an essencial colection of software</p>
41+
<h3>Essentials Only</h3>
42+
<p>Forget about bloated distros. Cereus only comes with essentials.</p>
4143
</div>
4244
<div class="tarjeta-rolling">
4345
<h3>Rolling release</h3>
44-
<p>Have the most new software</p>
46+
<p>Have latest software releases. Always.</p>
4547
</div>
4648
<div class="tarjeta-secure">
4749
<h3>Secure</h3>
48-
<p>Open source and secure, <br>your OS wil be alway be your OS</p>
50+
<p>Secure and open source, <br>your OS, for you.</p>
4951
</div>
5052
<div class="tarjeta-repos">
5153
<h3>Added software</h3>
52-
<p>Find everything you need with the <br><a href="https://sourceforge.net/projects/cereus-linux/files/repos/" target="_blank">Cereus repos</a></p>
54+
<p>Find everything you need in the <br><a rel="noopener" href="https://sourceforge.net/projects/cereus-linux/files/repos/" target="_blank">Cereus repos</a></p>
5355
</div>
5456
</div>
5557
</section>
5658

5759
<!--Editions-->
5860
<div class="intro-contenido">
59-
<h1>Choose<br>What do you want</h1>
60-
<p>Cereus Linux offers some desktops options</p>
61+
<h1>Choose what you want</h1>
62+
<p>Cereus Linux offers the follwing desktop environments</p>
6163
</div>
62-
<div class="features">
64+
<div class="features features-desk">
6365
<div class="lxqt">
64-
<h3 style="color:#ffffff;">LXQt</h3>
65-
<p style="color:#e6e6e6;">Lightweight Desktop based on Qt</p>
66+
<h3>LXQt</h3>
67+
<p>Lightweight Desktop based on Qt</p>
6668
</div>
6769
<div class="xfce">
68-
<h3 style="color:#ffffff;">Xfce</h3>
69-
<p style="color:#e6e6e6;">Lightweight Desktop based on GTK</p>
70+
<h3>Xfce</h3>
71+
<p>Lightweight Desktop based on GTK</p>
7072
</div>
7173
<div class="plasma">
72-
<h3 style="color:#ffffff;">Plasma</h3>
73-
<p style="color:#e6e6e6;">Modern and highly customizable desktop based on QT</p>
74+
<h3>Plasma</h3>
75+
<p>Modern and highly customizable desktop based on QT</p>
7476
</div>
7577
<div class="cinnamon">
76-
<h3 style="color:#ffffff;">Cinnamon</h3>
77-
<p style="color:#e6e6e6;">Modern and Classic Desktop based on GTK</p>
78+
<h3>Cinnamon</h3>
79+
<p>Modern and Classic Desktop based on GTK</p>
7880
</div>
7981
</div>
8082
</section>
8183

8284
<section class="footer">
8385
<h2>Cereus Linux</h2>
84-
<h5>Copyright 2022 Cereus Linux. All right reserved.</h5>
86+
<h5>Copyright 2022 Cereus Linux. All rights reserved.</h5>
8587
<h6>Cereus is backed up by the Cereus Team.</h6>
8688
</section>
8789
</body>

navbar.html

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
<nav>
2-
<a href="index.html"><img src="res/ui/logo.svg"></a>
3-
<div class="navbar">
4-
<ul class="nav" border: 1px solid white;>
5-
6-
<li><a href="index.html">HOME</a>
7-
<li><a href="downloads.html">DOWNLOADS</a><ul>
8-
9-
<li><a href="pages/lxqt.html">LXQT</a>
10-
<li><a href="pages/xfce.html">XFCE</a>
11-
<li><a href="pages/plasma.html">PLASMA</a>
12-
<li><a href="pages/cinnamon.html">CINNAMON</a></ul>
13-
<li><a href="https://sourceforge.net/p/cereus-linux/blog/" target="_blank" rel="noopener noreferrer">BLOG</a>
14-
<li><a href="about.html">ABOUT</a>
15-
16-
</ul>
17-
</div>
18-
</nav>
2+
<a aria-label="Inicio" href="index.html"><img height="48" width="48" alt="Logo de Cereus Linux" src="res/ui/logo.svg"></a>
3+
<div class="navbar">
4+
<ul class="nav" border: 1px solid white;>
5+
6+
<li><a href="index.html">HOME</a>
7+
<li><a href="downloads.html">DOWNLOADS</a><ul>
8+
9+
<li><a href="pages/lxqt.html">LXQT</a>
10+
<li><a href="pages/xfce.html">XFCE</a>
11+
<li><a href="pages/plasma.html">PLASMA</a>
12+
<li><a href="pages/cinnamon.html">CINNAMON</a></ul>
13+
<li><a href="https://sourceforge.net/p/cereus-linux/blog/" target="_blank" rel="noopener noreferrer">BLOG</a>
14+
15+
<li><a href="about.html">ABOUT</a>
16+
17+
</ul>
18+
</div>
19+
</nav>

0 commit comments

Comments
 (0)