-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9f1b1a9
commit 89ec046
Showing
4 changed files
with
91 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,60 @@ | ||
.featuredProjectContainer { | ||
background-image: linear-gradient(white, rgba(255, 255, 255, 0), white); | ||
border-radius: 15px; | ||
padding: 40px 80px; | ||
display: flex; | ||
height: 400px; | ||
/* From https://css.glass */ | ||
background: rgba(204, 204, 204, 0.2); | ||
border-radius: 20px; | ||
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); | ||
backdrop-filter: blur(5px); | ||
-webkit-backdrop-filter: blur(5px); | ||
border: 1px solid rgba(204, 204, 204, 0.3); | ||
padding: 40px 80px; | ||
display: flex; | ||
height: 400px; | ||
} | ||
|
||
.projectContent { | ||
display: flex; | ||
flex-direction: column; | ||
text-align: justify; | ||
width: 50%; | ||
margin-right: 40px; | ||
line-height: 0px; | ||
display: flex; | ||
flex-direction: column; | ||
text-align: justify; | ||
width: 50%; | ||
margin-right: 40px; | ||
line-height: 0px; | ||
} | ||
|
||
.projectTitle { | ||
font-weight: 600; | ||
text-transform: uppercase; | ||
line-height: normal; | ||
font-weight: 600; | ||
text-transform: uppercase; | ||
line-height: normal; | ||
} | ||
|
||
.projectDescription { | ||
line-height: normal; | ||
margin: 20px 0px; | ||
line-height: normal; | ||
margin: 20px 0px; | ||
} | ||
|
||
.projectInstructions { | ||
line-height: normal; | ||
font-size: x-small; | ||
line-height: normal; | ||
font-size: x-small; | ||
} | ||
|
||
.projectTools { | ||
text-transform: uppercase; | ||
line-height: normal; | ||
text-transform: uppercase; | ||
line-height: normal; | ||
} | ||
|
||
.projectEtc { | ||
width: 50%; | ||
display: flex; | ||
flex-direction: column; | ||
text-align: right; | ||
width: 50%; | ||
display: flex; | ||
flex-direction: column; | ||
text-align: right; | ||
} | ||
|
||
.projectImg { | ||
height: 90%; | ||
height: 90%; | ||
} | ||
|
||
.projectImg img { | ||
box-shadow: 3px 6px 10px #cbcbcb; | ||
border-radius: 15px; | ||
max-height: 90%; | ||
max-width: 90%;} | ||
box-shadow: 3px 6px 10px #cbcbcb; | ||
border-radius: 15px; | ||
max-height: 90%; | ||
max-width: 90%; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,53 @@ | ||
.aboutContainer { | ||
margin: 0px 50px; | ||
display: inline-block; | ||
overflow: auto; | ||
position: fixed; | ||
top: 110px; | ||
margin: 0px 50px; | ||
display: inline-block; | ||
overflow: auto; | ||
position: fixed; | ||
top: 110px; | ||
} | ||
|
||
#aboutImage { | ||
width: 45%; | ||
position: fixed; | ||
top: 100px; | ||
right: 20px; | ||
width: 45%; | ||
position: fixed; | ||
top: 100px; | ||
right: 20px; | ||
} | ||
|
||
.aboutContent { | ||
height: 550px; | ||
width: 40%; | ||
display: inline-block; | ||
margin: 100px 0px 20px 50px; | ||
height: 550px; | ||
width: 40%; | ||
display: inline-block; | ||
margin: 100px 0px 20px 50px; | ||
} | ||
|
||
.glassContainer { | ||
border: 2px solid white; | ||
display: inline-block; | ||
border-radius: 15px; | ||
background-image: linear-gradient(white, rgba(255, 255, 255, 0)); | ||
box-shadow: 3px 6px 10px #cbcbcb; | ||
padding: 30px 50px; | ||
margin: 10px 20px 30px 0px; | ||
width: 80%; | ||
display: inline-block; | ||
border-radius: 20px; | ||
background: #e6e3e3; | ||
box-shadow: 12px 12px 37px #d4d4d4, -12px -12px 37px #ffffff; | ||
padding: 30px 50px; | ||
margin: 10px 20px 30px 0px; | ||
width: 80%; | ||
} | ||
|
||
.funFact { | ||
display: flex; | ||
align-items: flex-start; | ||
justify-content: flex-start; | ||
display: flex; | ||
align-items: flex-start; | ||
justify-content: flex-start; | ||
} | ||
|
||
.funFactIcon { | ||
width: 24px; | ||
width: 24px; | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
text-decoration: none; | ||
} | ||
|
||
h3 { | ||
text-align: center; | ||
text-align: center; | ||
} | ||
|
||
td { | ||
padding: 0px 20px 5px 0px; | ||
} | ||
padding: 0px 20px 5px 0px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,31 @@ | ||
.projectsPage { | ||
background-image: url('../assets/projects.png'); | ||
background-size: 100% auto; | ||
background-image: url("../assets/projects.png"); | ||
background-size: 100% auto; | ||
} | ||
|
||
.projectsHeader { | ||
margin: 150px 50px 20px; | ||
margin: 150px 50px 20px; | ||
} | ||
|
||
.carousel { | ||
width: 80%; | ||
margin: 40px auto; | ||
width: 80%; | ||
margin: 40px auto; | ||
border-radius: 20px; | ||
} | ||
|
||
.allProjectsHeader { | ||
margin-left: 50px; | ||
margin-left: 50px; | ||
} | ||
|
||
.allProjectsContainer { | ||
margin: 20px 50px; | ||
display: grid; | ||
grid-gap: 20px 20px; | ||
grid-template-columns: 23% 23% 23% 23%; | ||
/* height: 100%; */ | ||
margin: 20px 50px; | ||
display: grid; | ||
grid-gap: 20px 20px; | ||
grid-template-columns: 23% 23% 23% 23%; | ||
/* height: 100%; */ | ||
} | ||
|
||
.allProjectsContainer a { | ||
text-decoration: none; | ||
color: black; | ||
} | ||
text-decoration: none; | ||
color: black; | ||
} |