diff --git a/website/pages/en/index.js b/website/pages/en/index.js index 0438c6a94..9e294138a 100755 --- a/website/pages/en/index.js +++ b/website/pages/en/index.js @@ -22,9 +22,19 @@ class Index extends React.Component {
- Download + Download Mac + + + Linux + + + Windows Learn more diff --git a/website/static/css/custom.css b/website/static/css/custom.css index 1cbdde70f..b1f77ea45 100644 --- a/website/static/css/custom.css +++ b/website/static/css/custom.css @@ -55,18 +55,41 @@ h6 { .landing-btn { display: inline-block; padding: 7px 20px; - border-radius: 6px; margin: 0 10px; + border-radius: 6px; border: 1px solid #777; } -.landing-btn:hover { +.landing-btn-left { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + margin-right: 0; + padding-right: 10px; +} + +.landing-btn-middle { + border-radius: 0; + margin: 0; + padding: 7px 10px; +} + +.landing-btn-right { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + margin-left: 0; + padding-left: 10px; +} + +.landing-btn.primary:hover { + background-color: #0066af; + border-color: #0066af; } .landing-btn.primary { background-color: #008cf2; color: white; border-color: #008cf2; + color: white; } .splash .landing-btn {