fixing links, adding nice buttons

Summary: as per title

Reviewed By: jknoxville

Differential Revision: D15167533

fbshipit-source-id: 67d059c478bf0608b598ba7cd6be19157ff41900
This commit is contained in:
Daniel Büchele
2019-05-01 11:18:00 -07:00
committed by Facebook Github Bot
parent be7aefc044
commit 8734b99f8d
3 changed files with 57 additions and 21 deletions

View File

@@ -46,17 +46,29 @@ h6 {
letter-spacing: 1px;
}
.splash .btn {
color: white;
.landing-btn {
display: inline-block;
padding: 7px 20px;
border-radius: 6px;
margin: 0 10px;
border: 1px solid white;
border: 1px solid #777;
}
.splash .btn.primary {
.landing-btn:hover {
}
.landing-btn.primary {
background-color: #008cf2;
color: white;
border-color: #008cf2;
}
.splash .landing-btn {
color: white;
border-color: white;
}
.splash .landing-btn.primary {
border-color: #008cf2;
}
@@ -216,11 +228,6 @@ nav.toc .toggleNav .navGroup.navGroupActive h3 {
margin: 0;
}
.button {
border-radius: 6px;
text-transform: none;
}
.sitemap {
width: 100%;
}
@@ -236,7 +243,6 @@ a.learnmore:hover {
}
.toc .toggleNav ul li.navListItemActive a {
color: $actionColor;
opacity: 1;
}
@@ -440,3 +446,24 @@ footer iframe {
content: '';
position: absolute;
}
.landing-cta {
padding-top: 30px;
padding-bottom: 80px;
text-align: center;
}
.button {
text-transform: none;
border: none;
font-size: 0.8em;
border-radius: 999em;
background-color: rgba(0, 0, 0, 0.05);
padding: 0.5em 1em;
font-weight: 500;
margin-top: 8px;
}
.button:hover {
background-color: rgba(0, 0, 0, 0.1);
color: inherit;
}