Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
mertsincan committed Jan 17, 2020
2 parents 9f8c4ec + a889a47 commit a4f47e5
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 34 deletions.
62 changes: 31 additions & 31 deletions src/sass/layout/_content.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,37 @@
margin-left: 300px;
padding-top: 70px;

.link-button {
font-weight: bold;
text-align: center;
color: #ffffff;
background-color: #fe8702;
padding: 10px 24px 9px 24px;
border-radius: 3px;
@include transition(background-color .2s);

&:hover {
background-color: #C56A05;
color: #ffffff;
}
}

.link-button2 {
font-weight: bold;
text-align: center;
color: #8C6816 !important;;
background-color: #FFCB54;
padding: 10px 24px 9px 24px;
border-radius: 3px;
@include transition(background-color .2s);
display: inline-block;

&:hover {
background-color: #E5AF36;
color: #8C6816 !important;
}
}

.content-section {
display: block;
padding: 30px;
Expand Down Expand Up @@ -303,37 +334,6 @@
line-height: 22px;
}

.home-button {
font-weight: bold;
text-align: center;
color: #ffffff;
background-color: #fe8702;
padding: 10px 24px 9px 24px;
border-radius: 3px;
@include transition(background-color .2s);

&:hover {
background-color: #C56A05;
color: #ffffff;
}
}

.home-button2 {
font-weight: bold;
text-align: center;
color: #8C6816 !important;;
background-color: #FFCB54;
padding: 10px 24px 9px 24px;
border-radius: 3px;
@include transition(background-color .2s);
display: inline-block;

&:hover {
background-color: #E5AF36;
color: #8C6816 !important;
}
}

/* Introduction */
.introduction {
background-color: #1976d2;
Expand Down
4 changes: 2 additions & 2 deletions src/showcase/home/HomeComponent.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export class HomeComponent extends Component {
<h1>The Most Complete UI Framework</h1>
<h2>for REACT</h2>

<Link to="/setup" className="home-button">Get Started</Link>
<Link to="/setup" className="link-button">Get Started</Link>
</div>
<div className="features">
<h3>Why PrimeReact?</h3>
Expand Down Expand Up @@ -184,7 +184,7 @@ export class HomeComponent extends Component {
<h3>PrimeReact PRO Support</h3>
<p>With PrimeReact PRO, it is easy to support, tune and add features to PrimeReact as if it were an in-house framework.</p>
<p>PrimeReact PRO is a term based commercial support service. With the exclusive services of Pro account, you no longer need to post your questions in the community forum and your issues to community issue tracker.</p>
<a className="home-button2" href="mailto:[email protected]">
<a className="link-button2" href="mailto:[email protected]">
Get a Quote
</a>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/showcase/support/SupportPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export class SupportPage extends Component {
<div className="p-col-12 p-md-6">
<h3>PrimeReact PRO Support</h3>
<p>With PrimeReact PRO, it's easy to support, tune and add features to PrimeReact as if it were an in-house framework.</p>
<a className="home-button2" href="mailto:[email protected]">GET A QUOTE</a>
<a className="link-button2" href="mailto:[email protected]">GET A QUOTE</a>
</div>
<div className="p-col-12 p-md-6">
<img alt="PRO" src="showcase/resources/images/home/icon-pro-white.svg"></img>
Expand Down

0 comments on commit a4f47e5

Please sign in to comment.