Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion themes/default/layouts/partials/docs-top-nav.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</ul>
</div>
<div class="get-started">
<a class="get-started-header-button" data-track="get-started-practitioner-nav" href="/docs/get-started/">Get Started</a>
<a class="btn btn-primary" data-track="get-started-practitioner-nav" href="https://app.pulumi.com/signup">Get Started</a>
</div>
</div>
<div class="nav-items">
Expand Down
6 changes: 3 additions & 3 deletions themes/default/theme/src/scss/_buttons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
@include transition;

@apply cursor-pointer text-sm whitespace-nowrap py-2 px-3 rounded inline-block;
@apply bg-blue-600 border-2 border-blue-600 text-white text-center;
@apply bg-violet-600 border-2 border-violet-600 text-white text-center;

&:hover {
@apply bg-blue-500 border-blue-500 text-white;
@apply bg-violet-500 border-violet-500 text-white;
}

&:active {
@apply bg-blue-500;
@apply bg-violet-500;
}
}

Expand Down
2 changes: 1 addition & 1 deletion themes/default/theme/src/scss/_colors.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ $brand: (
"fuchsia": #bd4c85,
"fuchsia-darker": #be5188,
"purple": #8a3391,
"violet": #805ac3,
"violet": #5a30c5,
"blue-lighter": #7682f4,
"blue": #4d5bd9,
"blue-darker": #4552c3,
Expand Down
4 changes: 2 additions & 2 deletions themes/default/theme/src/scss/_header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@

&:hover,
&:active {
background: linear-gradient(90deg, #be5188 0%, #805ac3 100%) border-box;
background: linear-gradient(90deg, #be5188 0%, #5a30c5 100%) border-box;
border-color: transparent;
border-radius: 20px;
}
Expand Down Expand Up @@ -506,7 +506,7 @@

&:hover,
&:active {
background: linear-gradient(90deg, #be5188 0%, #805ac3 100%) border-box;
background: linear-gradient(90deg, #be5188 0%, #5a30c5 100%) border-box;
color: $white;
box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px rgba(0, 0, 0, 0.14), 0px 1px 5px rgba(0, 0, 0, 0.12);
border-color: transparent;
Expand Down
2 changes: 1 addition & 1 deletion themes/default/theme/src/scss/_theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
--color-violet-300: #ccbde7;
--color-violet-400: #b39cdb;
--color-violet-500: #997bcf;
--color-violet-600: #805ac3;
--color-violet-600: #5a30c5;
--color-violet-700: #66489c;
--color-violet-800: #4d3675;
--color-violet-900: #33244e;
Expand Down
2 changes: 1 addition & 1 deletion themes/default/theme/src/scss/docs/_docs-main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -762,7 +762,7 @@ body.section-registry {
font-weight: 700;

&::before {
background-color: #805ac3;
background-color: #5a30c5;
border-radius: 50%;
width: 10px;
height: 10px;
Expand Down
23 changes: 0 additions & 23 deletions themes/default/theme/src/scss/docs/_docs-top-nav.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,6 @@ nav.actually-docs {
align-items: center;
gap: 18px;

div.get-started a.get-started-header-button {
margin-left: 0;
}

@media (min-width: 640px){
gap: 36px;
}
Expand All @@ -49,25 +45,6 @@ nav.actually-docs {
}
}

div.get-started {
a.get-started-header-button {
width: auto;
height: auto;
display: flex;
box-shadow: none;
color: #fff;
padding: 8px 16px;
border: 1px solid #805ac3;
border-radius: 20px;
background: linear-gradient(90deg,#be5188,#805ac3) border-box;

&:hover {
color: #131314;
background: transparent;
}
}
}

ul.logo-nav-menu {
position: absolute;
top: 46px;
Expand Down
2 changes: 1 addition & 1 deletion themes/default/theme/src/scss/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ $sitenav-offset: calc($sitenav-height + 16px);
@utility btn {
transition: all 120ms linear;
@apply cursor-pointer text-sm whitespace-nowrap py-2 px-3 rounded inline-block;
@apply bg-blue-600 border border-blue-600 text-white text-center;
@apply bg-violet-600 border border-violet-600 text-white text-center;
}

@utility btn-lg {
Expand Down
2 changes: 1 addition & 1 deletion themes/default/theme/src/scss/marketing/_pulumi-up.scss
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ body.section-pulumi-up {
}

.btn-primary:hover {
background:linear-gradient(90deg, #be5188 0%, #805ac3 100%)
background:linear-gradient(90deg, #be5188 0%, #5a30c5 100%)
}

}
Expand Down
Loading