-
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.
Separated Landing Page and Home Page
- Added a dedicated landing-page with an under-construction message for now - Updated and separated home-page dedicated to the general overview contents of the websites - Updated about-page based on the home-page adjustments
- Loading branch information
1 parent
4199586
commit 9968a1d
Showing
24 changed files
with
402 additions
and
440 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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,50 @@ | ||
.cards { | ||
padding: var(--two-spacing); | ||
|
||
@media screen and (max-width:800px) { | ||
padding: var(--default-spacing); | ||
} | ||
|
||
&.cards-gray { | ||
background-color: var(--bg-slategray); | ||
border-radius: var(--quarter-spacing); | ||
} | ||
|
||
&__title { | ||
font-family: var(--font-title); | ||
font-size: var(--text-size-subtitle); | ||
font-weight: bold; | ||
color: var(--text-primary); | ||
} | ||
|
||
&__description { | ||
margin: 0; | ||
padding: 0; | ||
font-size: small; | ||
flex: 1; | ||
|
||
@media screen and (max-width:800px) { | ||
font-size: var(--text-size-default); | ||
margin-top: 0; | ||
} | ||
} | ||
|
||
&__meta { | ||
border-top: solid 2px var(--bg-dark); | ||
margin: var(--default-spacing) 0 0 0; | ||
padding: var(--half-spacing) 0 0 0; | ||
color: var(--text-lightgray); | ||
display: flex; | ||
flex-direction: row; | ||
flex-wrap: nowrap; | ||
justify-content: space-between; | ||
align-items: center; | ||
gap: var(--default-spacing); | ||
|
||
> .divider { | ||
color: var(--text-dark); | ||
font-size: var(--text-size-default); | ||
font-weight: bold; | ||
} | ||
} | ||
} |
Oops, something went wrong.