Skip to content
Merged
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
Binary file added public/images/MeBalanced.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 6 additions & 2 deletions public/styles/home.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ html, body {
font-family: Arial, sans-serif;
}

html {
overflow-y: scroll;
}
/* General Styles */
body {
font-family: Arial, sans-serif;
Expand Down Expand Up @@ -154,7 +157,7 @@ html, body {
font-style: italic;
}

/* Navigation Bar */
/* Navigation Bar
.navbar {
display: flex;
align-items: center;
Expand Down Expand Up @@ -185,7 +188,7 @@ html, body {
.navbar a:hover {
background-color: #444;
border-radius: 5px;
}
} */

/* Select */
select {
Expand Down Expand Up @@ -1007,4 +1010,5 @@ body.buddy-modal-open {
.buddy-modal-panel {
padding: 22px 18px;
}

}
132 changes: 132 additions & 0 deletions public/styles/navbar.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,132 @@
.hamburger-menu {
font-size: 20px;
background-color: transparent;
color: #ffffff;
cursor: pointer;
display: none;
border: none;
}

.custom-navbar {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
background: linear-gradient(90deg, #1f1f1f 0%, #2a2a2a 100%);
padding: 14px 32px;
box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
border-bottom: 1px solid rgba(255, 215, 0, 0.12);
position: relative;
z-index: 1000;
}

.custom-navbar .logo {
display: flex;
align-items: center;
gap: 12px;
}

.custom-navbar .bee-icon {
width: 200px;
object-fit: cover;
}

.logo-text {
font-size: 2rem;
font-weight: 800;
font-family: Arial, sans-serif;
line-height: 1;
letter-spacing: 0.4px;
color: #ffd700;
text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.custom-navbar .custom-nav-links {
display: flex;
align-items: center;
gap: 8px;
}

.custom-navbar a,
.custom-dropbtn {
color: #f5f5f5;
text-decoration: none;
font-size: 1.05rem;
font-weight: 600;
padding: 10px 16px;
border-radius: 10px;
transition: all 0.25s ease;
background: transparent;
border: none;
cursor: pointer;
font-family: Arial, sans-serif;
display: inline-block;
line-height: 1.2;
}

.custom-navbar a:hover,
.custom-dropdown:hover .custom-dropbtn {
background: rgba(255, 215, 0, 0.12);
color: #ffd700;
transform: translateY(-1px);
}

.custom-dropdown {
position: relative;
display: inline-block;
}

.custom-dropdown-content {
display: none;
position: absolute;
top: 100%;
right: 0;
left: auto;
min-width: 210px;
background: #2f2f2f;
border-radius: 12px;
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
border: 1px solid rgba(255, 215, 0, 0.12);
overflow: hidden;
z-index: 1001;
}

.custom-dropdown-content a {
display: block;
padding: 14px 16px;
font-size: 0.98rem;
font-weight: 500;
color: #f5f5f5;
border-radius: 0;
}

.custom-dropdown-content a:hover {
background: rgba(255, 215, 0, 0.12);
color: #ffd700;
transform: none;
}

.custom-dropdown:hover .custom-dropdown-content {
display: block;
}

@media screen and (max-width: 970px) {
.custom-navbar .custom-nav-links {
display: none;
width: 100%;
flex-direction: column;
}


.custom-navbar {
flex-direction: row;
}

.hamburger-menu {
display: block;
}

.custom-nav-links.active {
display: flex;
}
}
77 changes: 74 additions & 3 deletions public/styles/survey.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ html, body {
font-family: Arial, sans-serif;
}

html {
overflow-y: scroll;
}

/* General Styles */
body {
font-family: Arial, sans-serif;
Expand Down Expand Up @@ -86,7 +90,7 @@ body {
align-items: center;
}

.circular-card {
/* .circular-card {
width: 100px;
height: 100px;
aspect-ratio: 1/1;
Expand All @@ -101,7 +105,26 @@ body {
padding: 10px;
text-align: center;
box-sizing: border-box;
}
} */

.circular-card {
width: 110px;
height: 70px;
padding: 10px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
box-sizing: border-box;
border-radius: 10px;
}

.circular-card div {
width: 100%;
word-wrap: break-word;
font-style: italic;
}

.circular-card:hover{
transform: translateY(-3px);
box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
Expand Down Expand Up @@ -161,7 +184,7 @@ body {
}

#iconContainer{
background-color: rgba(255, 255, 255, 0.6);
background-color: #ffffff99;
}

#nextButton{
Expand All @@ -176,6 +199,7 @@ body {
padding: 20px;
margin: 45px auto;
max-width: 75%;
max-height: 100%;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
text-align: center;
Expand Down Expand Up @@ -267,3 +291,50 @@ body {
margin-bottom: 15px;
text-align: center;
}

@media screen and (max-width: 970px){
#iconResponse {
flex-direction: column;
align-items: center;
}

#iconResponse > * {
width: 50%;
max-width: 100%;
flex: 0 0 100%;
}

.survey-container {
max-height: 970px;
}

.coins-display p {
padding: 10px;
font-size: 1rem;
}

#surveyTitle {
font-size: 1.2rem;
}

#progressText {
font-size: 0.75rem;
}

#questionText {
font-size: 1rem;
}

.circular-card {
width: 90px;
height: 50px;
}

.circular-card div {
font-size: 10px;
}

#backButton, #nextButton {
font-size: 0.75rem;
}
}
2 changes: 2 additions & 0 deletions views/calendar.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
<link rel="stylesheet" href="/styles/home.css">
<script src="https://cdn.plot.ly/plotly-3.0.1.min.js"></script>
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<link rel="stylesheet" href="/styles/navbar.css">
</head>
<body>
<%- include('partials/navbar') %>
Expand Down
2 changes: 2 additions & 0 deletions views/chart.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
<link rel="stylesheet" href="/styles/home.css">
<script src="https://cdn.plot.ly/plotly-3.0.1.min.js"></script>
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<link rel="stylesheet" href="/styles/navbar.css">
</head>
<body>
<%- include('partials/navbar') %>
Expand Down
2 changes: 2 additions & 0 deletions views/chatbot.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
<link rel="stylesheet" href="/styles/chatbot.css">
<script src="https://cdn.plot.ly/plotly-3.0.1.min.js"></script>
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<link rel="stylesheet" href="/styles/navbar.css">
<!--
<style>
html, body {
Expand Down
2 changes: 2 additions & 0 deletions views/feedback.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
<link rel="stylesheet" href="/styles/home.css">
<script src="https://cdn.plot.ly/plotly-3.0.1.min.js"></script>
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<link rel="stylesheet" href="/styles/navbar.css">
</head>
<body>
<%- include('partials/navbar') %>
Expand Down
9 changes: 8 additions & 1 deletion views/games.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,16 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mini Games</title>
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<link rel="stylesheet" href="/styles/navbar.css">
<script src="/js/phaser.min.js"></script>
<style>
body {
html {
overflow-y: scroll;
}

html, body {
height: 100%;
background: linear-gradient(
135deg,
#B8C6FF 0%,
Expand Down
2 changes: 2 additions & 0 deletions views/home.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
<link rel="stylesheet" href="/styles/home.css">
<script src="https://cdn.plot.ly/plotly-3.0.1.min.js"></script>
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<link rel="stylesheet" href="/styles/navbar.css">
</head>
<body>
<%- include('partials/navbar') %>
Expand Down
Loading