Skip to content

Commit

Permalink
Merge branch 'reactplay:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
yung-coder committed Aug 17, 2022
2 parents 438d30f + 3efb9bc commit cbae899
Show file tree
Hide file tree
Showing 11 changed files with 731 additions and 409 deletions.
9 changes: 9 additions & 0 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,15 @@
"contributions": [
"code"
]
},
{
"login": "EOEboh",
"name": "Emmanuel O Eboh",
"avatar_url": "https://avatars.githubusercontent.com/u/63825997?v=4",
"profile": "http:https://emmanueleboh.vercel.app",
"contributions": [
"code"
]
}
],
"contributorsPerLine": 7,
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ReactPlay(Repo: `react-play`)
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
[![All Contributors](https://img.shields.io/badge/all_contributors-37-orange.svg?style=flat-square)](#contributors-)
[![All Contributors](https://img.shields.io/badge/all_contributors-38-orange.svg?style=flat-square)](#contributors-)
<!-- ALL-CONTRIBUTORS-BADGE:END -->

<p align="center">
Expand Down Expand Up @@ -241,6 +241,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
<tr>
<td align="center"><a href="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/ammaaraslam"><img src="https://avatars.githubusercontent.com/u/96367405?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Ammaar Aslam</b></sub></a><br /><a href="https://github.com/reactplay/react-play/commits?author=ammaaraslam" title="Code">💻</a></td>
<td align="center"><a href="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/mayukh551"><img src="https://avatars.githubusercontent.com/u/82811112?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mayukh Bhowmick</b></sub></a><br /><a href="https://github.com/reactplay/react-play/commits?author=mayukh551" title="Code">💻</a></td>
<td align="center"><a href="http:https://emmanueleboh.vercel.app"><img src="https://avatars.githubusercontent.com/u/63825997?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Emmanuel O Eboh</b></sub></a><br /><a href="https://github.com/reactplay/react-play/commits?author=EOEboh" title="Code">💻</a></td>
</tr>
</table>

Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@
"git-repo-api": "^0.0.17",
"graphql": "^16.5.0",
"html-to-image": "^1.9.0",
"json-graphql-parser": "^0.1.7",
"html2canvas": "^1.4.1",
"json-graphql-parser": "^0.0.20",
"jspdf": "^2.5.1",
"lodash": "^4.17.21",
"node-sass": "^7.0.1",
"react": "^18.0.0",
Expand All @@ -41,6 +43,7 @@
"react-twitter-widgets": "^1.11.0",
"redux": "^4.2.0",
"redux-persist": "^6.0.0",
"remarkable": "^2.0.1",
"reselect": "^4.1.5",
"web-vitals": "^2.1.0",
"workbox-cacheable-response": "^6.5.4",
Expand Down
64 changes: 32 additions & 32 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@tailwind components;
@tailwind utilities;

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&family=Raleway:wght@900&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&family=Raleway:wght@900&display=swap");

.text-center {
text-align: center;
Expand All @@ -21,7 +21,11 @@
border-width: 0;
}

button, input, optgroup, select, textarea {
button,
input,
optgroup,
select,
textarea {
color: initial;
}

Expand All @@ -30,15 +34,15 @@ button, input, optgroup, select, textarea {
--color-brand-primary-rgb: 0, 244, 252;
--color-brand-primary-alt: #61dafb;
--color-brand-primary-dark: #00aada;

/* Neutral */
--color-neutral-10: #ffffff;
--color-neutral-20: #f6f6f9;
--color-neutral-30: #e0e0e6;
--color-neutral-40: #BDBDBD;
--color-neutral-50: #7F878A;
--color-neutral-60: #5C6C70;
--color-neutral-70: #3E5156;
--color-neutral-40: #bdbdbd;
--color-neutral-50: #7f878a;
--color-neutral-60: #5c6c70;
--color-neutral-70: #3e5156;
--color-neutral-80: #242230;
--color-neutral-90: #010326;
--color-neutral-100: #000000;
Expand Down Expand Up @@ -66,7 +70,6 @@ button, input, optgroup, select, textarea {
--fs-lg: 2rem;
--fs-xl: 3rem;
--fs-xxl: 4rem;


/* Line Height */
--lh-xs: 0.8em;
Expand All @@ -91,6 +94,9 @@ button, input, optgroup, select, textarea {
/* Play */
--play-thumb-size-w: 260px;
--play-thumb-size-h: 146px;
/* For Mobile */
--play-thumb-size-w-mobile: 308px;
--play-thumb-size-h-mobile: 194px;

/* Play level */
--color-play-level-1: 3, 169, 244;
Expand Down Expand Up @@ -123,7 +129,7 @@ body * {
}

code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace;
}

Expand Down Expand Up @@ -212,8 +218,6 @@ small {
text-decoration: underline;
}



/* App Footer */
.app-footer {
padding: 0 12px;
Expand All @@ -232,7 +236,7 @@ small {
max-width: var(--screen-lg-max);
margin: 0 auto 1rem auto;
display: none;
grid-template-columns: 1fr 1.2fr .8fr;
grid-template-columns: 1fr 1.2fr 0.8fr;
gap: 4rem;
}

Expand Down Expand Up @@ -305,7 +309,7 @@ small {
}

.app-footer .copy {
margin: .4rem 0;
margin: 0.4rem 0;
text-align: center;
}

Expand Down Expand Up @@ -353,8 +357,6 @@ small {
}
}



/* Buttons */
.btn-default {
border: solid 1px var(--color-neutral-60);
Expand All @@ -363,7 +365,7 @@ small {
flex-direction: row;
align-items: center;
grid-gap: 0.4rem;
padding: .8rem 1.4rem;
padding: 0.8rem 1.4rem;
font-size: var(--fs-rg);
font-weight: var(--fw-bold);
text-decoration: none;
Expand Down Expand Up @@ -401,17 +403,16 @@ small {
grid-gap: 1.2rem;
}


.btn-default-light {
border: 0;
display: inline-flex;
align-items: center;
grid-gap: 0.4rem;
border-radius: 2rem;
border-radius: 2rem;
padding: 0.8rem 1.4rem;
font-size: var(--fs-rg);
font-weight: var(--fw-bold);
background-color: rgba(var(--color-neutral-90-rgb),0.1);
background-color: rgba(var(--color-neutral-90-rgb), 0.1);
color: var(--color-neutral-80);
transition: all 0.16s ease-in-out;
}
Expand All @@ -433,7 +434,6 @@ small {
color: var(--color-brand-primary-dark);
}


.btn-primary {
border: solid 2px var(--color-brand-primary);
background-color: var(--color-brand-primary);
Expand All @@ -444,7 +444,7 @@ small {
flex-direction: row;
align-items: center;
grid-gap: 0.4rem;
padding: .8rem 1.4rem;
padding: 0.8rem 1.4rem;
font-size: var(--fs-rg);
font-weight: var(--fw-bold);
text-decoration: none;
Expand All @@ -454,7 +454,7 @@ small {
cursor: pointer;
}

.btn-primary .icon {
.btn-primary .icon {
width: var(--navbar-icon-size-rg);
height: var(--navbar-icon-size-rg);
fill: var(--color-neutral-90);
Expand Down Expand Up @@ -490,7 +490,7 @@ small {
flex-direction: row;
align-items: center;
grid-gap: 0.4rem;
padding: .8rem 1.4rem;
padding: 0.8rem 1.4rem;
font-size: var(--fs-rg);
font-weight: var(--fw-bold);
text-decoration: none;
Expand All @@ -500,7 +500,7 @@ small {
cursor: pointer;
}

.btn-secondary-light .icon {
.btn-secondary-light .icon {
width: var(--navbar-icon-size-rg);
height: var(--navbar-icon-size-rg);
fill: var(--color-brand-primary);
Expand All @@ -527,7 +527,7 @@ small {
}

.btn-size--sm {
padding: .6rem 1.2rem;
padding: 0.6rem 1.2rem;
height: 42px;
font-size: var(--fs-sm);
}
Expand All @@ -547,7 +547,7 @@ small {
margin: 1rem auto 2rem auto;
max-width: 1280px;
box-sizing: border-box;
grid-gap: .4rem;
grid-gap: 0.4rem;
justify-content: center;
}

Expand All @@ -574,18 +574,18 @@ small {
.brand-tech-stack:hover,
.brand-tech-stack:focus {
border: solid 2px rgba(var(--color-brand-primary-rgb), 60%);
transform: scale(1.10);
box-shadow: 0px 0 12px 0px rgba(var(--color-neutral-90-rgb),0.12);
-webkit-box-shadow: 0px 0 12px 0px rgba(var(--color-neutral-90-rgb),0.12);
-moz-box-shadow: 0px 0 12px 0px rgba(var(--color-neutral-90-rgb),0.12);
transform: scale(1.1);
box-shadow: 0px 0 12px 0px rgba(var(--color-neutral-90-rgb), 0.12);
-webkit-box-shadow: 0px 0 12px 0px rgba(var(--color-neutral-90-rgb), 0.12);
-moz-box-shadow: 0px 0 12px 0px rgba(var(--color-neutral-90-rgb), 0.12);
}

.brand-tech-stack:hover .icon,
.brand-tech-stack:focus .icon {
fill: var(--color-brand-primary);
}

.create-button-badge{
.create-button-badge {
background-color: var(--color-neutral-60);
border-radius: 0px 6px 6px 0px;
margin: -14.8px 0px 0px -1px;
Expand All @@ -595,4 +595,4 @@ small {
transform: skew(170deg);
font-size: var(--fs-xxs);
text-transform: uppercase;
}
}
Loading

0 comments on commit cbae899

Please sign in to comment.