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
218 changes: 218 additions & 0 deletions Website/Org.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,218 @@
.dark-mode .intro-section {
color: rgb(0, 0, 0);
padding: 40px;
text-align: center;
margin-bottom: -57px;
margin-top: -65px;
}

.intro-section {
color: rgb(255, 255, 255);
padding: 40px;
text-align: center;
margin-bottom: -57px;
margin-top: -65px;
}

.intro-section h1 {
font-size: 2.5em;
margin-bottom: 20px;
}

.dark-mode .intro-section p {
font-size: 1.2em;
line-height: 1.6;
color: rgb(0, 0, 0);
margin-bottom: 20px;
}

.intro-section p {
font-size: 1.2em;
line-height: 1.6;
color: rgb(255, 255, 255);
margin-bottom: 20px;
}

.intro-section a {
color: #ffa500;
text-decoration: none;
font-weight: bold;
}

.intro-section a:hover {
text-decoration: underline;
}

.desp h2{
color: rgb(255, 255, 255);
text-align: center;
}

.dark-mode .desp h2{
color: rgb(0, 0, 0);
text-align: center;
}

.dark-mode .desp p{
color: rgb(0, 0, 0);
text-align: center;
}

.desp p{
color: rgb(255, 255, 255);
text-align: center;
font-size: 17px;
}

.repos-container {
display: grid;
grid-template-columns: repeat(3, 1fr); /* 3 columns layout */
gap: 43px;
padding: 20px;
}

.dark-mode .repo-card {
background-color: #ffffff;
color: rgb(3, 0, 0);
padding: 20px;
border-radius: 8px;
font-size: 14px;
box-shadow: 0 4px 11px rgba(0, 0, 0, 0.1);
height: 300px;
transition: transform 0.3s ease;
}

.repo-card {
background-color: #04004c;
color: white;
padding: 20px;
border-radius: 8px;
font-size: 14px;
box-shadow: 0 4px 11px rgba(0, 0, 0, 0.1);
height: 300px;
transition: transform 0.3s ease;
}

.repo-card:hover {
transform: scale(1.05);
}

.repo-card h3 {
margin-top: 0;
font-size: 1.5em;
}

.repo-card p {
margin: 10px 0;
}

.dark-mode .repo-card p {
margin: 10px 0;
color: rgb(3, 0, 0);

}

.repo-card a {
color: #ffa500;
text-decoration: none;
}

@media (max-width: 1024px) {
.repos-container {
grid-template-columns: repeat(2, 1fr); /* 2 columns layout for medium screens */
}
}

@media (max-width: 768px) {
.repos-container {
grid-template-columns: 1fr; /* 1 column layout for small screens */
}
}


/* Get Involved Section */
.get-involved-section {
display: flex;
align-items: center;
justify-content: space-between;
padding: 40px 20px;
border-radius: 8px;
margin-top: 40px;
}

.get-involved-section .content {
max-width: 60%;
}

.get-involved-section .content h2 {
font-size: 2em;
margin-bottom: 20px;
}

.dark-mode .get-involved-section .content p {
font-size: 1em;
margin-bottom: 20px;
color: #333;
}

.dark-mode .get-involved-section .btn {
background-color: #007bff;
color: white;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
transition: background-color 0.3s ease;
}

.dark-mode .get-involved-section .btn:hover {
background-color: #0056b3;
}

.get-involved-section .svg-container {
max-width: 35%;
display: inline-block;
perspective: 1000px;
position: relative;
}

.get-involved-section .svg-container svg {
width: 100%;
height: auto;
transition: transform 0.1s ease;
}

.get-involved-section .content p {
color: white;
}

.get-involved-section .btn {
background-color: #ffa500;
color: white;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
transition: background-color 0.3s ease;
}

.get-involved-section .btn:hover {
background-color: #e68a00;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
.get-involved-section {
flex-direction: column;
text-align: center;
}

.get-involved-section .content {
max-width: 100%;
}

.get-involved-section .svg-container {
max-width: 100%;
margin-top: 20px;
}
}


Loading
Loading