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
26 changes: 26 additions & 0 deletions website/www/site/assets/icons/extensive-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 29 additions & 0 deletions website/www/site/assets/icons/github-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 31 additions & 0 deletions website/www/site/assets/icons/open-source-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 27 additions & 0 deletions website/www/site/assets/icons/portable-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 30 additions & 0 deletions website/www/site/assets/icons/twitter-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 26 additions & 0 deletions website/www/site/assets/icons/unified-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 23 additions & 0 deletions website/www/site/assets/icons/youtube-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion website/www/site/assets/scss/_global.sass
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ body

.body
background: #fff
max-width: 1440px
margin: 0 auto
padding-top: 130px

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,30 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

.pillars
margin: $pad-xl 0
text-align: center

.pillars__title
+type-h2
margin-bottom: $pad

.pillars__cols
+type-body
+md
display: flex
justify-content: center

.pillars__cols__col
.pillars__cols__col__title
font-weight: 600
margin-bottom: $pad/2

.pillars__cols__col__body
max-width: 350px
margin: 0 auto $pad-sm

+md
padding: 0 $pad
margin: 0 auto

$mobile: 640px;
$tablet: 1280px;
$fullhd: 1920px;
151 changes: 151 additions & 0 deletions website/www/site/assets/scss/_pillars.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,151 @@
/*!
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

@import "media";

.pillars {
padding: $pad-l $pad;

.pillars-title {
@extend .component-title;

text-align: center;
border: none;
}

.pillars-content {
display: grid;
grid-template-columns: 443px 443px;
grid-gap: 50px 89px;
justify-content: center;
margin-top: 84px;

.pillars-item {
display: flex;
align-items: center;

.pillars-item-icon {
margin-right: 47px;
}

.pillars-item-description {
width: 100%;
max-width: 284px;

.pillars-item-header {
@extend .component-header;
}

.pillars-item-text {
@extend .component-text;
}
}
}
}

.pillars-social {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
margin-top: 117px;

.pillars-social-icons {
display: flex;
align-items: center;
margin-bottom: 45px;

svg {
height: 41px;
width: auto;
}

#about-twitter-icon {
height: 45px;
}

a {
filter: grayscale(100%);
opacity: 0.7;

&:hover {
filter: grayscale(0);
opacity: 1;
}
}

.pillars-youtube-icon {
margin: 0 80px;
}
}

.pillars-social-text {
@extend .component-text;
max-width: 285px;
}
}
}

@media (max-width: $tablet) {
.pillars {
padding: $pad-md $pad-s;

.pillars-content {
grid-template-columns: 330px;
grid-column-gap: 47px;
margin-top: 62px;

.pillars-item {
align-items: flex-start;

.pillars-item-icon {
margin-right: 17px;
margin-top: 12px;
}

svg {
width: 64px;
height: 64px;
}
}
}

.pillars-social {
margin-top: 91px;

.pillars-social-icons {
svg {
height: 34px;
width: auto;
}

#about-twitter-icon {
height: 37px;
}

a {
filter: none;
opacity: 1;
}

.pillars-youtube-icon {
margin: 0 60px;
}
}
}
}
}
Loading