Commented out hello p5 video page. Did not remove the features as it can be used again after revamping the hello p5 page.
This commit is contained in:
parent
6f5472020c
commit
1969c48cce
2 changed files with 30 additions and 27 deletions
|
@ -10,7 +10,8 @@ function About(props) {
|
||||||
<div className="about__content">
|
<div className="about__content">
|
||||||
<div className="about__content-column">
|
<div className="about__content-column">
|
||||||
<InlineSVG className="about__logo" src={squareLogoUrl} alt="p5js Square Logo" />
|
<InlineSVG className="about__logo" src={squareLogoUrl} alt="p5js Square Logo" />
|
||||||
<p className="about__play-video">
|
{/* Video button to hello p5 video page */}
|
||||||
|
{/* <p className="about__play-video">
|
||||||
<a
|
<a
|
||||||
href="http://hello.p5js.org/"
|
href="http://hello.p5js.org/"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
|
@ -18,7 +19,7 @@ function About(props) {
|
||||||
>
|
>
|
||||||
<InlineSVG className="about__play-video-button" src={playUrl} alt="Play Hello Video" />
|
<InlineSVG className="about__play-video-button" src={playUrl} alt="Play Hello Video" />
|
||||||
Play hello! video</a>
|
Play hello! video</a>
|
||||||
</p>
|
</p> */}
|
||||||
</div>
|
</div>
|
||||||
<div className="about__content-column">
|
<div className="about__content-column">
|
||||||
<h3 className="about__content-column-title">New to p5.js?</h3>
|
<h3 className="about__content-column-title">New to p5.js?</h3>
|
||||||
|
|
|
@ -6,32 +6,34 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.about__play-video {
|
// hello p5 video link button css
|
||||||
padding-top: #{9 / $base-font-size}rem;
|
|
||||||
padding-left: #{5 / $base-font-size}rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.about__play-video-button {
|
// .about__play-video {
|
||||||
@include themify() {
|
// padding-top: #{9 / $base-font-size}rem;
|
||||||
@extend %toolbar-button;
|
// padding-left: #{5 / $base-font-size}rem;
|
||||||
width: #{32 / $base-font-size}rem;
|
// }
|
||||||
height: #{32 / $base-font-size}rem;
|
|
||||||
line-height: #{34 / $base-font-size}rem;
|
// .about__play-video-button {
|
||||||
border-radius: #{24 / $base-font-size}rem;
|
// @include themify() {
|
||||||
background-color: $about-play-background-color;
|
// @extend %toolbar-button;
|
||||||
border: solid 0.5px $about-button-border-color;
|
// width: #{32 / $base-font-size}rem;
|
||||||
&:hover {
|
// height: #{32 / $base-font-size}rem;
|
||||||
border-color: getThemifyVariable('button-background-hover-color');
|
// line-height: #{34 / $base-font-size}rem;
|
||||||
}
|
// border-radius: #{24 / $base-font-size}rem;
|
||||||
}
|
// background-color: $about-play-background-color;
|
||||||
padding-left: 2px;
|
// border: solid 0.5px $about-button-border-color;
|
||||||
margin-right: #{9 / $base-font-size}rem;
|
// &:hover {
|
||||||
svg {
|
// border-color: getThemifyVariable('button-background-hover-color');
|
||||||
width: #{11 / $base-font-size}rem;
|
// }
|
||||||
height: #{11 / $base-font-size}rem;
|
// }
|
||||||
margin-left: #{1 / $base-font-size}rem;
|
// padding-left: 2px;
|
||||||
}
|
// margin-right: #{9 / $base-font-size}rem;
|
||||||
}
|
// svg {
|
||||||
|
// width: #{11 / $base-font-size}rem;
|
||||||
|
// height: #{11 / $base-font-size}rem;
|
||||||
|
// margin-left: #{1 / $base-font-size}rem;
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
.about__content {
|
.about__content {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
Loading…
Reference in a new issue