Skip to content

Commit

Permalink
remove unused files
Browse files Browse the repository at this point in the history
  • Loading branch information
Glenn Sorrentino committed Oct 13, 2022
1 parent df2fd37 commit 1caf515
Show file tree
Hide file tree
Showing 19 changed files with 167 additions and 25 deletions.
Binary file removed .DS_Store
Binary file not shown.
Binary file removed css/.DS_Store
Binary file not shown.
Binary file removed design-system/.DS_Store
Binary file not shown.
Binary file removed design-system/components/.DS_Store
Binary file not shown.
Binary file removed design-system/components/badge/.DS_Store
Binary file not shown.
Binary file removed design-system/components/content/.DS_Store
Binary file not shown.
57 changes: 52 additions & 5 deletions design-system/components/content/css/content.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,27 @@
.iconAlt {
color: var(--color-label-lm);
}

.description img.avatar {
box-shadow: var(--shadow-lm);
border: var(--border-dark-1);
}
}

@media (prefers-color-scheme: dark) {
.iconAlt {
color: var(--color-label-dm);
}

.description img.avatar {
box-shadow: var(--shadow-dm);
border: var(--border-light);
}
}

.group {
display: flex;
margin: var(--spacing-large) 0;
margin: var(--spacing-xxlarge) 0;
}

.group .description {
Expand Down Expand Up @@ -116,6 +126,11 @@
padding: 0 var(--spacing-base);
justify-content: flex-start;
flex: 1 1 0px;
margin: 0;
}

.study .groupRow .description {
margin: 0 var(--spacing-base);
}

.groupRow .description img ~ .iconAlt {
Expand All @@ -133,19 +148,39 @@
height: auto;
}

.study .groupRow {
margin: var(--spacing-xxlarge) 0;
}

.study .description h4 {
text-align: center;
margin-bottom: var(--spacing-small);
}

.study .description ul {
font-size: var(--font-size-base);
margin-left: auto;
margin-right: auto;
margin-bottom: 0;
}

@media only screen and (max-width: 1024px) {
.description h3,
.description h4,
.description h5,
.description h6 {
width: 80%;
}

.group {
margin: var(--spacing-xlarge) 0;
}
}

