827e6e0dc0
These are some more changes that came up when Pablo and I were reviewing the previous docs PR. In no particular order: - Fix "related posts" on the blog section, and hide the section if there are none. - Minor style changes to several pages (guided by various style guides). - Redirect the root of get.pinniped.dev to our main page (shouldn't really be hit, but it's nice to do something). - Add more mobile-friendly CSS for our docs. - Reword the "getting started" CTA, and hide it on the docs pages (you're already there). - Fix the "Learn how Pinniped provides identity services to Kubernetes" link on the landing page. - Add a date to our blog post cards. - Rewrite the hero text on the landing page. - Fix the docs link for the "Get Started with Pinniped" button on the landing page. - Rework the landing page grid text. - Add Margo and Nanci to the team section and sort it alphabetically. Signed-off-by: Matt Moyer <moyerm@vmware.com>
535 lines
12 KiB
SCSS
535 lines
12 KiB
SCSS
@import 'variables';
|
|
@import 'mixins';
|
|
|
|
/* Homepage Hero */
|
|
.hero {
|
|
background-color: $mainblue;
|
|
color: $white;
|
|
.text-block {
|
|
max-width: 550px;
|
|
padding: 0px 0px 10px 0px;
|
|
p {
|
|
margin-bottom: 20px;
|
|
font-size: 18px;
|
|
color: $white;
|
|
}
|
|
}
|
|
h2 {
|
|
font-size: 36px;
|
|
}
|
|
&.homepage {
|
|
background-image: url(/img/hero-image.png);
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
padding-bottom: 80px;
|
|
}
|
|
@include breakpoint(small) {
|
|
.text-block {
|
|
max-width: unset;
|
|
margin-right: 0px;
|
|
}
|
|
.button {
|
|
display: block;
|
|
text-align: center;
|
|
}
|
|
&.homepage {
|
|
background-image: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.grid-container {
|
|
margin-top: -80px;
|
|
.grid.three {
|
|
padding-bottom: 20px;
|
|
.card {
|
|
position: relative;
|
|
padding: 30px 20px;
|
|
background-color: $white;
|
|
text-align: center;
|
|
box-shadow: 0px 2px 10px rgba(0,0,0,0.2);
|
|
h3 {
|
|
color: $darkgrey;
|
|
font-size: 22px;
|
|
}
|
|
p {
|
|
color: $grey;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.introduction {
|
|
.grid.two {
|
|
column-gap: 140px;
|
|
padding: 35px 20px;
|
|
p {
|
|
margin: 0px;
|
|
font-size: 16px;
|
|
&.strong {
|
|
color: $darkgrey;
|
|
}
|
|
}
|
|
}
|
|
@include breakpoint(small) {
|
|
padding: 0px 20px;
|
|
.col:first-of-type {
|
|
padding-bottom: 50px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.use-cases {
|
|
.grid {
|
|
grid-template-columns: 220px 1fr;
|
|
margin-bottom: 30px;
|
|
grid-template-areas:
|
|
"image text";
|
|
.image {
|
|
background-color: $mainblue;
|
|
text-align: center;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
grid-area: image;
|
|
img {
|
|
justify-self: center;
|
|
}
|
|
}
|
|
.text {
|
|
border: 1px solid $lightgrey;
|
|
padding: 30px;
|
|
grid-area: text;
|
|
a.button {
|
|
display: block;
|
|
max-width: 138px;
|
|
text-align: center;
|
|
padding: 5px 10px;
|
|
min-width: unset;
|
|
}
|
|
}
|
|
&.image-right {
|
|
grid-template-columns: 1fr 220px;
|
|
grid-template-areas:
|
|
"text image";
|
|
@include breakpoint(small) {
|
|
grid-template-columns: 1fr;
|
|
grid-template-areas:
|
|
"image"
|
|
"text";
|
|
}
|
|
}
|
|
@include breakpoint(small) {
|
|
grid-template-columns: 1fr;
|
|
grid-template-rows: minmax(160px, 1fr);
|
|
grid-template-areas:
|
|
"image"
|
|
"text";
|
|
}
|
|
}
|
|
h2 {
|
|
color: $black;
|
|
}
|
|
p.strong {
|
|
color: #1B3951;
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
|
|
.team {
|
|
background-color: $navyblue;
|
|
h2, h3, p {
|
|
color: $white;
|
|
}
|
|
p {
|
|
font-size: 16px;
|
|
}
|
|
a {
|
|
color: $white;
|
|
font-weight: 300;
|
|
text-decoration: underline;
|
|
}
|
|
.grid.three {
|
|
row-gap: 40px;
|
|
margin: 40px 0px;
|
|
}
|
|
.bio {
|
|
display: grid;
|
|
grid-template-columns: 120px 1fr;
|
|
column-gap: 20px;
|
|
.info {
|
|
align-self: center;
|
|
p {
|
|
margin: 0px;
|
|
&.name {
|
|
font-size: 16px;
|
|
font-family: $metropolis-medium;
|
|
}
|
|
&.position {
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.hero.subpage {
|
|
background-image: url(/img/blog-hero-image.png);
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
padding-bottom: 140px;
|
|
}
|
|
|
|
.experimental {
|
|
.grid.three .col {
|
|
padding: 0px;
|
|
}
|
|
.icon {
|
|
background-color: $mainblue;
|
|
padding: 25px;
|
|
min-height: 95px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.content {
|
|
padding: 25px;
|
|
.example {
|
|
background-color: $lightgrey;
|
|
}
|
|
}
|
|
}
|
|
|
|
.blog {
|
|
padding-bottom: 50px;
|
|
.col {
|
|
border: 1px solid $lightgrey;
|
|
img {
|
|
width: 100%;
|
|
}
|
|
.content {
|
|
padding: 0px 20px;
|
|
}
|
|
}
|
|
&.landing {
|
|
background-color: #fff;
|
|
margin-top: -90px;
|
|
h3 a {
|
|
font-size: 16px;
|
|
}
|
|
.pagination {
|
|
margin: 30px auto 50px auto;
|
|
ul {
|
|
padding: 0px;
|
|
text-align: center;
|
|
li {
|
|
padding: 0px;
|
|
a {
|
|
padding: 5px 10px;
|
|
&.active {
|
|
background-color: $lightgrey;
|
|
border-radius: 50%;
|
|
}
|
|
}
|
|
&.left-arrow {
|
|
margin-right: 15px;
|
|
}
|
|
&.right-arrow {
|
|
margin-left: 15px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.blog-post {
|
|
background-color: #fff;
|
|
margin: -110px 0px 0px -30px;
|
|
padding: 30px 90px 30px 30px;
|
|
.author {
|
|
color: $blue;
|
|
margin: 0px;
|
|
}
|
|
.date {
|
|
color: $black;
|
|
margin: 0px;
|
|
font-weight: 600;
|
|
}
|
|
.header, h4 {
|
|
color: $black;
|
|
font-weight: 600;
|
|
}
|
|
a {
|
|
font-size: 16px;
|
|
}
|
|
ul {
|
|
list-style-type: disc;
|
|
padding-left: 20px;
|
|
li:first-child {
|
|
margin-top: 10px;
|
|
}
|
|
li {
|
|
list-style-type: unset;
|
|
display: list-item;
|
|
margin-bottom: 10px;
|
|
font-size: 16px;
|
|
color: $darkgrey;
|
|
list-style-image: url(/img/arrow.svg);
|
|
}
|
|
}
|
|
ol {
|
|
li:first-child {
|
|
margin-top: 10px;
|
|
}
|
|
li {
|
|
list-style-type: decimal;
|
|
display: list-item;
|
|
margin-bottom: 10px;
|
|
font-size: 16px;
|
|
color: $darkgrey;
|
|
}
|
|
}
|
|
code {
|
|
background-color: $white;
|
|
color: $darkgrey;
|
|
border: 2px solid #EFEFEF;
|
|
padding: 2px 8px;
|
|
.c1 {
|
|
color: $blue;
|
|
font-style: italic;
|
|
}
|
|
.se {
|
|
color: #ff0000;
|
|
}
|
|
}
|
|
pre {
|
|
white-space: pre-wrap;
|
|
white-space: -moz-pre-wrap;
|
|
white-space: -pre-wrap;
|
|
white-space: -o-pre-wrap;
|
|
word-wrap: break-word;
|
|
code {
|
|
display: block;
|
|
border: 15px solid #EFEFEF;
|
|
padding: 15px;
|
|
margin-bottom: 30px;
|
|
}
|
|
}
|
|
img {
|
|
max-width: 100%;
|
|
}
|
|
strong {
|
|
font-family: $metropolis-medium;
|
|
}
|
|
}
|
|
}
|
|
|
|
.getting-started {
|
|
background-color: $lightgrey;
|
|
color: $black;
|
|
p {
|
|
color: $black;
|
|
font-size: 16px;
|
|
}
|
|
.left-side {
|
|
width: 50%;
|
|
float: left;
|
|
}
|
|
.right-side {
|
|
width: 25%;
|
|
float: right;
|
|
}
|
|
h2 {
|
|
font-size: 30px;
|
|
margin-bottom: 0px;
|
|
}
|
|
a {
|
|
display: block;
|
|
max-width: 138px;
|
|
text-align: center;
|
|
padding: 10px;
|
|
min-width: unset;
|
|
}
|
|
.button {
|
|
margin-top: 50px;
|
|
border: 1px solid $blue;
|
|
}
|
|
@include breakpoint(small) {
|
|
.wrapper {
|
|
padding-bottom: 40px;
|
|
}
|
|
.left-side {
|
|
width: 100%;
|
|
float: none;
|
|
}
|
|
.right-side {
|
|
width: 100%;
|
|
float: none;
|
|
}
|
|
.button {
|
|
display: block;
|
|
text-align: center;
|
|
max-width: unset;
|
|
margin-top: 20px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.community {
|
|
background-color: #fff;
|
|
margin-top: -90px;
|
|
padding: 30px 30px 50px 30px;
|
|
.grid {
|
|
.col {
|
|
border: 1px solid #F2F2F2;
|
|
.icon {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 140px;
|
|
}
|
|
.content {
|
|
padding: 0px 20px 20px 20px;
|
|
text-align: center;
|
|
h3 {
|
|
margin-top: 0px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.docs {
|
|
background-color: #fff;
|
|
margin-top: -90px;
|
|
padding: 30px 30px 50px 30px;
|
|
.side-nav {
|
|
width: 25%;
|
|
float: left;
|
|
@include breakpoint(small-medium) {
|
|
width: 100%;
|
|
float: none;
|
|
}
|
|
|
|
ul {
|
|
padding-left: 0px;
|
|
margin-bottom: 35px;
|
|
ul {
|
|
padding-left: 15px;
|
|
margin-top: 10px;
|
|
margin-bottom: 15px;
|
|
}
|
|
li {
|
|
display: list-item;
|
|
margin-bottom: 15px;
|
|
a {
|
|
color: $grey;
|
|
font-size: 14px;
|
|
&.active {
|
|
color: $blue;
|
|
}
|
|
}
|
|
&.heading {
|
|
color: $black;
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.docs-content {
|
|
width: 75%;
|
|
float: right;
|
|
@include breakpoint(small-medium) {
|
|
width: 100%;
|
|
float: none;
|
|
}
|
|
a {
|
|
font-size: 16px;
|
|
}
|
|
ul {
|
|
list-style-type: disc;
|
|
padding-left: 20px;
|
|
li:first-child {
|
|
margin-top: 10px;
|
|
}
|
|
li {
|
|
list-style-type: unset;
|
|
display: list-item;
|
|
margin-bottom: 10px;
|
|
font-size: 16px;
|
|
color: $darkgrey;
|
|
line-height: 1.6em;
|
|
list-style-image: url(/img/arrow.svg);
|
|
}
|
|
}
|
|
ol {
|
|
li:first-child {
|
|
margin-top: 10px;
|
|
}
|
|
li {
|
|
list-style-type: decimal;
|
|
display: list-item;
|
|
margin-bottom: 10px;
|
|
font-size: 16px;
|
|
color: $darkgrey;
|
|
}
|
|
}
|
|
code {
|
|
background-color: $white;
|
|
color: $darkgrey;
|
|
border: 2px solid #EFEFEF;
|
|
padding: 2px 8px;
|
|
.c1 {
|
|
color: $blue;
|
|
font-style: italic;
|
|
}
|
|
.se {
|
|
color: #ff0000;
|
|
}
|
|
}
|
|
pre {
|
|
white-space: pre-wrap;
|
|
white-space: -moz-pre-wrap;
|
|
white-space: -pre-wrap;
|
|
white-space: -o-pre-wrap;
|
|
word-wrap: break-word;
|
|
code {
|
|
display: block;
|
|
border: 15px solid #EFEFEF;
|
|
padding: 15px;
|
|
margin-bottom: 30px;
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
img {
|
|
max-width: 100%;
|
|
}
|
|
strong {
|
|
font-family: $metropolis-medium;
|
|
}
|
|
}
|
|
.danger {
|
|
.danger-icon {
|
|
float: left;
|
|
padding: 40px;
|
|
width: 24px;
|
|
height: 24px;
|
|
}
|
|
padding: 10px;
|
|
font-family: $metropolis-light-italic;
|
|
}
|
|
|
|
.button {
|
|
white-space: nowrap;
|
|
a {
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
|
|
table {
|
|
td {
|
|
padding: 10px 30px;
|
|
}
|
|
}
|
|
} |