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
81 changes: 81 additions & 0 deletions research.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
/* General Styles */
body {
margin: 0;
font-family: Arial, sans-serif;
color: #a8ff65; /* Light Green */
background-color: #001f3f; /* Dark Blue */
line-height: 1.6;
overflow-x: hidden;
}

/* Navbar */
.navbar {
text-align: center;
padding: 1rem 0;
background-color: #001a33; /* Slightly darker blue */
color: #a8ff65;
position: sticky;
top: 0;
z-index: 1000;
}

.page-title {
margin: 0;
font-size: 2rem;
font-weight: bold;
text-transform: uppercase;
}

/* Research Container */
.research-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
padding: 3rem 2rem;
margin: 0 auto;
max-width: 1200px;
}

.research-block {
background: #ffffff; /* White */
border-radius: 8px;
padding: 1.5rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease, box-shadow 0.3s ease;
position: relative;
}

.research-block:hover {
transform: translateY(-5px);
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.research-block h2 {
margin: 0 0 0.5rem;
color: #001f3f; /* Dark Blue */
font-size: 1.5rem;
}

.research-block p {
margin: 0;
color: #333; /* Dark text for contrast */
font-size: 1rem;
line-height: 1.5;
}

/* Footer */
.footer {
text-align: center;
padding: 1rem 0;
background-color: #001a33;
color: #a8ff65;
position: fixed;
bottom: 0;
width: 100%;
}

/* Smooth scrolling */
html {
scroll-behavior: smooth;
}

49 changes: 49 additions & 0 deletions research.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Research Opportunities</title>
<link rel="stylesheet" href="research.css">
</head>
<body>
<header class="navbar">
<h1 class="page-title">Research Opportunities</h1>
</header>

<main>
<section class="research-container">
<div class="research-block">
<h2>Artificial Intelligence</h2>
<p>Explore cutting-edge advancements in AI, including machine learning, natural language processing, and computer vision.</p>
</div>
<div class="research-block">
<h2>Quantum Computing</h2>
<p>Dive into the world of quantum algorithms, cryptography, and next-generation computing power.</p>
</div>
<div class="research-block">
<h2>Blockchain Technology</h2>
<p>Learn about distributed ledgers, smart contracts, and decentralized finance applications.</p>
</div>
<div class="research-block">
<h2>Cybersecurity</h2>
<p>Research secure systems, threat detection, and ethical hacking methodologies.</p>
</div>
<div class="research-block">
<h2>Human-Computer Interaction</h2>
<p>Study user interface design, UX research, and accessibility technologies.</p>
</div>
<div class="research-block">
<h2>Data Science</h2>
<p>Analyze big data, predictive analytics, and data visualization techniques.</p>
</div>
</section>
</main>

<footer class="footer">
<p>&copy; 2024 Research Opportunities. All rights reserved.</p>
</footer>

<script src="research.js"></script>
</body>
</html>
14 changes: 14 additions & 0 deletions research.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// Optional: Add interactivity for additional scrolling or dynamic content loading
// Example: Highlight active block when scrolling
document.addEventListener('scroll', () => {
const blocks = document.querySelectorAll('.research-block');
blocks.forEach(block => {
const rect = block.getBoundingClientRect();
if (rect.top < window.innerHeight && rect.bottom > 0) {
block.style.borderColor = '#4caf50';
} else {
block.style.borderColor = 'transparent';
}
});
});