Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"express": "^4.15.2"
},
"engines": {
"node": "8.9.1"
"node": "24.x"
},
"repository": {
"type": "git",
Expand Down
51 changes: 47 additions & 4 deletions project/css/main.css
Original file line number Diff line number Diff line change
@@ -1,34 +1,77 @@
:root {
--bg: #0A0A0B;
--surface: #141416;
--surface-hover: #1A1A1E;
--border: #2A2A30;
--border-accent: #3A3A42;
--text: #E8E8EC;
--text-muted: #8A8A96;
--text-dim: #5A5A66;
--accent: #C8FF00;
--accent-dim: #8AB300;
--warning: #FF6B35;
--info: #5B8DEF;
--success: #34D399;
}

body {
font-family: Arial, serif;
font-family: 'DM Sans', Arial, sans-serif;
text-align: center;
color: #343a40;
color: var(--text);
font-size: 22px;
background-color: var(--bg);
margin: 0;
}

h1 {
font-family: 'Poppins', sans-serif;
font-weight: 700;
margin-top: 40px;
font-size: 48px;
color: var(--text);
}

p {
margin-top: 80px;
color: var(--text-muted);
}

button {
margin-top: 40px;
}

.btn-dark {
background-color: var(--accent);
border-color: var(--accent);
color: var(--bg);
font-weight: 600;
border-radius: 8px;
padding: 10px 28px;
transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-dark:hover {
background-color: var(--accent-dim);
border-color: var(--accent-dim);
color: var(--bg);
transform: translateY(-1px);
}

.btn-dark:active {
transform: translateY(0);
}

.page-header {
background-color: #00bda5;
background-color: var(--surface);
padding-top: 40px;
padding-bottom: 80px;
color: #ffffff;
color: var(--text);
border-bottom: 1px solid var(--border);
}

#image img {
height: 200px;
margin-top: 60px;
border-radius: 50%;
border: 3px solid var(--accent);
}
2 changes: 1 addition & 1 deletion project/html/helpers/head.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<link rel="stylesheet" type="text/css" href="//maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" />

<!-- Google font CSS -->
<link href="https://fonts.googleapis.com/css?family=Poppins:400,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Poppins:wght@400;700&display=swap" rel="stylesheet">

<!-- this app's own css -->
<link rel="stylesheet" type="text/css" href="css/main.css"/>
Expand Down
2 changes: 1 addition & 1 deletion project/html/pages/index.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<div class="page-header">


<h1>My Web App</h1>
<h1>Lucía Fadul</h1>
</div>

<p>Click on the button for a surprise.</p>
Expand Down