Skip to content
Merged
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
1 change: 1 addition & 0 deletions 404.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
title: 404 — Page not found
body_class: notfound landing
add_css: page404.css
toc: false
---

<div class="wrap pagetitle">
Expand Down
1 change: 1 addition & 0 deletions _sass/abstracts/_mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@
&.transparent{
border: 1px solid var(--interactive-button-black-border-color, #1A1A1A);
backdrop-filter: blur(5px);
color: var(--interactive-button-black-border-color, #999);
&:hover{
border: 1px solid var(--interactive-button-black-border-color, #1A1A1A);
background: var(--interactive-button-black-border-color-hover, #1A1A1A);
Expand Down
16 changes: 13 additions & 3 deletions _sass/abstracts/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,7 @@ $docuh5: 18px;
--lake-ribbon-border-color: var(--blue-transparent-80);
--main-background-gradient-100: #fff1004d;
--main-background-lines: #f9ed4d;
--main-benefit-icon-color: var(--yellow-30);
--main-blogpost-background-color: var(--grey-100);
--main-blogpost-border-color: var(--grey-90);
--main-blogpost-border-color-blue: var(--blue-90);
Expand All @@ -313,8 +314,8 @@ $docuh5: 18px;
--main-body-background-color-0: #fafafa00;
--main-body-background-gradient: #fafafa00;
--main-checkmark: #00b132;
--main-codebox-border-color: #0d0d0d26;
--main-codebox-dropshadow: #0000000d;
--main-codebox-border-color: #0d0d0d14;
--main-codebox-dropshadow: #0000000a;
--main-codebox-main-background-color: var(--grey-transparent-98);
--main-codebox-sub-background-color: #0d0d0d14;
--main-highlight-orange-background: var(--grey-10);
Expand All @@ -338,6 +339,7 @@ $docuh5: 18px;
--main-labs-illustration-1: var(--orange-90);
--main-labs-illustration-2: var(--grey-transparent-95);
--main-labs-illustration-3: var(--orange-70);
--main-landing-icon-background: var(--yellow-55);
--main-marker-background-color: var(--yellow-transparent-60);
--main-marker-border-color: var(--yellow-50);
--main-number-box-background: #efefef;
Expand All @@ -349,7 +351,7 @@ $docuh5: 18px;
--main-quaternary-color-labs: var(--orange-90);
--main-ribbon-background-color-blue: var(--blue-transparent-80);
--main-ribbon-background-color-purple: var(--purple-transparent-80);
--main-ribbon-background-color-yellow: var(--yellow-transparent-80);
--main-ribbon-background-color-yellow: #f1e65e99;
--main-ribbon-border-color-blue: var(--blue-transparent-80);
--main-ribbon-border-color-purple: var(--purple-transparent-80);
--main-ribbon-border-color-yellow: var(--yellow-transparent-80);
Expand All @@ -363,6 +365,7 @@ $docuh5: 18px;
--main-text-primary-color-strong: var(--grey-02);
--main-text-secondary-color: var(--grey-40);
--main-text-tertiary-color: var(--grey-70);
--main-text-tertiary-yellow: var(--yellow-30);
--menu-dropdown-background-color: var(--grey-95);
--menu-dropdown-border-color: var(--grey-90);
--menu-dropdown-item-background-hover: var(--grey-90);
Expand All @@ -375,6 +378,8 @@ $docuh5: 18px;
--menu-topmenu-text-color: var(--grey-10);
--menu-topmenu-text-color-hover: var(--purple-60);
--no-export-labs: var(--grey-transparent-95);
--no-export-support-tier-background: var(--purple-95);
--no-export-support-tier-border: var(--purple-90);
--no-export-terminal-background: #ffffff;
--social-shape-gradient-end-color: var(--yellow-40);
--social-shape-gradient-start-color: var(--yellow-45);
Expand Down Expand Up @@ -496,6 +501,7 @@ html.darkmode {
--lake-ribbon-border-color: var(--blue-transparent-30);
--main-background-gradient-100: #9e95004d;
--main-background-lines: #454100;
--main-benefit-icon-color: var(--yellow-30);
--main-blogpost-background-color: var(--grey-02);
--main-blogpost-border-color: var(--grey-20);
--main-blogpost-border-color-blue: var(--blue-20);
Expand Down Expand Up @@ -530,6 +536,7 @@ html.darkmode {
--main-labs-illustration-1: var(--orange-transparent-20);
--main-labs-illustration-2: var(--grey-transparent-10);
--main-labs-illustration-3: var(--orange-30);
--main-landing-icon-background: var(--yellow-10);
--main-marker-background-color: var(--yellow-transparent-30);
--main-marker-border-color: var(--yellow-transparent-40);
--main-number-box-background: var(--yellow-05);
Expand All @@ -555,6 +562,7 @@ html.darkmode {
--main-text-primary-color-strong: var(--grey-100);
--main-text-secondary-color: var(--grey-70);
--main-text-tertiary-color: var(--grey-50);
--main-text-tertiary-yellow: var(--yellow-30);
--menu-dropdown-background-color: var(--grey-05);
--menu-dropdown-border-color: var(--grey-20);
--menu-dropdown-item-background-hover: var(--grey-15);
Expand All @@ -567,6 +575,8 @@ html.darkmode {
--menu-topmenu-text-color: var(--grey-98);
--menu-topmenu-text-color-hover: var(--yellow-50);
--no-export-labs: var(--grey-transparent-15);
--no-export-support-tier-background: #302e3f;
--no-export-support-tier-border: #3d385e;
--no-export-terminal-background: #000000;
--social-shape-gradient-end-color: var(--grey-30);
--social-shape-gradient-start-color: var(--grey-15);
Expand Down
42 changes: 42 additions & 0 deletions _sass/components/_card_grid.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
/** Card Grid Component
*
* Usage:
* --card-columns: number of cards per row (default: 3)
* --card-aspect-ratio: aspect ratio of image area (default: 4/3)
* --card-content-padding: padding of content area (default: 32px 36px 36px 36px)
*/

.card-grid{
display: grid;
grid-template-columns: repeat(var(--card-columns, 3), 1fr);
gap: 16px;

.card{
border-radius: 15px;
border: 1px solid var(--main-infobox-labs-border-color, rgba(51, 51, 51, 0.60));
overflow: hidden;

.card-image{
aspect-ratio: var(--card-aspect-ratio, 4/3);
overflow: hidden;
img{
width: 100%;
height: 100%;
object-fit: cover;
object-position: center center;
}
}
.card-content{
padding: var(--card-content-padding, 32px 36px 36px 36px);
h3{
margin: 0 0 24px 0;
font-size: var(--type-headline-3, 24px);
}
p{
margin: 0;
color: var(--main-text-secondary-color, #B2B2B2);
font-size: var(--type-body, 16px);
}
}
}
}
60 changes: 60 additions & 0 deletions _sass/components/_icon_grid.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
/** Icon Grid Component
*
* Usage:
* --icon-grid-columns: number of columns (default: 3)
*
* Optional: wrap the icon in .icon-box for a bordered container
* Optional: add a .textbutton link after the <p> for a "Read more" style link
*/

.icon-grid{
display: grid;
grid-template-columns: repeat(var(--icon-grid-columns, 3), 1fr);
gap: 50px 16px;

.icon-grid-item{
padding-right: 20px;

.icon{
display: block;
width: 36px;
height: 36px;
margin-bottom: 16px;
color: var(--orange-50);
stroke-width: 1.5;
flex-shrink: 0;
}

/* Optional bordered icon box */
.icon-box{
display: inline-flex;
align-items: center;
justify-content: center;
width: 68px;
height: 68px;
border-radius: 10px;
border: 1px solid var(--doc-codebox-border-color, #e6e6e6);
background: var(--doc-codebox-background-color, #f2f2f2);
margin-bottom: 17px;

.icon{
margin-bottom: 0;
}
}

h3{
margin: 0 0 8px 0;
font-size: var(--type-title-2, 16px);
font-weight: 600;
}
p{
margin: 0;
font-size: var(--type-body-small, 14px);
color: var(--main-text-secondary-color, #B2B2B2);
}
a.textbutton{
margin-top: 12px;
display: inline-block;
}
}
}
2 changes: 1 addition & 1 deletion _sass/layout/_footer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ footer{
z-index: 100;
.footercontent{
@include body-small;
max-width: 1150px;
max-width: 1180px;
margin: 0 auto;
padding: 60px 15px 20px 15px;
//padding-bottom: 45px;
Expand Down
2 changes: 1 addition & 1 deletion _sass/layout/_header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ body.blog header .headerline .headercontent .landingmenu nav .search_icon {

/* Site-wide Banner */
.banner {
@include body-standard;
@include body-small;
position: relative;
width: 100%;
text-align: center;
Expand Down
1 change: 1 addition & 0 deletions _sass/pages/_blog.scss
Original file line number Diff line number Diff line change
Expand Up @@ -507,6 +507,7 @@ h5 a {
.video-container{
margin: 30px 0;
position: relative;
width: 100%;
padding-bottom: 56.25%;
padding-top: 0;
height: 0;
Expand Down
39 changes: 39 additions & 0 deletions _sass/pages/_duckdb.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,45 @@ body.design{
gap: 8px;
}

.syntax-highlight-table{
width: 100%;
max-width: 100%;
display: block;
overflow-x: auto;
border-collapse: collapse;
font-variant-numeric: tabular-nums;

thead th{
padding: 10px;
font-weight: 700;
font-size: 14px;
text-align: left;
border-bottom: 1px solid var(--doc-codebox-border-color, #E6E6E6);
white-space: nowrap;
}

td{
padding: 10px;
font-size: 14px;
line-height: 1.55;
border-bottom: 1px solid var(--doc-codebox-border-color, #E6E6E6);
vertical-align: middle;
}

td:nth-child(3),
td:nth-child(6){
font-family: $fontMono;
}

.color-dot{
width: 20px;
height: 20px;
border-radius: 50%;
display: inline-block;
vertical-align: middle;
}
}

.color-card{
width: 169px;
line-height: 1.37;
Expand Down
Loading