Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Sophia committed Nov 15, 2024
1 parent 4065533 commit 1d76208
Show file tree
Hide file tree
Showing 10 changed files with 86 additions and 87 deletions.
1 change: 0 additions & 1 deletion CNAME

This file was deleted.

6 changes: 3 additions & 3 deletions asset-manifest.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"files": {
"main.css": "/static/css/main.bbf64479.css",
"main.js": "/static/js/main.564271ec.js",
"main.js": "/static/js/main.fd1cffb3.js",
"index.html": "/index.html",
"main.bbf64479.css.map": "/static/css/main.bbf64479.css.map",
"main.564271ec.js.map": "/static/js/main.564271ec.js.map"
"main.fd1cffb3.js.map": "/static/js/main.fd1cffb3.js.map"
},
"entrypoints": [
"static/css/main.bbf64479.css",
"static/js/main.564271ec.js"
"static/js/main.fd1cffb3.js"
]
}
154 changes: 77 additions & 77 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
/* This CSS file is separated into components:
- General Styles
- Loading Screen
- Navigation
- Buttons
- Header Section
- Schedule Section
- About Section
- Join Section
- Events / Gallery Section
- Team Section
- Contact Section
- Newsletter Section
- Footer Section
Please refer to the comments or use CTRL-F to find the specific section you are looking for.
*/

/* GENERAL STYLES */
body,
html {
font-family: "Open Sans", sans-serif;
Expand Down Expand Up @@ -74,6 +94,8 @@ hr {
border: 0;
}

/* LOADING SCREEN */

.loading-screen {
display: flex;
justify-content: center;
Expand Down Expand Up @@ -141,7 +163,8 @@ hr {
.Logo {
background-image: url(/Users/katepark/Documents/wiswebsite2021-main/public/img/portfolio/logo.png);
}
/* Navigation */

/* NAVIGATION */

.nav-item:hover {
cursor: pointer;
Expand Down Expand Up @@ -299,7 +322,7 @@ a:focus,
outline-offset: none;
}

/* Header Section */
/* HEADER SECTION */
.intro {
display: table;
width: 100%;
Expand Down Expand Up @@ -341,25 +364,12 @@ header .intro-text {
text-align: center;
}

/* schedule Section */
/* SCHEDULE SECTION */
#schedule {
background-image: linear-gradient(-20deg, #f794a4 0%, #fdd6bd 100%);
min-height:100vh
}

/*
#schedule i.fa {
font-size: 38px;
margin-bottom: 20px;
transition: all 0.5s;
color: #fff;
width: 100px;
height: 100px;
padding: 30px 0;
border-radius: 50%;
background-image: linear-gradient(-225deg, #7DE2FC 0%, #B9B6E5 100%);}
*/

@media (max-width: 1000px) {
#schedule iframe {
zoom: 0.6;
Expand All @@ -376,7 +386,49 @@ header .intro-text {
}
}

/* About Section */
#schedule {
padding: 50px 0;
top: 0;
left: 0;
width: 100%;
background-image: linear-gradient(-20deg, #f794a4 0%, #fdd6bd 100%);
display: flex;
justify-content: center;
align-items: center;
z-index: 10;
}

#schedule i.fa {
font-size: 38px;
margin-bottom: 20px;
transition: all 0.5s;
color: #fff;
width: 100px;
height: 100px;
padding: 30px 0;
border-radius: 50%;
background-image: linear-gradient(-225deg, #7DE2FC 0%, #B9B6E5 100%);
}

#schedule img {
width: 100px;
animation: rotation 6s infinite linear;
}

#schedule .loading-indicator {
height: 1000px;
}

@keyframes rotation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}

/* ABOUT SECTION */
#about {
padding: 100px 0; /* Vertical padding */
background-color: #f9d29d;
Expand Down Expand Up @@ -451,7 +503,8 @@ header .intro-text {
text-align: left; /* Center align list items */
}

/* join Section */
/* JOIN SECTION */

#join {
padding: 100px 0;
width: 100%;
Expand Down Expand Up @@ -509,7 +562,7 @@ img {
font-weight: 800;
}

/* events Section */
/* EVENTS / GALLERY SECTION */
#events {
padding: 100px 0;
background-color: #f39f86;
Expand Down Expand Up @@ -570,59 +623,7 @@ img {

}

/* schedule Section */
/* #schedule {
padding: 50px 0;
border-radius: 15px;
background-image: linear-gradient(-20deg, #f794a4 0%, #fdd6bd 100%);
width: 70%;
display: inline-block;
} */

#schedule {
padding: 50px 0;
top: 0;
left: 0;
width: 100%;
background-image: linear-gradient(-20deg, #f794a4 0%, #fdd6bd 100%);
display: flex;
justify-content: center;
align-items: center;
z-index: 10;
}

#schedule i.fa {
font-size: 38px;
margin-bottom: 20px;
transition: all 0.5s;
color: #fff;
width: 100px;
height: 100px;
padding: 30px 0;
border-radius: 50%;
background-image: linear-gradient(-225deg, #7DE2FC 0%, #B9B6E5 100%);
}

#schedule img {
width: 100px;
animation: rotation 6s infinite linear;
}

