-
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.
still need to fix background preload, convert other projects to the new project styling
- Loading branch information
Showing
19 changed files
with
405 additions
and
166 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
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 |
---|---|---|
@@ -0,0 +1,91 @@ | ||
/* Styling for the individual pages for specific projects */ | ||
|
||
|
||
.project-container { | ||
display: grid; | ||
grid-template-columns: .2vw .2fr .4fr 1fr 1fr 1fr .2fr .2vw; | ||
grid-template-rows: .2fr .6fr 1fr .4fr .4fr; | ||
grid-column-gap: 10px; | ||
width: 100vw; | ||
height: 100vh; | ||
background-repeat: no-repeat; | ||
background: url(../img/aw_bg2.jpg) no-repeat center center fixed; | ||
-webkit-background-size: cover; | ||
-moz-background-size: cover; | ||
-o-background-size: cover; | ||
background-size: cover; | ||
opacity: 100%; | ||
|
||
-webkit-transition: background .2s linear; | ||
-moz-transition: background .2s linear; | ||
-o-transition: background .2s linear; | ||
-ms-transition: background .2s linear; | ||
transition: background .2s linear; | ||
} | ||
|
||
|
||
.projectbody { | ||
display: flex; | ||
grid-column: 5; | ||
grid-row: 3; | ||
text-overflow: ellipsis; | ||
width: 100%; | ||
} | ||
|
||
.nav-text { | ||
line-height: 60px; | ||
font-family: 'Amiri', serif; | ||
font-size: 20px; | ||
color: white; | ||
} | ||
|
||
.vnav { | ||
grid-column: 3; | ||
grid-row: 2/4; | ||
padding-block-start: 0; | ||
} | ||
|
||
.project-title { | ||
padding-block-start: 60px; | ||
padding-inline-end: 20%; | ||
align-items: flex-start; | ||
display: flex; | ||
grid-row: 1; | ||
grid-column: 4/6; | ||
text-align: left; | ||
|
||
font-family: 'Josefin Sans', sans-serif; | ||
font-size: 3vw; | ||
color: white; | ||
opacity: 90%; | ||
line-height: 100%; | ||
min-width: 4vw; | ||
} | ||
|
||
.project-body { | ||
overflow: hidden; | ||
padding-inline-end: 10%; | ||
margin-block-start: 24px; | ||
grid-row: 2/6; | ||
grid-column: 4/7; | ||
overflow-y: scroll; | ||
|
||
line-height: 24px; | ||
font-family: 'Amiri', serif; | ||
font-size: 16px; | ||
color: white; | ||
width: 100%; | ||
max-width: 800px; | ||
} | ||
|
||
.subtitle { | ||
line-height: 60px; | ||
font-size: 24px; | ||
text-emphasis: bold; | ||
font-family: 'Josefin Sans', sans-serif; | ||
} | ||
|
||
.project-body > \* { | ||
grid-row: 2/5; | ||
grid-column: 3/5; | ||
} |
Oops, something went wrong.