@media only screen and (max-width: 768px) {
.group {
flex-direction: column;
margin: var(--spacing-medium) 0;
margin: var(--spacing-xlarge) 0;
}

.group .description {
Expand All @@ -154,6 +189,15 @@
width: auto;
}

.study .groupRow .description {
margin: var(--spacing-small) 0 !important;
}

.study .groupRow {
margin: var(--spacing-large) 0 !important;
}


.group img {
width: 100%;
margin: var(--spacing-base) 0 0 0;
Expand All @@ -170,7 +214,7 @@

.description {
padding: 0;
margin: var(--spacing-medium) 0;
margin: var(--spacing-base) 0;
}

.description.flip {
Expand All @@ -180,10 +224,12 @@

.groupRow {
flex-direction: column;
margin: 0;
}

.groupRow .description {
padding: 0;
margin: var(--spacing-base) 0;
}

.description h3,
Expand All @@ -202,13 +248,14 @@
padding: 0;
}

.groupRow .description img {
/* .groupRow .description img {
order: 9;
}
} */
}

@media only screen and (max-width: 640px) {
.mobileImageContainer img {
width: 100%;
}

}
Binary file removed design-system/components/footer/.DS_Store
Binary file not shown.
Binary file removed design-system/components/header/.DS_Store
Binary file not shown.
Binary file removed design-system/components/intro/.DS_Store
Binary file not shown.
Binary file removed design-system/css/.DS_Store
Binary file not shown.
135 changes: 115 additions & 20 deletions design-system/css/typography.css
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,12 @@ body {
}

h1, h2, h3, h4, h5, h6 {
font-weight: bold;
line-height: var(--line-height-heading);
font-weight: bold;
}

h2, h3, h4, h5, h6 {
letter-spacing: var(--letter-spacing-serif-heading);
}

h2 {
Expand All @@ -76,7 +80,7 @@ h3 {

h4 {
font-size: var(--font-size-3);
margin: var(--spacing-xxlarge) 0 var(--spacing-small) 0;
margin: var(--spacing-xxlarge) 0 var(--spacing-xxsmall) 0;
}

h5 {
Expand All @@ -91,13 +95,64 @@ h6 {

p {
max-width: 640px;
line-height: var(--line-height-base);
line-height: var(--line-height-body);
margin: var(--spacing-base) 0;

}

li {
line-height: var(--line-height-body);
}

p.meta {
margin: var(--spacing-small) 0 var(--spacing-xsmall) 0 !important;
font-size: var(--font-size-xsmall);
font-size: var(--font-size-small);
}

.highlight {
padding: var(--spacing-xsmall);
border-radius: var(--radius-soft);
}

.study p, .study ul {
font-size: var(--font-size-study);
font-family: 'Serif';
line-height: 1.7;
}

.study p, .study ul {
margin-top: var(--spacing-large);
margin-bottom: var(--spacing-large);
}

.study p + p {
margin-top: var(--spacing-small);
}

.study ul {
list-style: none;
}

.study img + p:not( img + p > h3) {
margin: var(--spacing-xlarge) auto;
}

.study h3, .study h4, .study h5, .study h6 {
max-width: 640px;
margin-left: auto;
margin-right: auto;
margin-bottom: 0;
margin-top: calc(var(--spacing-xxlarge) * 1.25);
text-align: center;
}

.study p, .study img, .study ul {
margin-left: auto;
margin-right: auto;
}

.strong {
font-weight: bold;
}

h1 .emoji, h2 .emoji, h3 .emoji, h4 .emoji, h5 .emoji, h6 .emoji {
Expand All @@ -109,6 +164,11 @@ h1 .emoji, h2 .emoji, h3 .emoji, h4 .emoji, h5 .emoji, h6 .emoji {
text-align: center;
}

.center p {
margin-left: auto;
margin-right: auto;
}

.code {
padding: var(--spacing-xxsmall) var(--spacing-xsmall);
border-radius: var(--radius-soft);
Expand All @@ -117,63 +177,98 @@ h1 .emoji, h2 .emoji, h3 .emoji, h4 .emoji, h5 .emoji, h6 .emoji {
font-size: var(--font-size-small);
}

@media only screen and (max-width: 1440px) {
@media only screen and (max-width: 1280px) {
h2 {
font-size: calc(var(--font-size-1) * .9);
font-size: calc(var(--font-size-1) * .95);
}
}

@media only screen and (max-width: 1024px) {

h2 {
font-size: calc(var(--font-size-1) * .8);
}
}

@media only screen and (max-width: 1000px) {

h3 {
font-size: calc(var(--font-size-2) * .9);
font-size: calc(var(--font-size-2) * .85);
margin: var(--spacing-xxlarge) 0 var(--spacing-base) 0;
}

h4 {
font-size: calc(var(--font-size-3) * .9);
margin: calc(var(--spacing-xxlarge) * .9) 0 var(--spacing-small) 0;
font-size: calc(var(--font-size-3) * .85);
margin: calc(var(--spacing-xxlarge) * .85) 0 var(--spacing-xxsmall) 0;
}

h5 {
font-size: calc(var(--font-size-4) * .9);
font-size: calc(var(--font-size-4) * .85);
}

h6 {
font-size: calc(var(--font-size-5) * .9);
font-size: calc(var(--font-size-5) * .85);
}

}

@media only screen and (max-width: 1024px) {
}

@media only screen and (max-width: 768px) {

h2 {
font-size: calc(var(--font-size-1) * .8);
font-size: calc(var(--font-size-1) * .75);
}

h3 {
font-size: calc(var(--font-size-2) * .8);
font-size: calc(var(--font-size-2) * .75);
margin: var(--spacing-xxlarge) 0 var(--spacing-base) 0;
}

h4 {
font-size: calc(var(--font-size-3) * .8);
margin: calc(var(--spacing-xxlarge) * .8) 0 var(--spacing-small) 0;
font-size: calc(var(--font-size-3) * .75);
margin: calc(var(--spacing-xxlarge) * .75) 0 var(--spacing-xxsmall) 0;
}

h5 {
font-size: calc(var(--font-size-4) * .8);
font-size: calc(var(--font-size-4) * .75);
}

h6 {
font-size: calc(var(--font-size-5) * .8);
font-size: calc(var(--font-size-5) * .75);
}

p.meta {
font-size: var(--font-size-xsmall);
}

}

@media only screen and (max-width: 640px) {
.study h3, .study h4, .study h5, .study h6 {
/* margin-left: 0;
margin-right: ; */
}
}

@media only screen and (max-width: 480px) {

h2 {
font-size: calc(var(--font-size-1) * .6);
}

h3 {
font-size: calc(var(--font-size-2) * .7);
margin: var(--spacing-xxlarge) 0 var(--spacing-base) 0;
}

h5 {
font-size: calc(var(--font-size-4) * .7);
}

h6 {
font-size: calc(var(--font-size-5) * .7);
}

.code {
width: fit-content !important;
}
}
Binary file removed design-system/fonts/.DS_Store
Binary file not shown.
Binary file removed design-system/images/.DS_Store
Binary file not shown.
Binary file removed design-system/images/favicon/.DS_Store
Binary file not shown.
Binary file removed design-system/images/nav/.DS_Store
Binary file not shown.
Binary file removed design-system/images/placeholder/.DS_Store
Binary file not shown.
Binary file removed design-system/js/.DS_Store
Binary file not shown.
Binary file removed v1/.DS_Store
Binary file not shown.

0 comments on commit 1caf515

Please sign in to comment.