#schedule .loading-indicator {
height: 1000px;
}

@keyframes rotation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}


/* Team Section */
/* TEAM SECTION */
#team {
padding: 100px 0;
width: 100%;
Expand All @@ -633,7 +634,6 @@ img {
margin: 5px 0;
}


.team-members-container {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
Expand Down Expand Up @@ -819,7 +819,7 @@ img {
color: black; /* Set the specific h2 color to black */
}

/* Additional styles for better responsiveness */
/* ADDITIONAL STYLES FOR BETTER RESPONSIVENESS */
@media (max-width: 768px) {
.team-container {
align-items: flex-start;
Expand All @@ -836,7 +836,7 @@ img {
}
}

/* Contact Section */
/* CONTACT SECTION */
.contact-container {
height: 90vh;
}
Expand Down Expand Up @@ -991,7 +991,7 @@ label {
margin-right: 5px;
}

/* Newsletter Section */
/* NEWSLETTER SECTION */

#newsletter {
padding: 100px 0 60px;
Expand Down Expand Up @@ -1096,7 +1096,7 @@ label {
color: #777;
}

/* Footer Section*/
/* FOOTER SECTION */
#footer {
background-image: linear-gradient(120deg, #f6d365 0%, #fda085 100%); padding: 30px 0;
}
Expand Down
Binary file added img/portfolio/nov12-panel.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<!doctype html><html lang="en"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><link rel="shortcut icon" href="img/icons/favicon.ico.png" type="image/png"/><link rel="apple-touch-icon" href="img/apple-touch-icon.png"/><link rel="apple-touch-icon" sizes="72x72" href="img/apple-touch-icon-72x72.png"/><link rel="apple-touch-icon" sizes="114x114" href="img/apple-touch-icon-114x114.png"/><link rel="stylesheet" href="css/bootstrap.css"/><link rel="stylesheet" href="css/style.css"/><link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700" rel="stylesheet"/><link href="https://fonts.googleapis.com/css?family=Lato:400,700" rel="stylesheet"/><link href="https://fonts.googleapis.com/css?family=Raleway:300,400,500,600,700,800,900" rel="stylesheet"/><link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.6.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"><script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script><script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJi8t8+Osr5xPeF9ZmgXL3/X1keVk3H7dj8/XfCLpo5q4RTg0yTeW" crossorigin="anonymous"></script><script src="https://stackpath.bootstrapcdn.com/bootstrap/4.6.0/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8sh+WyGqyoT9TNHcZd6Qgm/iO4rFJ5G5E051C4" crossorigin="anonymous"></script><title>Women in Science</title><meta name="description" content=""/><meta name="author" content="@Issaafalkattan"/><script defer="defer" src="/static/js/main.564271ec.js"></script><link href="/static/css/main.bbf64479.css" rel="stylesheet"></head><body id="page-top" data-spy="scroll" data-target=".navbar-fixed-top"><div id="root"></div><script type="text/javascript" src="js/bootstrap.js"></script></body></html>
<!doctype html><html lang="en"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><link rel="shortcut icon" href="img/icons/favicon.ico.png" type="image/png"/><link rel="apple-touch-icon" href="img/apple-touch-icon.png"/><link rel="apple-touch-icon" sizes="72x72" href="img/apple-touch-icon-72x72.png"/><link rel="apple-touch-icon" sizes="114x114" href="img/apple-touch-icon-114x114.png"/><link rel="stylesheet" href="css/bootstrap.css"/><link rel="stylesheet" href="css/style.css"/><link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700" rel="stylesheet"/><link href="https://fonts.googleapis.com/css?family=Lato:400,700" rel="stylesheet"/><link href="https://fonts.googleapis.com/css?family=Raleway:300,400,500,600,700,800,900" rel="stylesheet"/><link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.6.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"><script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script><script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJi8t8+Osr5xPeF9ZmgXL3/X1keVk3H7dj8/XfCLpo5q4RTg0yTeW" crossorigin="anonymous"></script><script src="https://stackpath.bootstrapcdn.com/bootstrap/4.6.0/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8sh+WyGqyoT9TNHcZd6Qgm/iO4rFJ5G5E051C4" crossorigin="anonymous"></script><title>Women in Science</title><meta name="description" content=""/><meta name="author" content="@Issaafalkattan"/><script defer="defer" src="/static/js/main.fd1cffb3.js"></script><link href="/static/css/main.bbf64479.css" rel="stylesheet"></head><body id="page-top" data-spy="scroll" data-target=".navbar-fixed-top"><div id="root"></div><script type="text/javascript" src="js/bootstrap.js"></script></body></html>
Loading

0 comments on commit 1d76208

Please sign in to comment.