2017-02-28 01:45:25 +01:00
|
|
|
html {
|
|
|
|
width: 100vw;
|
|
|
|
overflow-x: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
margin: 0;
|
2018-09-27 21:57:07 +02:00
|
|
|
background-color: hsl(0, 0%, 100%);
|
2017-06-21 08:57:47 +02:00
|
|
|
color: hsl(0, 0%, 27%);
|
2017-02-28 01:45:25 +01:00
|
|
|
line-height: normal;
|
|
|
|
|
|
|
|
max-width: 100vw;
|
|
|
|
}
|
|
|
|
|
2017-06-08 21:25:19 +02:00
|
|
|
/* -- generic styles -- */
|
|
|
|
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3 {
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 10px 0;
|
2017-06-08 21:25:19 +02:00
|
|
|
|
|
|
|
font-weight: 300;
|
|
|
|
line-height: 1.2;
|
|
|
|
}
|
|
|
|
|
2020-05-24 22:58:55 +02:00
|
|
|
h1 {
|
|
|
|
font-size: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-size: 1.8em;
|
|
|
|
}
|
|
|
|
|
2017-06-08 21:25:19 +02:00
|
|
|
p {
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 10px 0;
|
2017-06-08 21:25:19 +02:00
|
|
|
font-weight: normal;
|
|
|
|
line-height: 1.5;
|
|
|
|
}
|
|
|
|
|
2017-10-26 01:26:36 +02:00
|
|
|
ul {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
2020-05-24 22:46:51 +02:00
|
|
|
a {
|
|
|
|
position: relative;
|
|
|
|
cursor: pointer;
|
2020-05-24 22:56:55 +02:00
|
|
|
color: hsl(170, 47%, 33%);
|
2020-05-24 22:46:51 +02:00
|
|
|
|
2020-05-24 22:56:55 +02:00
|
|
|
&:hover,
|
|
|
|
&:visited {
|
|
|
|
color: hsl(170, 47%, 33%);
|
|
|
|
}
|
2020-05-24 22:46:51 +02:00
|
|
|
|
2020-05-24 22:56:55 +02:00
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
2020-05-24 22:53:05 +02:00
|
|
|
}
|
2017-06-08 21:25:19 +02:00
|
|
|
|
2020-05-24 22:56:55 +02:00
|
|
|
&.arrow {
|
|
|
|
&::after {
|
|
|
|
content: " ";
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
height: 17px;
|
|
|
|
width: 17px;
|
|
|
|
top: 3px;
|
2020-08-13 00:27:39 +02:00
|
|
|
background-image: url(../../images/landing-page/arrow.png);
|
2020-05-24 22:56:55 +02:00
|
|
|
background-size: 100%;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.silver {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2020-05-24 22:46:51 +02:00
|
|
|
}
|
|
|
|
|
2019-03-03 16:59:03 +01:00
|
|
|
span a:hover,
|
2017-10-26 20:13:11 +02:00
|
|
|
p a:hover,
|
|
|
|
ul a:hover,
|
|
|
|
ol a:hover {
|
2017-08-30 20:58:31 +02:00
|
|
|
text-decoration: underline;
|
2017-06-08 21:25:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.flex {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2020-05-24 23:02:25 +02:00
|
|
|
.float {
|
|
|
|
&.left {
|
|
|
|
float: left;
|
|
|
|
}
|
2017-06-08 21:25:19 +02:00
|
|
|
|
2020-05-24 23:02:25 +02:00
|
|
|
&.right {
|
|
|
|
float: right;
|
|
|
|
}
|
2017-06-08 21:25:19 +02:00
|
|
|
|
2020-05-24 23:02:25 +02:00
|
|
|
&.clear {
|
|
|
|
clear: both;
|
|
|
|
}
|
2017-06-08 21:25:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.small {
|
|
|
|
font-size: 0.8em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.box-shadow {
|
2020-08-06 02:42:07 +02:00
|
|
|
box-shadow: 0 0 80px hsla(0, 0%, 0%, 0.12);
|
2017-06-08 21:25:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.grey {
|
|
|
|
color: hsl(0, 0%, 60%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.dark-grey {
|
|
|
|
color: hsl(0, 0%, 40%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.bold {
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
.padded-content {
|
|
|
|
padding: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.clear-float {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
2017-02-28 01:45:25 +01:00
|
|
|
*::selection {
|
2017-06-21 08:57:47 +02:00
|
|
|
background-color: hsla(31, 84%, 60%, 0.3);
|
2017-02-28 01:45:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.center {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* -- component styling -- */
|
2019-06-17 06:01:45 +02:00
|
|
|
.button,
|
2017-02-28 01:45:25 +01:00
|
|
|
button {
|
|
|
|
padding: 5px 12px;
|
|
|
|
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: 0.7em;
|
2018-09-27 21:57:07 +02:00
|
|
|
background-color: hsl(0, 0%, 100%);
|
2017-06-21 08:57:47 +02:00
|
|
|
color: hsl(0, 0%, 27%);
|
2017-02-28 01:45:25 +01:00
|
|
|
|
2019-06-17 06:01:45 +02:00
|
|
|
line-height: 20px;
|
2017-02-28 01:45:25 +01:00
|
|
|
border-radius: 4px;
|
2017-06-21 08:57:47 +02:00
|
|
|
border: 1px solid hsl(0, 0%, 80%);
|
2017-02-28 01:45:25 +01:00
|
|
|
outline: none;
|
2018-08-15 18:05:07 +02:00
|
|
|
|
2019-06-17 06:01:45 +02:00
|
|
|
&:active {
|
|
|
|
background-color: hsl(0, 0%, 98%);
|
|
|
|
border-color: hsl(0, 0%, 73%);
|
|
|
|
}
|
|
|
|
|
2019-06-19 11:12:14 +02:00
|
|
|
&.green {
|
|
|
|
color: hsl(0, 0%, 100%);
|
|
|
|
background-color: hsl(170, 47%, 53%);
|
2019-06-17 06:01:45 +02:00
|
|
|
border-color: hsl(169, 45%, 43%);
|
2019-06-19 11:12:14 +02:00
|
|
|
|
|
|
|
&:hover {
|
2019-06-17 06:01:45 +02:00
|
|
|
background-color: hsl(170, 47%, 58%);
|
2019-06-19 11:12:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
2019-06-17 06:01:45 +02:00
|
|
|
background-color: hsl(170, 47%, 48%);
|
2019-06-19 11:12:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-24 22:55:05 +01:00
|
|
|
&.black-current-value {
|
2019-06-19 11:12:14 +02:00
|
|
|
color: hsl(0, 0%, 20%);
|
|
|
|
background-color: transparent;
|
2019-06-17 06:01:45 +02:00
|
|
|
border-color: hsl(0, 0%, 53%);
|
2019-06-19 11:12:14 +02:00
|
|
|
}
|
2019-06-18 06:31:01 +02:00
|
|
|
}
|
|
|
|
|
2020-05-24 23:30:13 +02:00
|
|
|
.silver {
|
|
|
|
color: hsl(0, 0%, 100%) !important;
|
|
|
|
opacity: 0.8;
|
|
|
|
|
2020-05-24 23:31:19 +02:00
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2020-05-24 23:30:13 +02:00
|
|
|
|
2020-05-24 23:31:19 +02:00
|
|
|
&.bold {
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
2020-05-24 23:30:13 +02:00
|
|
|
}
|
|
|
|
|
2017-02-28 01:45:25 +01:00
|
|
|
/* -- navbar styling -- */
|
|
|
|
|
|
|
|
nav {
|
2017-06-08 21:25:19 +02:00
|
|
|
width: calc(100% - 80px);
|
|
|
|
position: absolute;
|
2018-09-27 21:57:07 +02:00
|
|
|
color: hsl(0, 0%, 100%);
|
2017-02-28 01:45:25 +01:00
|
|
|
|
2017-06-08 21:25:19 +02:00
|
|
|
padding: 40px;
|
2017-07-19 19:41:23 +02:00
|
|
|
|
|
|
|
z-index: 4;
|
2017-02-28 01:45:25 +01:00
|
|
|
|
2020-05-27 00:43:36 +02:00
|
|
|
.brand.logo {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2017-09-01 01:57:03 +02:00
|
|
|
|
2020-05-27 00:43:36 +02:00
|
|
|
&.white {
|
|
|
|
background-color: hsl(0, 0%, 100%);
|
2017-02-28 01:45:25 +01:00
|
|
|
|
2020-05-27 00:43:36 +02:00
|
|
|
li {
|
|
|
|
a,
|
|
|
|
a:hover,
|
|
|
|
a:visited {
|
|
|
|
color: hsl(0, 0%, 27%);
|
|
|
|
}
|
2020-05-26 21:27:41 +02:00
|
|
|
}
|
2017-02-28 01:45:25 +01:00
|
|
|
|
2020-05-27 00:43:36 +02:00
|
|
|
ul {
|
|
|
|
li {
|
|
|
|
&.active {
|
|
|
|
&::after {
|
|
|
|
color: hsl(0, 0%, 27%);
|
|
|
|
}
|
2020-05-26 21:27:41 +02:00
|
|
|
}
|
2020-05-26 21:24:35 +02:00
|
|
|
}
|
|
|
|
}
|
2017-06-08 21:25:19 +02:00
|
|
|
|
2020-05-27 00:43:36 +02:00
|
|
|
.brand.logo {
|
|
|
|
span {
|
|
|
|
color: hsl(0, 0%, 27%);
|
|
|
|
}
|
2020-05-26 21:27:41 +02:00
|
|
|
}
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-05-27 00:43:36 +02:00
|
|
|
.hamburger {
|
|
|
|
fill: hsl(0, 0%, 27%);
|
2020-05-26 21:27:41 +02:00
|
|
|
}
|
2020-05-26 21:19:17 +02:00
|
|
|
}
|
2017-02-28 01:45:25 +01:00
|
|
|
|
2020-05-26 21:27:41 +02:00
|
|
|
.hamburger {
|
2020-05-27 00:43:36 +02:00
|
|
|
display: none;
|
|
|
|
fill: hsl(0, 0%, 100%);
|
|
|
|
cursor: pointer;
|
|
|
|
margin-top: 3px;
|
2020-05-26 21:19:17 +02:00
|
|
|
}
|
2020-05-26 21:17:54 +02:00
|
|
|
|
2020-05-27 00:43:36 +02:00
|
|
|
.content {
|
|
|
|
margin: 0 5px 0 10px;
|
|
|
|
position: relative;
|
|
|
|
z-index: 2;
|
|
|
|
}
|
2017-02-28 01:45:25 +01:00
|
|
|
|
2020-05-27 00:43:36 +02:00
|
|
|
.logo {
|
|
|
|
top: 7px;
|
2017-02-28 01:45:25 +01:00
|
|
|
|
2020-05-27 00:43:36 +02:00
|
|
|
span {
|
|
|
|
position: relative;
|
|
|
|
left: 5px;
|
|
|
|
top: 1px;
|
|
|
|
color: hsl(0, 0%, 100%);
|
|
|
|
font-weight: 600;
|
|
|
|
vertical-align: top;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 1.2rem;
|
|
|
|
letter-spacing: 0.1em;
|
|
|
|
}
|
2020-05-26 21:43:39 +02:00
|
|
|
}
|
2017-02-28 01:45:25 +01:00
|
|
|
|
2020-05-27 00:43:36 +02:00
|
|
|
ul {
|
|
|
|
float: right;
|
|
|
|
list-style-type: none;
|
|
|
|
font-weight: 400;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2017-02-28 01:45:25 +01:00
|
|
|
|
2020-05-27 00:43:36 +02:00
|
|
|
outline: 1000px solid;
|
|
|
|
outline-color: transparent;
|
2018-01-26 19:02:13 +01:00
|
|
|
|
2020-05-27 00:43:36 +02:00
|
|
|
cursor: pointer;
|
|
|
|
transition: outline-color 0.2s ease;
|
2017-02-28 01:45:25 +01:00
|
|
|
|
2020-05-27 00:43:36 +02:00
|
|
|
.exit {
|
|
|
|
display: none;
|
|
|
|
user-select: none;
|
|
|
|
}
|
2017-06-12 22:05:29 +02:00
|
|
|
|
2021-06-23 23:00:05 +02:00
|
|
|
li,
|
|
|
|
div.dropdown-label {
|
2020-05-27 00:43:36 +02:00
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
margin: 10px;
|
2017-02-28 01:45:25 +01:00
|
|
|
|
2020-05-27 00:43:36 +02:00
|
|
|
color: hsl(0, 0%, 100%);
|
2017-02-28 01:45:25 +01:00
|
|
|
|
2020-05-27 00:43:36 +02:00
|
|
|
opacity: 0.7;
|
2017-02-28 01:45:25 +01:00
|
|
|
|
2020-05-27 00:43:36 +02:00
|
|
|
&.active,
|
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2017-02-28 01:45:25 +01:00
|
|
|
|
2020-05-27 00:43:36 +02:00
|
|
|
&.active {
|
|
|
|
&::after {
|
|
|
|
content: "v";
|
|
|
|
position: absolute;
|
|
|
|
bottom: -15px;
|
|
|
|
left: calc(50% - 4px);
|
|
|
|
font-weight: 100;
|
|
|
|
transform: scaleX(2) scaleY(0.5);
|
|
|
|
}
|
2020-05-26 22:02:06 +02:00
|
|
|
}
|
2021-06-23 23:00:05 +02:00
|
|
|
|
|
|
|
i.fa-chevron-down {
|
|
|
|
position: relative;
|
|
|
|
top: -2px;
|
|
|
|
font-size: 0.6em;
|
|
|
|
margin-left: 5px;
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-dropdown {
|
|
|
|
padding-bottom: 3px;
|
|
|
|
ul {
|
|
|
|
width: 300px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (width > 686px) {
|
|
|
|
ul.product-options {
|
|
|
|
width: 125px;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.solutions-options {
|
2021-07-20 20:33:48 +02:00
|
|
|
width: 450px;
|
2021-07-20 20:35:44 +02:00
|
|
|
|
|
|
|
div.dropdown-column {
|
|
|
|
float: left;
|
|
|
|
&:first-of-type {
|
|
|
|
width: 40%;
|
|
|
|
}
|
|
|
|
}
|
2021-06-23 23:00:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ul.resources-options {
|
|
|
|
width: 350px;
|
|
|
|
|
|
|
|
div.dropdown-column {
|
|
|
|
float: left;
|
|
|
|
&:first-of-type {
|
|
|
|
width: 40%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-05-26 21:56:57 +02:00
|
|
|
}
|
2020-05-26 21:53:37 +02:00
|
|
|
}
|
2017-02-28 01:45:25 +01:00
|
|
|
|
2020-05-27 00:43:36 +02:00
|
|
|
li {
|
|
|
|
a,
|
|
|
|
a:hover,
|
|
|
|
a:visited {
|
|
|
|
text-decoration: none;
|
|
|
|
color: hsl(0, 0%, 100%);
|
|
|
|
font-size: 1.05em;
|
|
|
|
}
|
2020-05-26 22:05:01 +02:00
|
|
|
}
|
2020-05-26 21:47:16 +02:00
|
|
|
}
|
|
|
|
|
2017-02-28 01:45:25 +01:00
|
|
|
/* -- main panel styling -- */
|
|
|
|
.main {
|
|
|
|
width: calc(100% - 200px - 20px);
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* -- modify portico.css -- */
|
|
|
|
.app-main {
|
|
|
|
max-width: none;
|
|
|
|
min-width: 0;
|
|
|
|
padding: 0 !important;
|
|
|
|
}
|
|
|
|
|
2017-03-26 22:24:35 +02:00
|
|
|
.header,
|
|
|
|
.portico-os-announcement {
|
2017-02-28 01:45:25 +01:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* -- features page css -- */
|
2020-06-14 16:32:56 +02:00
|
|
|
.portico-landing {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
padding-top: 120px;
|
|
|
|
|
|
|
|
z-index: 1;
|
|
|
|
|
2020-06-14 16:38:14 +02:00
|
|
|
&.show {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2020-06-14 16:32:56 +02:00
|
|
|
}
|
|
|
|
|
2017-07-19 19:41:23 +02:00
|
|
|
.portico-landing.features-app {
|
|
|
|
position: relative;
|
2018-02-14 00:36:15 +01:00
|
|
|
overflow-x: hidden;
|
2020-08-06 02:42:07 +02:00
|
|
|
padding-top: 0;
|
2017-07-19 19:41:23 +02:00
|
|
|
|
|
|
|
z-index: 2;
|
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
section {
|
|
|
|
max-width: 1440px;
|
2020-06-14 20:04:35 +02:00
|
|
|
display: flex;
|
2020-06-15 03:08:08 +02:00
|
|
|
flex: 1 1 auto;
|
|
|
|
flex-flow: row wrap;
|
|
|
|
justify-content: space-around;
|
|
|
|
margin: 40px auto;
|
2020-08-06 02:42:07 +02:00
|
|
|
padding: 0 30px;
|
2020-06-15 03:08:08 +02:00
|
|
|
color: hsl(219, 21%, 21%);
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
&.hero {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
height: 400px;
|
|
|
|
padding: 100px 100px 50px 100px;
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
margin: 0;
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
max-width: none;
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
color: hsl(0, 0%, 100%);
|
2017-02-28 01:45:25 +01:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
background-color: hsla(0, 0%, 0%, 0.1);
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
.copy {
|
|
|
|
max-width: 800px;
|
|
|
|
margin: 0 auto;
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
text-align: center;
|
|
|
|
}
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
h1 {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 3.7em;
|
|
|
|
}
|
2017-02-28 01:45:25 +01:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
h2 {
|
|
|
|
font-size: 1.8em;
|
|
|
|
margin: 30px auto 0 auto;
|
2017-02-28 01:45:25 +01:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
max-width: 600px;
|
|
|
|
line-height: 1.3;
|
2020-06-14 20:04:35 +02:00
|
|
|
}
|
2020-06-14 16:53:27 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
.image {
|
|
|
|
height: 400px;
|
|
|
|
width: 40%;
|
|
|
|
background-color: hsla(0, 0%, 0%, 0.05);
|
2020-06-14 20:04:35 +02:00
|
|
|
}
|
2020-06-14 16:59:43 +02:00
|
|
|
}
|
2017-02-28 01:45:25 +01:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
&.keyboard-shortcuts {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
position: relative;
|
|
|
|
max-width: none;
|
|
|
|
padding: 50px;
|
|
|
|
/* this should only be a thing if the section above is not white */
|
2020-08-06 02:42:07 +02:00
|
|
|
margin-top: 0;
|
2020-06-15 03:08:08 +02:00
|
|
|
background-color: hsl(219, 21%, 21%);
|
|
|
|
color: hsl(219, 76%, 93%);
|
2017-02-28 01:45:25 +01:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
img {
|
|
|
|
&.overflow-wave {
|
|
|
|
width: 685px;
|
2020-08-06 02:42:07 +02:00
|
|
|
right: 0;
|
2020-06-15 03:08:08 +02:00
|
|
|
top: -168px;
|
|
|
|
position: absolute;
|
|
|
|
}
|
2017-02-28 01:45:25 +01:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
&.image {
|
|
|
|
width: 600px;
|
|
|
|
margin-left: 100px;
|
|
|
|
}
|
|
|
|
}
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
h3 {
|
|
|
|
font-size: 3em;
|
|
|
|
}
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
.feature-block {
|
|
|
|
width: 50%;
|
|
|
|
}
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
p {
|
|
|
|
font-size: 1.2em;
|
|
|
|
}
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
a.cta {
|
|
|
|
font-size: 1em;
|
|
|
|
color: hsl(170, 52%, 70%);
|
|
|
|
}
|
2020-06-14 20:04:35 +02:00
|
|
|
}
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
&.messages {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
margin: 50px auto;
|
2020-08-06 02:42:07 +02:00
|
|
|
padding: 0 50px;
|
2020-06-15 03:08:08 +02:00
|
|
|
|
|
|
|
.image {
|
|
|
|
width: calc(100% - 500px - 100px);
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 50px 0 50px 50px;
|
2020-06-15 03:08:08 +02:00
|
|
|
max-width: 500px;
|
2020-06-14 20:04:35 +02:00
|
|
|
}
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
.features {
|
|
|
|
max-width: 500px;
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.feature-block {
|
|
|
|
display: block;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 30px 0;
|
2020-06-15 03:08:08 +02:00
|
|
|
}
|
2020-06-14 20:04:35 +02:00
|
|
|
}
|
2020-06-14 17:08:30 +02:00
|
|
|
}
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
&.notifications {
|
|
|
|
position: relative;
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
padding: 50px 100px;
|
|
|
|
max-width: calc(1000px);
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
background-color: hsl(0, 0%, 100%);
|
|
|
|
border-radius: 10px;
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
box-shadow: 10px 20px 80px hsla(0, 0%, 0%, 0.15);
|
|
|
|
margin: 100px auto 150px auto;
|
|
|
|
text-align: center;
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
.envelope {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
max-height: 40vw;
|
|
|
|
}
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
h2 {
|
|
|
|
position: relative;
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
margin-bottom: 120px;
|
2020-08-06 02:42:07 +02:00
|
|
|
top: 0;
|
2020-06-15 03:08:08 +02:00
|
|
|
}
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
.feature-list {
|
|
|
|
position: relative;
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
text-align: left;
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 35px 0 0 20px;
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
z-index: 1;
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
h3 {
|
|
|
|
position: relative;
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 15px 0 15px 50px;
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
font-size: 1.2em;
|
|
|
|
font-weight: 400;
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
color: hsl(0, 0%, 53%);
|
2017-02-28 01:45:25 +01:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
&::before {
|
|
|
|
content: " ";
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
left: -35px;
|
2020-08-06 02:42:07 +02:00
|
|
|
top: 0;
|
2020-06-15 03:08:08 +02:00
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
border-radius: 4px;
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-08-13 00:27:39 +02:00
|
|
|
background-image: url(../../images/checkbox-green.svg);
|
2020-06-15 03:08:08 +02:00
|
|
|
background-size: 100% auto;
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
2020-06-14 20:04:35 +02:00
|
|
|
}
|
2020-06-14 17:23:10 +02:00
|
|
|
}
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
.image-block {
|
|
|
|
width: 400px;
|
|
|
|
height: 280px;
|
|
|
|
|
2020-08-04 23:58:56 +02:00
|
|
|
background: linear-gradient(
|
|
|
|
135deg,
|
|
|
|
hsla(0, 0%, 0%, 0.05),
|
|
|
|
hsla(0, 0%, 0%, 0.2)
|
|
|
|
);
|
2020-06-15 03:08:08 +02:00
|
|
|
border-radius: 4px;
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-08-13 00:27:39 +02:00
|
|
|
background-image: url(../../images/landing-page/notifications.jpg);
|
2020-06-15 03:08:08 +02:00
|
|
|
background-size: contain;
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
}
|
2020-06-14 20:04:35 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
.feature-block {
|
2020-06-14 20:04:35 +02:00
|
|
|
display: inline-block;
|
2020-06-15 03:08:08 +02:00
|
|
|
vertical-align: top;
|
2020-06-14 20:04:35 +02:00
|
|
|
}
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
.headliner {
|
|
|
|
.feature-block {
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 0 10px;
|
2020-06-15 03:08:08 +02:00
|
|
|
width: calc(100% - 250px - 20px);
|
|
|
|
}
|
|
|
|
}
|
2020-06-14 20:04:35 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
h2 {
|
|
|
|
font-size: 2.5em;
|
|
|
|
text-align: center;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 0 10px;
|
2020-06-15 03:08:08 +02:00
|
|
|
line-height: 1.6;
|
|
|
|
flex: 1 0 100%;
|
2020-06-14 20:04:35 +02:00
|
|
|
}
|
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
> .feature-block {
|
|
|
|
padding: 10px 20px;
|
|
|
|
flex: 1 1 320px;
|
|
|
|
color: inherit;
|
|
|
|
}
|
2020-06-14 20:04:35 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
a {
|
|
|
|
&.feature-block {
|
|
|
|
&:hover {
|
2020-08-06 02:42:07 +02:00
|
|
|
box-shadow: 0 3px 10px hsl(0, 0%, 75%);
|
2020-06-15 03:08:08 +02:00
|
|
|
}
|
2020-06-14 20:04:35 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
&:active {
|
2020-08-06 02:42:07 +02:00
|
|
|
box-shadow: 0 3px 10px hsl(0, 0%, 50%);
|
2020-06-15 03:08:08 +02:00
|
|
|
}
|
2020-06-14 20:04:35 +02:00
|
|
|
}
|
|
|
|
}
|
2020-06-14 17:23:10 +02:00
|
|
|
}
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
.cta {
|
|
|
|
&::after {
|
|
|
|
content: "\2192";
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
margin-left: 5px;
|
|
|
|
transform: scaleX(2);
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
transition: all 0.3s ease;
|
|
|
|
}
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
&:hover {
|
|
|
|
&::after {
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
2020-06-15 02:58:33 +02:00
|
|
|
}
|
2020-06-15 02:56:05 +02:00
|
|
|
}
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
.feature-block {
|
|
|
|
h3 {
|
|
|
|
font-size: 1.2em;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
p {
|
|
|
|
margin: 0;
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
opacity: 0.8;
|
|
|
|
}
|
2020-06-15 03:00:02 +02:00
|
|
|
}
|
2017-02-28 01:45:25 +01:00
|
|
|
}
|
|
|
|
|
2017-04-20 20:44:49 +02:00
|
|
|
/* -- hello page -- */
|
|
|
|
.portico-landing.hello {
|
2017-06-08 21:25:19 +02:00
|
|
|
background-color: transparent;
|
2017-06-21 08:57:47 +02:00
|
|
|
color: hsl(219, 23%, 33%);
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .hero {
|
|
|
|
position: relative;
|
2018-06-01 19:58:31 +02:00
|
|
|
padding: 60px 50px 30px 50px;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2018-09-27 21:57:07 +02:00
|
|
|
color: hsl(0, 0%, 100%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
|
|
|
overflow: hidden;
|
2017-06-08 19:53:10 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
.waves {
|
|
|
|
position: absolute;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
width: 150vw;
|
|
|
|
height: 150vw;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
top: 650px;
|
|
|
|
left: -25vw;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
z-index: 0;
|
|
|
|
opacity: 0.3;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
.wave {
|
|
|
|
position: absolute;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
background-color: hsl(0, 0%, 100%);
|
|
|
|
border-radius: 35%;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
opacity: 0.3;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
animation-name: waves;
|
|
|
|
animation-duration: 15s;
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
animation-timing-function: linear;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
&.dark-blue {
|
|
|
|
background-color: hsl(219, 39%, 13%);
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
&.light-blue {
|
|
|
|
background-color: hsla(0, 67%, 57%, 0.9);
|
|
|
|
animation-duration: 18s;
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
&.light-green {
|
|
|
|
background-color: hsla(187, 98%, 75%, 0.75);
|
|
|
|
animation-name: wavesBackward;
|
|
|
|
animation-duration: 21s;
|
|
|
|
}
|
2020-06-20 14:03:45 +02:00
|
|
|
}
|
2020-06-20 14:02:27 +02:00
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
.content {
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
text-align: center;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
p {
|
|
|
|
font-weight: 400;
|
|
|
|
opacity: 0.85;
|
|
|
|
}
|
2020-06-20 14:04:40 +02:00
|
|
|
}
|
2017-06-08 19:53:10 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
header {
|
|
|
|
width: 850px;
|
|
|
|
display: inline-block;
|
|
|
|
text-align: left;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
h1 {
|
|
|
|
font-size: 3em;
|
|
|
|
font-weight: 400;
|
2017-06-08 19:53:10 +02:00
|
|
|
|
2020-08-06 02:42:07 +02:00
|
|
|
text-shadow: 0 0 20px hsla(0, 0%, 100%, 0.2);
|
2020-06-20 15:08:06 +02:00
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
p {
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 30px 0;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
font-size: 1.5em;
|
|
|
|
font-weight: 300;
|
|
|
|
line-height: 1.4;
|
2020-08-06 02:42:07 +02:00
|
|
|
text-shadow: 0 0 5px hsla(164, 74%, 15%, 0.3),
|
|
|
|
0 0 20px hsla(0, 0%, 100%, 0.2);
|
2020-06-20 15:08:06 +02:00
|
|
|
}
|
2017-06-08 19:53:10 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
a {
|
|
|
|
display: block;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 20px auto 0 auto;
|
2020-06-20 15:08:06 +02:00
|
|
|
text-align: center;
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
button {
|
2020-08-06 02:42:07 +02:00
|
|
|
margin-top: 0;
|
2020-06-20 15:08:06 +02:00
|
|
|
padding: 12px 20px;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
background-color: hsl(0, 0%, 100%);
|
|
|
|
border: 2px solid hsl(0, 0%, 100%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
font-size: 1.2em;
|
|
|
|
font-weight: 500;
|
|
|
|
color: hsl(148, 23%, 51%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-08-06 02:42:07 +02:00
|
|
|
box-shadow: 0 3px 10px hsla(0, 0%, 0%, 0.2);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
transition: all 0.2s ease;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
&:hover {
|
2020-08-06 02:42:07 +02:00
|
|
|
box-shadow: 0 3px 10px hsla(0, 0%, 100%, 0.2);
|
2020-06-20 15:08:06 +02:00
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
&:active {
|
2020-08-06 02:42:07 +02:00
|
|
|
box-shadow: 0 3px 20px hsla(0, 0%, 100%, 0.5);
|
2020-06-20 15:08:06 +02:00
|
|
|
}
|
2020-06-20 15:03:14 +02:00
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
.download-button {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
#see_all_apps {
|
|
|
|
display: inline-block;
|
|
|
|
margin-top: 10px;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
font-weight: normal;
|
|
|
|
}
|
2020-06-20 15:03:14 +02:00
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
2020-06-20 13:08:24 +02:00
|
|
|
.portico-landing.hello .gradients .gradient {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 1100px;
|
|
|
|
|
2020-06-20 15:12:57 +02:00
|
|
|
&.dark-blue {
|
2020-08-04 23:58:56 +02:00
|
|
|
background: linear-gradient(
|
|
|
|
10deg,
|
|
|
|
hsla(196, 58%, 14%, 0) 50%,
|
|
|
|
hsla(196, 58%, 14%, 0.7)
|
|
|
|
);
|
2020-06-20 15:12:57 +02:00
|
|
|
}
|
2020-06-20 13:08:24 +02:00
|
|
|
|
2020-06-20 15:12:57 +02:00
|
|
|
&.green {
|
2020-08-04 23:58:56 +02:00
|
|
|
background: linear-gradient(
|
|
|
|
-25deg,
|
|
|
|
hsla(156, 47%, 47%, 0) 40%,
|
|
|
|
hsl(156, 47%, 47%)
|
|
|
|
);
|
2020-06-20 15:12:57 +02:00
|
|
|
}
|
2020-06-20 13:08:24 +02:00
|
|
|
|
2020-06-20 15:12:57 +02:00
|
|
|
&.blue {
|
2020-08-04 23:58:56 +02:00
|
|
|
background: linear-gradient(
|
|
|
|
25deg,
|
|
|
|
hsla(196, 38%, 51%, 0) 40%,
|
|
|
|
hsl(196, 38%, 51%)
|
|
|
|
);
|
2020-06-20 15:12:57 +02:00
|
|
|
}
|
2020-06-20 13:08:24 +02:00
|
|
|
|
2020-06-20 15:12:57 +02:00
|
|
|
&.sunburst {
|
2020-08-04 23:58:56 +02:00
|
|
|
background: linear-gradient(
|
|
|
|
5deg,
|
|
|
|
hsla(49, 71%, 68%, 0) 20%,
|
|
|
|
hsl(49, 71%, 68%)
|
|
|
|
);
|
2020-06-20 15:12:57 +02:00
|
|
|
}
|
2020-06-20 13:08:24 +02:00
|
|
|
|
2020-06-20 15:12:57 +02:00
|
|
|
&.white-fade {
|
2020-08-04 23:58:56 +02:00
|
|
|
background: linear-gradient(
|
|
|
|
0deg,
|
|
|
|
hsl(0, 0%, 98%) 0%,
|
|
|
|
hsla(0, 0%, 98%, 0) 40%
|
|
|
|
);
|
2020-06-20 15:12:57 +02:00
|
|
|
}
|
2020-06-20 13:08:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes waves {
|
|
|
|
0% {
|
|
|
|
transform: rotate(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
50% {
|
|
|
|
transform: rotate(180deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes wavesBackward {
|
|
|
|
0% {
|
|
|
|
transform: rotate(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
50% {
|
|
|
|
transform: rotate(-180deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
transform: rotate(-360deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-08 20:14:55 +02:00
|
|
|
.portico-landing.hello .col-3-5,
|
|
|
|
.portico-landing.hello .col-2,
|
|
|
|
.portico-landing.hello .col-4 {
|
2017-04-20 20:44:49 +02:00
|
|
|
margin-right: -4px;
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
2017-08-08 20:14:55 +02:00
|
|
|
.portico-landing.hello .col-3-5 {
|
|
|
|
width: 60%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .col-2 {
|
|
|
|
width: 49.9%;
|
|
|
|
}
|
|
|
|
|
2017-04-20 20:44:49 +02:00
|
|
|
.portico-landing.hello .col-3 {
|
|
|
|
width: 33.3%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .col-4 {
|
|
|
|
width: 20%;
|
|
|
|
}
|
|
|
|
|
2017-05-13 23:25:10 +02:00
|
|
|
/* -- compare css -- */
|
|
|
|
.compare {
|
2017-06-21 08:57:47 +02:00
|
|
|
background-color: hsl(163, 22%, 31%);
|
2018-09-27 21:57:07 +02:00
|
|
|
color: hsl(0, 0%, 100%);
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
.text-header .text-content h1 {
|
2020-08-06 02:42:07 +02:00
|
|
|
margin-top: 0;
|
2020-07-01 21:25:20 +02:00
|
|
|
}
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
.padded-content {
|
|
|
|
width: 900px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
2017-05-16 07:17:32 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
table {
|
|
|
|
width: 100%;
|
|
|
|
text-align: left;
|
|
|
|
border-collapse: collapse;
|
2017-05-16 07:17:32 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
font-weight: 400;
|
2017-05-16 07:17:32 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
color: hsla(0, 0%, 100%, 0.8);
|
2017-05-16 07:17:32 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
thead th {
|
|
|
|
&:last-of-type {
|
|
|
|
width: 120px;
|
|
|
|
}
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
&.uniform {
|
|
|
|
width: 20%;
|
|
|
|
}
|
2020-07-01 20:47:07 +02:00
|
|
|
}
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
td:not(:first-of-type),
|
|
|
|
th:not(:first-of-type) {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2020-07-01 20:47:07 +02:00
|
|
|
}
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
thead {
|
|
|
|
border-bottom: 3px solid hsla(0, 0%, 0%, 0.1);
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
th {
|
|
|
|
font-weight: 600;
|
2020-08-06 02:42:07 +02:00
|
|
|
padding: 15px 0;
|
2017-05-16 07:17:32 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
color: hsl(0, 0%, 100%);
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
&.normal {
|
|
|
|
font-weight: normal;
|
|
|
|
color: inherit;
|
|
|
|
}
|
2020-07-01 20:54:36 +02:00
|
|
|
}
|
2020-07-01 20:48:53 +02:00
|
|
|
}
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
tbody tr {
|
|
|
|
border-bottom: 1px solid hsla(360, 0%, 100%, 0.03);
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
td {
|
2020-08-06 02:42:07 +02:00
|
|
|
padding: 10px 0;
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
&.no {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
&.yes::before {
|
|
|
|
content: " ";
|
|
|
|
display: inline-block;
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
width: 27px;
|
|
|
|
height: 27px;
|
2020-08-13 00:27:39 +02:00
|
|
|
background-image: url(../../images/landing-page/checkmark.png);
|
2020-07-01 21:25:20 +02:00
|
|
|
background-size: 100% auto;
|
|
|
|
}
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
&.no::before {
|
|
|
|
content: "\d7";
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
top: 3px;
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
font-size: 2.5rem;
|
|
|
|
font-weight: 500;
|
|
|
|
line-height: 0.9;
|
2017-05-15 20:42:04 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
opacity: 0.4;
|
|
|
|
}
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
a {
|
|
|
|
font-size: 0.9rem;
|
|
|
|
font-weight: 400;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
2020-07-01 20:56:17 +02:00
|
|
|
}
|
2020-07-01 20:51:11 +02:00
|
|
|
}
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
p {
|
|
|
|
font-weight: 300;
|
|
|
|
}
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
.terms {
|
|
|
|
margin-top: 30px;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 0.7em;
|
2017-05-16 07:17:32 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
line-height: 1.2;
|
2017-05-16 07:17:32 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
color: hsla(0, 0%, 100%, 0.8);
|
2017-05-16 07:17:32 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
a {
|
|
|
|
color: hsl(170, 47%, 73%);
|
|
|
|
}
|
2020-07-01 20:57:21 +02:00
|
|
|
}
|
2017-08-30 21:00:29 +02:00
|
|
|
}
|
|
|
|
|
2017-05-15 20:42:04 +02:00
|
|
|
/* -- faq css -- */
|
|
|
|
.faqs {
|
|
|
|
position: relative;
|
2018-10-06 18:49:20 +02:00
|
|
|
background-color: hsl(0, 0%, 98%);
|
2017-05-15 20:42:04 +02:00
|
|
|
|
2020-07-02 00:19:17 +02:00
|
|
|
.padded-content {
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
2017-05-15 20:42:04 +02:00
|
|
|
|
2020-07-02 00:19:17 +02:00
|
|
|
header {
|
|
|
|
max-width: 700px;
|
|
|
|
margin: 0 auto;
|
2017-05-15 20:42:04 +02:00
|
|
|
|
2020-07-02 00:19:17 +02:00
|
|
|
h1 span {
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
2020-07-02 00:16:46 +02:00
|
|
|
}
|
2017-05-15 20:42:04 +02:00
|
|
|
|
2020-07-02 00:19:17 +02:00
|
|
|
.faq {
|
|
|
|
margin: 50px auto;
|
|
|
|
max-width: 700px;
|
|
|
|
font-size: 1.2em;
|
|
|
|
color: hsl(223, 6%, 25%);
|
2020-07-02 00:17:57 +02:00
|
|
|
|
2020-07-02 00:19:17 +02:00
|
|
|
.question {
|
|
|
|
font-weight: 600;
|
|
|
|
color: hsl(222, 20%, 40%);
|
|
|
|
font-size: 1.1em;
|
|
|
|
}
|
2020-07-02 00:17:57 +02:00
|
|
|
|
2020-07-02 00:19:17 +02:00
|
|
|
.answer {
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 20px 0 0 0;
|
2020-07-02 00:19:17 +02:00
|
|
|
font-weight: 400;
|
|
|
|
}
|
2020-07-02 00:17:57 +02:00
|
|
|
}
|
2017-05-15 20:42:04 +02:00
|
|
|
|
2020-07-02 00:19:17 +02:00
|
|
|
/* the last faq in the box shouldn't have an extra 50px of margin. */
|
|
|
|
.faq-box div:last-of-type {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
.screen {
|
|
|
|
.line {
|
|
|
|
width: 100%;
|
|
|
|
height: 6px;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 8px 0;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
background-color: hsl(0, 0%, 93%);
|
|
|
|
border-radius: 3px;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
&.small {
|
|
|
|
width: 60%;
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
&.micro {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
width: 15%;
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
&.darker {
|
|
|
|
background-color: hsl(0, 0%, 73%);
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
&.nano {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
width: 10%;
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
&.med {
|
|
|
|
width: 80%;
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
&.red {
|
|
|
|
background-color: hsl(350, 42%, 77%);
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
&.blue {
|
|
|
|
background-color: hsl(193, 42%, 77%);
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
&.green {
|
|
|
|
background-color: hsl(119, 42%, 77%);
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
&.orange {
|
|
|
|
background-color: hsl(30, 42%, 77%);
|
|
|
|
}
|
2020-07-13 03:54:50 +02:00
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
.col-4 .action-block {
|
|
|
|
margin: 20px;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
.sub-block {
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 0 10px;
|
2020-07-18 11:04:31 +02:00
|
|
|
}
|
2020-07-13 03:56:46 +02:00
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
.top {
|
|
|
|
.avatar {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
background-color: hsl(0, 0%, 73%);
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
.top-line {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
width: 50px;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin-top: 0;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
background-color: hsl(0, 0%, 73%);
|
|
|
|
}
|
2020-07-13 03:58:53 +02:00
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
.navbar {
|
|
|
|
background-color: hsl(170, 48%, 54%);
|
|
|
|
padding: 10px;
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
.center-page {
|
|
|
|
height: 100%;
|
|
|
|
position: relative;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
overflow: hidden;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
.message-feed {
|
|
|
|
height: calc(100% - 20px);
|
|
|
|
margin-top: 20px;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
transition: all 0.1s ease;
|
|
|
|
}
|
2020-07-13 04:00:14 +02:00
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
.message-feed {
|
|
|
|
.message .content {
|
|
|
|
margin-left: 24px;
|
|
|
|
position: relative;
|
|
|
|
top: -15px;
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
.stream {
|
2020-08-06 02:42:07 +02:00
|
|
|
padding: 3px 5px 0 5px;
|
|
|
|
margin: 0 5px;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
background-color: hsl(0, 0%, 100%);
|
|
|
|
border-radius: 4px;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-08-06 02:42:07 +02:00
|
|
|
box-shadow: 0 0 15px hsla(0, 0%, 0%, 0.01);
|
2020-07-18 11:04:31 +02:00
|
|
|
}
|
2020-07-13 04:02:03 +02:00
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .screen {
|
|
|
|
position: relative;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: -300px auto 0 auto;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
|
|
|
width: 600px;
|
|
|
|
height: 350px;
|
|
|
|
|
|
|
|
padding: 10px 30px 10px 30px;
|
|
|
|
|
|
|
|
border-radius: 12px;
|
2020-08-06 02:42:07 +02:00
|
|
|
box-shadow: 0 0 50px hsla(0, 0%, 0%, 0.2);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2017-06-21 08:57:47 +02:00
|
|
|
background-color: hsl(0, 0%, 27%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
|
|
|
z-index: 1;
|
|
|
|
|
2020-07-18 11:12:22 +02:00
|
|
|
&.hero-screen {
|
|
|
|
padding: 95px 170px;
|
|
|
|
height: 385px;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-08-13 00:27:39 +02:00
|
|
|
background-image: url(../../images/landing-page/macbook-empty.png);
|
2020-07-18 11:12:22 +02:00
|
|
|
background-size: 100% auto;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:12:22 +02:00
|
|
|
background-color: transparent;
|
|
|
|
box-shadow: none;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:12:22 +02:00
|
|
|
&::before,
|
|
|
|
&::after {
|
|
|
|
content: "";
|
|
|
|
display: none;
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:12:22 +02:00
|
|
|
.main-page {
|
|
|
|
transform: translateY(-12px) translateX(3px);
|
|
|
|
border: 5px solid hsl(0, 0%, 0%);
|
|
|
|
}
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:12:22 +02:00
|
|
|
&::before {
|
|
|
|
content: " ";
|
|
|
|
position: absolute;
|
|
|
|
top: calc(50% - 5px);
|
|
|
|
left: 20px;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:12:22 +02:00
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
|
|
|
|
border-radius: 5px;
|
|
|
|
background-color: hsl(0, 0%, 13%);
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:12:22 +02:00
|
|
|
&::after {
|
|
|
|
content: " ";
|
|
|
|
position: absolute;
|
|
|
|
top: calc(50% - 12.5px);
|
|
|
|
right: 8px;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:12:22 +02:00
|
|
|
width: 25px;
|
|
|
|
height: 25px;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:12:22 +02:00
|
|
|
border-radius: 13px;
|
|
|
|
background-color: hsl(0, 0%, 73%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-page {
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
height: calc(100% - 30px);
|
|
|
|
width: calc(100% - 30px);
|
|
|
|
margin: 10px;
|
|
|
|
|
|
|
|
border: 5px solid hsl(0, 0%, 13%);
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
|
|
background-color: hsl(0, 0%, 98%);
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .features {
|
2020-08-06 02:42:07 +02:00
|
|
|
padding: 50px 0 100px 0;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2018-09-27 21:57:07 +02:00
|
|
|
background-color: hsl(0, 0%, 100%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:19:38 +02:00
|
|
|
.col-2 {
|
|
|
|
text-align: center;
|
2017-06-08 21:25:19 +02:00
|
|
|
|
2020-07-18 11:19:38 +02:00
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:19:38 +02:00
|
|
|
img {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
width: 100%;
|
|
|
|
max-width: 300px;
|
|
|
|
}
|
2017-07-13 10:42:42 +02:00
|
|
|
|
2020-07-18 11:19:38 +02:00
|
|
|
.il-block {
|
|
|
|
display: inline-block;
|
|
|
|
width: 75%;
|
|
|
|
text-align: left;
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:19:38 +02:00
|
|
|
h2 {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
2020-07-18 11:18:18 +02:00
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
2017-08-08 20:14:55 +02:00
|
|
|
.portico-landing.hello .open-source {
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
|
|
|
|
2018-10-06 18:49:20 +02:00
|
|
|
background-color: hsl(217, 22%, 93%);
|
2017-08-30 23:16:56 +02:00
|
|
|
|
2020-07-18 11:49:17 +02:00
|
|
|
.flex {
|
2020-08-06 02:42:07 +02:00
|
|
|
min-height: 0;
|
|
|
|
padding: 50px 0;
|
2020-07-18 11:49:17 +02:00
|
|
|
}
|
2017-08-08 20:14:55 +02:00
|
|
|
|
2020-07-18 11:49:17 +02:00
|
|
|
img {
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 0 2%;
|
2020-07-18 11:49:17 +02:00
|
|
|
width: 28%;
|
|
|
|
max-width: 500px;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2017-08-08 20:14:55 +02:00
|
|
|
|
2020-07-18 11:49:17 +02:00
|
|
|
.il-block {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
width: 50%;
|
|
|
|
max-width: 700px;
|
|
|
|
text-align: left;
|
|
|
|
}
|
2017-08-08 20:14:55 +02:00
|
|
|
|
2020-07-18 11:49:17 +02:00
|
|
|
h2 {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
2017-08-08 20:14:55 +02:00
|
|
|
}
|
|
|
|
|
2020-07-18 11:55:57 +02:00
|
|
|
.carousel.carousel-fade .carousel-inner {
|
|
|
|
.item {
|
|
|
|
display: block;
|
|
|
|
opacity: 0;
|
|
|
|
height: 0;
|
|
|
|
transition: opacity 0.4s ease;
|
|
|
|
visibility: hidden;
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
opacity: 1;
|
|
|
|
height: auto;
|
|
|
|
visibility: visible;
|
|
|
|
|
|
|
|
&.left,
|
|
|
|
&.right {
|
|
|
|
left: 0;
|
|
|
|
opacity: 0;
|
|
|
|
z-index: 2;
|
|
|
|
}
|
2020-07-18 11:54:07 +02:00
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
|
2020-07-18 11:55:57 +02:00
|
|
|
&.next.left,
|
|
|
|
&.prev.right {
|
|
|
|
opacity: 1;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
2020-07-18 11:54:07 +02:00
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
|
2020-07-18 11:55:57 +02:00
|
|
|
.item-inner {
|
|
|
|
position: relative;
|
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
|
2020-07-18 11:55:57 +02:00
|
|
|
.next.left .item-inner,
|
|
|
|
.prev.right .item-inner {
|
|
|
|
padding: 30px 20px;
|
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
}
|
|
|
|
|
2018-06-01 19:58:31 +02:00
|
|
|
.portico-landing .tour {
|
2018-09-27 21:57:07 +02:00
|
|
|
color: hsl(0, 0%, 0%);
|
2018-05-09 20:08:44 +02:00
|
|
|
width: 1200px;
|
|
|
|
max-width: 100%;
|
2018-06-01 19:58:31 +02:00
|
|
|
margin: 0 auto;
|
2018-05-09 20:08:44 +02:00
|
|
|
}
|
|
|
|
|
2018-06-01 19:58:31 +02:00
|
|
|
.tour .carousel-inner .item-container {
|
2018-05-09 20:08:44 +02:00
|
|
|
width: 80%;
|
|
|
|
height: 520px;
|
|
|
|
margin: 20px auto;
|
|
|
|
padding: 30px 20px;
|
2020-08-04 23:58:56 +02:00
|
|
|
background: linear-gradient(
|
|
|
|
hsla(220, 20%, 97%, 0.4),
|
|
|
|
hsla(220, 20%, 97%, 0.9)
|
|
|
|
);
|
2018-05-09 20:08:44 +02:00
|
|
|
border-radius: 12px;
|
2020-08-06 02:42:07 +02:00
|
|
|
box-shadow: 0 3px 10px hsla(0, 0%, 0%, 0.02);
|
2018-05-09 20:08:44 +02:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2018-06-01 19:58:31 +02:00
|
|
|
.tour .carousel-inner .start-button {
|
2018-05-09 20:08:44 +02:00
|
|
|
padding: 11px 25px 11px 25px;
|
|
|
|
font-size: 1.2rem;
|
|
|
|
font-weight: 400;
|
2018-10-14 21:57:50 +02:00
|
|
|
color: hsl(0, 0%, 100%);
|
2019-06-18 20:58:40 +02:00
|
|
|
background: linear-gradient(145deg, hsl(191, 56%, 55%), hsl(169, 65%, 42%));
|
2020-08-06 02:42:07 +02:00
|
|
|
box-shadow: 0 3px 10px hsla(0, 0%, 0%, 0.2);
|
2018-06-01 19:58:31 +02:00
|
|
|
border: 0;
|
2018-05-09 20:08:44 +02:00
|
|
|
position: absolute;
|
|
|
|
left: 50%;
|
|
|
|
margin-left: -100px;
|
|
|
|
top: 50%;
|
|
|
|
margin-top: -25px;
|
|
|
|
width: 200px;
|
|
|
|
height: 50px;
|
|
|
|
z-index: 10;
|
|
|
|
|
2020-07-18 11:58:15 +02:00
|
|
|
&:hover {
|
|
|
|
background-color: hsl(169, 65%, 42%);
|
2020-08-06 02:42:07 +02:00
|
|
|
box-shadow: 0 3px 10px hsla(0, 0%, 0%, 0.3);
|
2020-07-18 11:58:15 +02:00
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
}
|
|
|
|
|
2018-06-01 19:58:31 +02:00
|
|
|
.tour .carousel-inner .start-image {
|
2018-05-09 20:08:44 +02:00
|
|
|
position: relative;
|
|
|
|
margin: 0 auto;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
max-width: 100%;
|
2018-10-06 18:49:20 +02:00
|
|
|
border: 1px solid hsl(0, 0%, 87%);
|
2018-05-09 20:08:44 +02:00
|
|
|
opacity: 0.4;
|
|
|
|
}
|
|
|
|
|
2018-06-01 19:58:31 +02:00
|
|
|
.tour .carousel-inner .tour-item-header {
|
|
|
|
margin: 0 0 30px 54px;
|
2018-05-09 20:08:44 +02:00
|
|
|
max-width: 700px;
|
|
|
|
font-size: 1.3em;
|
2018-06-01 19:58:31 +02:00
|
|
|
text-align: left;
|
2018-05-09 20:08:44 +02:00
|
|
|
}
|
|
|
|
|
2018-06-01 19:58:31 +02:00
|
|
|
.tour .carousel-inner .tour-item-header-top-push {
|
2018-05-09 20:08:44 +02:00
|
|
|
margin-top: 40px;
|
|
|
|
}
|
|
|
|
|
2018-06-01 19:58:31 +02:00
|
|
|
.tour .carousel-inner .tour-item-header-centered {
|
2018-05-09 20:08:44 +02:00
|
|
|
text-align: center;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
|
2018-06-01 19:58:31 +02:00
|
|
|
.tour .carousel-inner .zulip-slack-comparison {
|
|
|
|
display: flex;
|
|
|
|
text-align: left;
|
|
|
|
width: 850px;
|
|
|
|
max-width: 100%;
|
|
|
|
margin: 20px auto 0;
|
2018-05-09 20:08:44 +02:00
|
|
|
position: relative;
|
|
|
|
|
2020-07-19 10:54:22 +02:00
|
|
|
.comparison-zulip {
|
|
|
|
width: 500px;
|
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
|
2020-07-19 10:54:22 +02:00
|
|
|
.comparison-slack {
|
|
|
|
width: 300px;
|
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
|
2020-07-19 10:54:22 +02:00
|
|
|
img {
|
|
|
|
max-width: 100%;
|
2018-05-09 20:08:44 +02:00
|
|
|
|
2020-07-19 10:54:22 +02:00
|
|
|
&.zulip-streams-selected {
|
|
|
|
width: 320px;
|
|
|
|
border: 0;
|
|
|
|
}
|
2020-07-19 10:46:02 +02:00
|
|
|
|
2020-07-19 10:54:22 +02:00
|
|
|
&.slack-streams-selected {
|
|
|
|
width: 200px;
|
|
|
|
}
|
2020-07-19 10:46:02 +02:00
|
|
|
|
2020-07-19 10:54:22 +02:00
|
|
|
&.zulip-unreads-arrows {
|
|
|
|
width: 406px;
|
|
|
|
border: 0;
|
|
|
|
}
|
2020-07-19 10:46:02 +02:00
|
|
|
|
2020-07-19 10:54:22 +02:00
|
|
|
&.slack-stream-unreads {
|
|
|
|
width: 200px;
|
|
|
|
}
|
2020-07-19 10:48:11 +02:00
|
|
|
}
|
2020-07-19 10:46:02 +02:00
|
|
|
|
2020-07-19 10:54:22 +02:00
|
|
|
.caption {
|
|
|
|
text-align: left;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
2020-07-19 10:50:10 +02:00
|
|
|
}
|
|
|
|
|
2018-07-25 21:24:36 +02:00
|
|
|
.tour .carousel-inner img {
|
2018-10-06 18:49:20 +02:00
|
|
|
border: 1px solid hsl(210, 8%, 95%);
|
2018-05-09 20:08:44 +02:00
|
|
|
|
2020-07-19 11:01:50 +02:00
|
|
|
&.centered-image {
|
|
|
|
display: block;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.zulip-streams {
|
|
|
|
width: 200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.slack-streams {
|
|
|
|
width: 200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.zulip-topic {
|
|
|
|
margin: -10px 0 0 50px;
|
|
|
|
width: 800px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.slack-overwhelming {
|
|
|
|
border: none;
|
|
|
|
width: 750px;
|
|
|
|
margin: -30px 0 0 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.zulip-easy {
|
|
|
|
border: none;
|
|
|
|
width: 700px;
|
|
|
|
margin-left: 50px;
|
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
}
|
|
|
|
|
2018-06-01 19:58:31 +02:00
|
|
|
.tour .carousel-inner .mobile-hide,
|
|
|
|
.tour .carousel-inner img.mobile-hide,
|
|
|
|
.tour .carousel-inner img.centered-image.mobile-hide {
|
2018-05-09 20:08:44 +02:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2018-06-01 19:58:31 +02:00
|
|
|
.tour .carousel-inner .mobile-show,
|
|
|
|
.tour .carousel-inner img.mobile-show,
|
|
|
|
.tour .carousel-inner img.centered-image.mobile-show {
|
2018-07-25 21:24:36 +02:00
|
|
|
display: none;
|
2018-05-09 20:08:44 +02:00
|
|
|
}
|
|
|
|
|
2018-06-01 19:58:31 +02:00
|
|
|
.tour .carousel-inner .comparison-slack img {
|
2018-05-09 20:08:44 +02:00
|
|
|
margin: 0;
|
|
|
|
|
2020-07-19 12:28:25 +02:00
|
|
|
&.slack-unreads {
|
|
|
|
width: 250px;
|
|
|
|
margin: 15px 0 0 -10px;
|
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
}
|
|
|
|
|
2018-06-01 19:58:31 +02:00
|
|
|
.tour .carousel-inner .other-resources {
|
2018-05-09 20:08:44 +02:00
|
|
|
text-align: left;
|
|
|
|
margin: 30px auto;
|
2018-06-01 19:58:31 +02:00
|
|
|
max-width: 600px;
|
2018-05-09 20:08:44 +02:00
|
|
|
|
2020-07-19 12:30:00 +02:00
|
|
|
.other-resources-section {
|
|
|
|
display: inline-block;
|
|
|
|
width: 48%;
|
|
|
|
text-align: center;
|
|
|
|
vertical-align: top;
|
2018-05-09 20:08:44 +02:00
|
|
|
|
2020-07-19 12:30:00 +02:00
|
|
|
img {
|
|
|
|
border: 0;
|
|
|
|
display: block;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
2020-07-19 12:29:17 +02:00
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
}
|
|
|
|
|
2019-07-20 02:24:04 +02:00
|
|
|
.tour .carousel-inner .call-to-action {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 40px auto;
|
2018-05-09 20:08:44 +02:00
|
|
|
padding: 11px 25px 11px 25px;
|
|
|
|
|
|
|
|
font-size: 1.2rem;
|
2019-07-20 02:24:04 +02:00
|
|
|
line-height: 20px;
|
2018-05-09 20:08:44 +02:00
|
|
|
font-weight: 400;
|
2018-10-14 21:57:50 +02:00
|
|
|
color: hsl(0, 0%, 100%);
|
2018-05-09 20:08:44 +02:00
|
|
|
|
2019-06-18 20:58:40 +02:00
|
|
|
background: linear-gradient(145deg, hsl(191, 56%, 55%), hsl(169, 65%, 42%));
|
2020-08-06 02:42:07 +02:00
|
|
|
box-shadow: 0 3px 10px hsla(0, 0%, 0%, 0.2);
|
2019-07-20 02:24:04 +02:00
|
|
|
border-radius: 4px;
|
2018-05-09 20:08:44 +02:00
|
|
|
|
2020-07-19 12:31:05 +02:00
|
|
|
&:hover {
|
|
|
|
background-color: hsl(169, 65%, 42%);
|
2020-08-06 02:42:07 +02:00
|
|
|
box-shadow: 0 3px 10px hsla(0, 0%, 0%, 0.3);
|
2020-07-19 12:31:05 +02:00
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.tour .carousel-control {
|
|
|
|
background: 0;
|
|
|
|
border: 0;
|
2018-10-06 18:49:20 +02:00
|
|
|
color: hsl(223, 13%, 52%);
|
2018-05-09 20:08:44 +02:00
|
|
|
font-size: 2em;
|
|
|
|
top: 50%;
|
|
|
|
font-weight: 400;
|
2020-08-04 23:58:56 +02:00
|
|
|
opacity: 1;
|
2018-05-09 20:08:44 +02:00
|
|
|
border-radius: 0;
|
|
|
|
|
2020-07-19 12:34:10 +02:00
|
|
|
&:hover {
|
|
|
|
color: hsl(220, 23%, 33%);
|
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
|
2020-07-19 12:34:10 +02:00
|
|
|
&.right {
|
|
|
|
right: 40px;
|
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
|
2020-07-19 12:34:10 +02:00
|
|
|
&.left {
|
|
|
|
left: 40px;
|
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.carousel-indicators {
|
2018-06-01 19:58:31 +02:00
|
|
|
margin: 20px 0 0 0;
|
2018-05-09 20:08:44 +02:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
padding-left: 0;
|
|
|
|
list-style: none;
|
2020-09-02 09:57:10 +02:00
|
|
|
position: relative;
|
|
|
|
top: auto;
|
|
|
|
right: auto;
|
2018-05-09 20:08:44 +02:00
|
|
|
|
2020-07-19 12:37:01 +02:00
|
|
|
li {
|
|
|
|
position: relative;
|
|
|
|
flex: 0 1 auto;
|
|
|
|
width: 10px;
|
2020-07-19 12:36:00 +02:00
|
|
|
height: 10px;
|
2020-07-19 12:37:01 +02:00
|
|
|
border-radius: 10px;
|
|
|
|
margin-right: 10px;
|
|
|
|
margin-left: 10px;
|
|
|
|
text-indent: -999px;
|
|
|
|
cursor: pointer;
|
|
|
|
background-color: hsl(222, 12%, 66%);
|
2020-08-04 23:58:56 +02:00
|
|
|
transition: background 0.1s ease;
|
2018-05-09 20:08:44 +02:00
|
|
|
|
2020-07-19 12:37:01 +02:00
|
|
|
&::before {
|
|
|
|
position: absolute;
|
|
|
|
top: -10px;
|
|
|
|
left: 0;
|
|
|
|
display: inline-block;
|
|
|
|
width: 100%;
|
|
|
|
height: 10px;
|
|
|
|
content: "";
|
|
|
|
}
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
position: absolute;
|
|
|
|
bottom: -10px;
|
|
|
|
left: 0;
|
|
|
|
display: inline-block;
|
|
|
|
width: 100%;
|
|
|
|
height: 10px;
|
|
|
|
content: "";
|
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
|
2020-07-19 12:37:01 +02:00
|
|
|
&.active {
|
|
|
|
background-color: hsl(220, 23%, 33%);
|
|
|
|
}
|
2020-07-19 12:36:00 +02:00
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials {
|
2018-09-27 21:57:07 +02:00
|
|
|
color: hsl(0, 0%, 100%);
|
2018-10-06 18:49:20 +02:00
|
|
|
background-color: hsl(168, 43%, 24%);
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .text-header .text-content {
|
2017-04-20 20:44:49 +02:00
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .text-header .action-content {
|
2017-04-20 20:44:49 +02:00
|
|
|
float: right;
|
|
|
|
margin-top: 18px;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .quote-container {
|
2018-05-01 22:54:30 +02:00
|
|
|
width: 98%;
|
2017-04-20 20:44:49 +02:00
|
|
|
margin: 30px auto 20px auto;
|
2018-05-01 22:54:30 +02:00
|
|
|
padding-left: 2%;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
|
|
|
font-size: 1.2rem;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .carousel {
|
2018-12-20 14:18:28 +01:00
|
|
|
min-height: 250px;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .carousel-quotes {
|
2018-05-01 22:54:30 +02:00
|
|
|
width: 60%;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .carousel-inner {
|
2018-05-01 22:54:30 +02:00
|
|
|
width: 100%;
|
|
|
|
left: -2%;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .fa-chevron-left,
|
|
|
|
.portico-landing .testimonials .fa-chevron-right {
|
2018-10-06 18:49:20 +02:00
|
|
|
color: hsl(0, 0%, 100%);
|
2018-05-01 22:54:30 +02:00
|
|
|
opacity: 0.5;
|
|
|
|
position: absolute;
|
|
|
|
font-size: 36px;
|
|
|
|
top: 40%;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .fa-chevron-right {
|
2018-05-01 22:54:30 +02:00
|
|
|
right: 10%;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .fa-chevron-left {
|
2018-05-01 22:54:30 +02:00
|
|
|
left: 10%;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .fa-chevron-left:hover,
|
|
|
|
.portico-landing .testimonials .fa-chevron-right:hover {
|
2018-05-01 22:54:30 +02:00
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials blockquote::before {
|
2017-04-20 20:44:49 +02:00
|
|
|
content: "“";
|
|
|
|
margin-left: -10px;
|
|
|
|
margin-right: -3px;
|
|
|
|
}
|
|
|
|
|
2020-03-18 00:09:39 +01:00
|
|
|
.portico-landing .testimonials blockquote::after {
|
|
|
|
content: "”";
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials blockquote + cite {
|
2017-04-20 20:44:49 +02:00
|
|
|
display: block;
|
|
|
|
margin-top: 5px;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
2018-10-06 18:49:20 +02:00
|
|
|
color: hsl(0, 0%, 100%);
|
2018-05-09 21:57:55 +02:00
|
|
|
opacity: 0.7;
|
2017-04-20 20:44:49 +02:00
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials blockquote {
|
2020-08-06 02:42:07 +02:00
|
|
|
padding: 0;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
|
|
|
font-weight: 400;
|
|
|
|
line-height: 1.6;
|
|
|
|
text-align: left;
|
|
|
|
border: none;
|
2017-08-30 23:16:20 +02:00
|
|
|
|
|
|
|
opacity: 0.8;
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials hr {
|
2017-04-20 20:44:49 +02:00
|
|
|
width: 60%;
|
|
|
|
margin: 0 auto;
|
|
|
|
border: none;
|
2019-06-19 04:53:16 +02:00
|
|
|
border-bottom: 1px solid hsla(0, 0%, 100%, 0.2);
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .company-container {
|
2017-04-20 20:44:49 +02:00
|
|
|
width: 60%;
|
2018-12-20 14:18:28 +01:00
|
|
|
margin: 30px auto;
|
2017-04-20 20:44:49 +02:00
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .company-box {
|
2017-04-20 20:44:49 +02:00
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .company-container header h2 {
|
2017-04-20 20:44:49 +02:00
|
|
|
font-weight: 400;
|
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .company-container header .arrow {
|
2017-04-20 20:44:49 +02:00
|
|
|
margin-top: 12px;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .company-box .company {
|
2017-04-20 20:44:49 +02:00
|
|
|
display: inline-block;
|
|
|
|
margin: 10px 20px;
|
|
|
|
|
|
|
|
height: 60px;
|
2017-08-30 23:33:01 +02:00
|
|
|
width: calc(25% - 44px);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2018-10-12 07:22:46 +02:00
|
|
|
background-color: hsl(0, 0%, 67%);
|
2017-04-20 20:44:49 +02:00
|
|
|
background-size: contain;
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* -- company logos -- */
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .company-box .company.akamai {
|
2020-08-13 00:27:39 +02:00
|
|
|
background-image: url(../../images/landing-page/logos/akamai.png);
|
2017-04-20 20:44:49 +02:00
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .company-box .company.doctorondemand {
|
2020-08-13 00:27:39 +02:00
|
|
|
background-image: url(../../images/landing-page/logos/doctorondemand.png);
|
2017-04-20 20:44:49 +02:00
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .company-box .company.layershift {
|
2020-08-13 00:27:39 +02:00
|
|
|
background-image: url(../../images/landing-page/logos/layershift.png);
|
2017-04-20 20:44:49 +02:00
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .company-box .company.recurse {
|
2020-08-13 00:27:39 +02:00
|
|
|
background-image: url(../../images/landing-page/logos/recurse.png);
|
2017-04-20 20:44:49 +02:00
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .company-box .company.solano {
|
2020-08-13 00:27:39 +02:00
|
|
|
background-image: url(../../images/landing-page/logos/solano.png);
|
2017-04-20 20:44:49 +02:00
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .company-box .company.veelo {
|
2020-08-13 00:27:39 +02:00
|
|
|
background-image: url(../../images/landing-page/logos/veelo.png);
|
2017-04-20 20:44:49 +02:00
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .company-box .company.panjiva {
|
2020-08-13 00:27:39 +02:00
|
|
|
background-image: url(../../images/landing-page/logos/panjiva.png);
|
2017-04-20 20:44:49 +02:00
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .company-box .company.cmt {
|
2020-08-13 00:27:39 +02:00
|
|
|
background-image: url(../../images/landing-page/logos/cambridge-mobile-telematics.png);
|
2017-04-20 20:44:49 +02:00
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .company-box .company.levelup {
|
2020-08-13 00:27:39 +02:00
|
|
|
background-image: url(../../images/landing-page/logos/levelup.png);
|
2017-04-20 20:44:49 +02:00
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .company-box .company.wildfly {
|
2020-08-13 00:27:39 +02:00
|
|
|
background-image: url(../../images/landing-page/logos/wildfly.png);
|
2018-12-18 22:49:01 +01:00
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .company-box .company.mariadb {
|
2020-08-13 00:27:39 +02:00
|
|
|
background-image: url(../../images/landing-page/logos/mariadb.png);
|
2019-01-29 19:02:11 +01:00
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .company-box .company.infinispan {
|
2020-08-13 00:27:39 +02:00
|
|
|
background-image: url(../../images/landing-page/logos/infinispan.png);
|
2019-01-29 19:48:42 +01:00
|
|
|
background-color: transparent;
|
|
|
|
height: 50px;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .company-box .company.hail {
|
2020-08-13 00:27:39 +02:00
|
|
|
background-image: url(../../images/landing-page/logos/hail.png);
|
2018-12-18 22:49:01 +01:00
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .company-box .company.inspire-hep {
|
2020-08-13 00:27:39 +02:00
|
|
|
background-image: url(../../images/landing-page/logos/inspire-hep.png);
|
2018-12-18 22:49:01 +01:00
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .company-box .company.wikimedia-outreach {
|
2020-08-13 00:27:39 +02:00
|
|
|
background-image: url(../../images/landing-page/logos/wikimedia-outreach.png);
|
2018-12-18 22:49:01 +01:00
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .company-box .company.fhir {
|
2020-08-13 00:27:39 +02:00
|
|
|
background-image: url(../../images/landing-page/logos/fhir.png);
|
2018-12-18 22:49:01 +01:00
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .company-box .company.openshot {
|
2020-08-13 00:27:39 +02:00
|
|
|
background-image: url(../../images/landing-page/logos/openshot.png);
|
2019-03-01 07:45:49 +01:00
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .company-box .company.mixxx {
|
2020-08-13 00:27:39 +02:00
|
|
|
background-image: url(../../images/landing-page/logos/mixxx.png);
|
2018-12-18 22:49:01 +01:00
|
|
|
background-color: transparent;
|
|
|
|
height: 45px;
|
|
|
|
}
|
|
|
|
|
2017-04-20 20:44:49 +02:00
|
|
|
.portico-landing.hello .apps {
|
2017-06-08 19:53:10 +02:00
|
|
|
position: relative;
|
|
|
|
padding: 200px 80px 100px 80px;
|
|
|
|
margin-top: -50px;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2017-06-21 08:57:47 +02:00
|
|
|
background: linear-gradient(145deg, hsl(191, 56%, 55%), hsl(169, 65%, 42%));
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2018-09-27 21:57:07 +02:00
|
|
|
color: hsl(0, 0%, 100%);
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
2017-06-08 19:53:10 +02:00
|
|
|
.portico-landing.hello .apps .triangle {
|
|
|
|
position: absolute;
|
2020-08-06 02:42:07 +02:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2017-06-08 19:53:10 +02:00
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 150px 100vw 0 0;
|
2019-08-20 21:51:32 +02:00
|
|
|
border-color: hsl(0, 0%, 98%) transparent transparent transparent;
|
2017-06-08 19:53:10 +02:00
|
|
|
}
|
|
|
|
|
2017-04-20 20:44:49 +02:00
|
|
|
.portico-landing.hello .apps .arrow {
|
2018-09-27 21:57:07 +02:00
|
|
|
color: hsl(0, 0%, 100%);
|
2017-04-20 20:44:49 +02:00
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .arrow::before {
|
2018-09-27 21:57:07 +02:00
|
|
|
background-color: hsl(0, 0%, 100%);
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .left-side,
|
|
|
|
.portico-landing.hello .apps .right-side {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .left-side {
|
|
|
|
width: calc(60% - 4px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .right-side {
|
|
|
|
width: calc(40% - 4px);
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .left-side .content {
|
|
|
|
width: 650px;
|
2017-06-08 19:53:10 +02:00
|
|
|
margin: 50px auto;
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .left-side .platform-icons {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .left-side .platform-icons .group h2 {
|
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .left-side .platform-icons .group {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 0 30px;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .left-side .platform-icons .group a {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .left-side .platform-icons .group i {
|
|
|
|
display: inline-block;
|
|
|
|
width: 80px;
|
|
|
|
|
|
|
|
font-size: 3.5em;
|
2019-08-20 21:52:12 +02:00
|
|
|
opacity: 0.8;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .left-side .platform-icons .group i:hover {
|
|
|
|
opacity: 1;
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .arrow::after {
|
|
|
|
filter: brightness(4) saturate(0);
|
|
|
|
}
|
|
|
|
|
2017-06-06 22:05:17 +02:00
|
|
|
.portico-landing.hello .integrations {
|
2018-05-07 22:07:02 +02:00
|
|
|
padding: 80px 80px;
|
2017-06-06 22:05:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .integrations .content {
|
|
|
|
margin-left: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .integrations .integration-icons {
|
|
|
|
width: 100%;
|
2018-05-07 20:51:08 +02:00
|
|
|
margin: 20px 0;
|
2017-06-06 22:05:17 +02:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .integrations .integration-icons .group {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
2017-06-13 01:06:47 +02:00
|
|
|
width: 155px;
|
2017-06-06 22:05:17 +02:00
|
|
|
height: 220px;
|
2017-06-13 01:06:47 +02:00
|
|
|
padding: 0 5px;
|
2017-06-06 22:05:17 +02:00
|
|
|
transition: all 0.3s ease;
|
2017-06-13 01:06:47 +02:00
|
|
|
margin: 10px 5px;
|
2017-06-21 08:57:47 +02:00
|
|
|
color: hsl(219, 23%, 33%);
|
2017-06-13 01:06:47 +02:00
|
|
|
border-radius: 5px;
|
2018-10-06 18:49:20 +02:00
|
|
|
border: 1px solid hsl(206, 44%, 93%);
|
2017-06-06 22:05:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .integrations .integration-icons .group:hover {
|
2017-06-13 01:06:47 +02:00
|
|
|
border: 1px solid hsl(170, 47%, 53%);
|
2017-06-06 22:05:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .integrations .integration-logo {
|
|
|
|
margin-top: 20px;
|
|
|
|
width: 80px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .integrations .integration-name {
|
|
|
|
margin-top: 20px;
|
|
|
|
font-size: 22px;
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .integrations .integration-description {
|
|
|
|
width: 120px;
|
|
|
|
margin: 0 auto 20px;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
2017-04-20 20:44:49 +02:00
|
|
|
.portico-landing.hello .call-to-action-bottom {
|
|
|
|
position: relative;
|
2020-08-06 02:42:07 +02:00
|
|
|
padding: 100px 100px 0 100px;
|
|
|
|
margin-top: 0;
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
2019-06-17 06:01:45 +02:00
|
|
|
.portico-landing.hello .call-to-action-bottom .button {
|
|
|
|
display: table;
|
2017-04-20 20:44:49 +02:00
|
|
|
margin: 20px auto 0 auto;
|
2020-05-27 23:09:14 +02:00
|
|
|
padding: 10px 20px;
|
|
|
|
font-size: 1em;
|
|
|
|
font-weight: 600;
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .call-to-action-bottom h1 {
|
|
|
|
text-align: center;
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .call-to-action-bottom .zulip-octopus {
|
|
|
|
margin: 130px auto 0 auto;
|
2019-03-14 23:31:10 +01:00
|
|
|
width: 32px;
|
2017-04-20 20:44:49 +02:00
|
|
|
height: 30px;
|
2020-08-13 00:27:39 +02:00
|
|
|
background-image: url(../../images/landing-page/zulip-octopus.png);
|
2017-04-20 20:44:49 +02:00
|
|
|
background-size: cover;
|
2017-08-30 23:23:28 +02:00
|
|
|
|
|
|
|
filter: invert(0.9);
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.footer.hello {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer.hello li a {
|
2017-06-21 08:57:47 +02:00
|
|
|
color: hsl(220, 15%, 76%);
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.footer.hello li a:hover {
|
2018-09-27 21:57:07 +02:00
|
|
|
color: hsl(0, 0%, 100%);
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
2017-03-09 21:18:14 +01:00
|
|
|
/* -- apps page -- */
|
2017-07-08 02:28:18 +02:00
|
|
|
.portico-landing.apps {
|
2020-08-06 02:42:07 +02:00
|
|
|
padding-top: 0;
|
2017-07-08 02:28:18 +02:00
|
|
|
}
|
2017-11-13 17:26:11 +01:00
|
|
|
|
2017-03-09 21:18:14 +01:00
|
|
|
.portico-landing.apps .main,
|
|
|
|
.portico-landing.features-app .main {
|
2018-09-27 21:57:07 +02:00
|
|
|
background-color: hsl(0, 0%, 100%);
|
2017-03-09 21:18:14 +01:00
|
|
|
}
|
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
.portico-landing.apps .hero {
|
2017-03-09 21:18:14 +01:00
|
|
|
position: relative;
|
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
padding: 100px 50px 50px 50px;
|
2018-10-06 18:49:20 +02:00
|
|
|
background: linear-gradient(35deg, hsl(197, 100%, 16%), hsl(166, 45%, 49%));
|
2017-07-08 02:28:18 +02:00
|
|
|
height: 600px;
|
2017-03-09 21:18:14 +01:00
|
|
|
|
2018-09-27 21:57:07 +02:00
|
|
|
color: hsl(0, 0%, 100%);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
overflow: hidden;
|
2017-03-09 21:18:14 +01:00
|
|
|
}
|
|
|
|
|
2017-09-27 18:15:12 +02:00
|
|
|
.portico-landing.apps .hero .inner-content {
|
|
|
|
max-width: 1600px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
.portico-landing.apps .hero h1 {
|
|
|
|
font-size: 3em;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin-bottom: 0;
|
|
|
|
margin-top: 0;
|
2017-03-09 21:18:14 +01:00
|
|
|
}
|
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
.portico-landing.apps .hero #waves {
|
2017-03-09 21:18:14 +01:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
|
2020-08-13 00:27:39 +02:00
|
|
|
background-image: url(../../images/waves.svg);
|
2017-07-08 02:28:18 +02:00
|
|
|
background-size: cover;
|
|
|
|
background-repeat: no-repeat;
|
2017-03-09 21:18:14 +01:00
|
|
|
}
|
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
.portico-landing.apps .hero .info,
|
|
|
|
.portico-landing.apps .hero .image {
|
|
|
|
position: relative;
|
2017-03-09 21:18:14 +01:00
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
width: 50%;
|
|
|
|
float: left;
|
|
|
|
height: 100%;
|
2017-03-09 21:18:14 +01:00
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
z-index: 1;
|
2017-03-09 21:18:14 +01:00
|
|
|
}
|
|
|
|
|
2019-03-07 07:00:28 +01:00
|
|
|
.portico-landing.apps .hero .image img {
|
2020-08-06 02:42:07 +02:00
|
|
|
border-radius: 4px 4px 0 0;
|
2019-03-07 07:00:28 +01:00
|
|
|
}
|
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
.portico-landing.apps .hero .info .cta {
|
2020-08-06 02:42:07 +02:00
|
|
|
text-shadow: 0 0 60px hsla(0, 0%, 0%, 0.3);
|
2017-08-23 15:11:12 +02:00
|
|
|
max-width: 600px;
|
2017-03-09 21:18:14 +01:00
|
|
|
}
|
|
|
|
|
2020-08-04 23:58:56 +02:00
|
|
|
.portico-landing.apps
|
|
|
|
.hero
|
|
|
|
.image
|
|
|
|
img[src="/static/images/landing-page/tar.gz.svg"] {
|
2017-07-08 02:28:18 +02:00
|
|
|
width: 50%;
|
2017-03-09 21:18:14 +01:00
|
|
|
}
|
|
|
|
|
2020-08-04 23:58:56 +02:00
|
|
|
.portico-landing.apps
|
|
|
|
.hero
|
|
|
|
.image
|
|
|
|
img[src="/static/images/app-screenshots/zulip-android.png"],
|
|
|
|
.portico-landing.apps
|
|
|
|
.hero
|
|
|
|
.image
|
|
|
|
img[src="/static/images/app-screenshots/zulip-iphone-rough.png"] {
|
2017-07-08 02:28:18 +02:00
|
|
|
height: 85%;
|
2017-03-09 21:18:14 +01:00
|
|
|
}
|
|
|
|
|
2017-09-27 18:15:12 +02:00
|
|
|
.portico-landing.apps .hero .info .flex,
|
|
|
|
.portico-landing.apps .hero .image .flex {
|
|
|
|
height: 500px;
|
2020-08-06 02:42:07 +02:00
|
|
|
min-height: 0;
|
2017-03-09 21:18:14 +01:00
|
|
|
}
|
|
|
|
|
2019-03-31 19:18:14 +02:00
|
|
|
.portico-landing.apps .hero .info .flex {
|
|
|
|
width: 90%;
|
|
|
|
}
|
|
|
|
|
2019-06-17 06:01:45 +02:00
|
|
|
.portico-landing.apps .hero .info .button {
|
|
|
|
display: inline-block;
|
2017-07-08 02:28:18 +02:00
|
|
|
padding: 10px 20px;
|
2017-03-09 21:18:14 +01:00
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
font-size: 1em;
|
|
|
|
font-weight: 600;
|
2017-03-09 21:18:14 +01:00
|
|
|
}
|
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
.portico-landing.apps .other-apps {
|
2018-09-27 21:57:07 +02:00
|
|
|
background-color: hsl(0, 0%, 100%);
|
2017-07-08 02:28:18 +02:00
|
|
|
padding: 50px 50px 120px 50px;
|
2017-03-09 21:18:14 +01:00
|
|
|
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
.portico-landing.apps .other-apps h2 {
|
|
|
|
width: 600px;
|
|
|
|
margin: 0 auto;
|
2017-03-09 21:18:14 +01:00
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
text-align: center;
|
2017-03-09 21:18:14 +01:00
|
|
|
}
|
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
.portico-landing.apps .other-apps .apps {
|
|
|
|
display: inline-block;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 50px 0 0 0;
|
2017-03-09 21:18:14 +01:00
|
|
|
}
|
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
.portico-landing.apps .other-apps .apps .icon {
|
|
|
|
vertical-align: top;
|
2017-03-09 21:18:14 +01:00
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
width: 50px;
|
2021-05-10 03:42:13 +02:00
|
|
|
padding: 18px 30px;
|
2017-07-08 02:28:18 +02:00
|
|
|
border-radius: 70px;
|
2017-03-09 21:18:14 +01:00
|
|
|
|
2021-05-12 20:57:11 +02:00
|
|
|
/* Reset color since we don't want default link styling. */
|
|
|
|
color: hsl(0, 0%, 27%);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
font-size: 3em;
|
2017-03-09 21:18:14 +01:00
|
|
|
text-align: center;
|
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
transition: all 0.2s ease;
|
2017-03-09 21:18:14 +01:00
|
|
|
}
|
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
.portico-landing.apps .other-apps .apps .icon:hover {
|
2018-10-06 18:49:20 +02:00
|
|
|
background: linear-gradient(-45deg, hsl(0, 0%, 83%), hsl(0, 0%, 98%));
|
2017-03-09 21:18:14 +01:00
|
|
|
}
|
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
.portico-landing.apps .other-apps .apps .icon.fa-mobile-phone {
|
|
|
|
font-size: 4em;
|
2021-05-10 03:42:13 +02:00
|
|
|
padding: 14px 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.apps .other-apps .apps .icon.fa-terminal {
|
|
|
|
padding: 12px 30px;
|
2017-03-09 21:18:14 +01:00
|
|
|
}
|
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
.portico-landing.apps .other-apps .apps .icon.fa-mobile-phone::after {
|
|
|
|
margin-top: 1px;
|
2017-03-09 21:18:14 +01:00
|
|
|
}
|
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
.portico-landing.apps .other-apps .apps .icon::after {
|
|
|
|
content: attr(data-label);
|
2017-03-09 21:18:14 +01:00
|
|
|
display: block;
|
2017-07-08 02:28:18 +02:00
|
|
|
|
|
|
|
font-size: 0.8rem;
|
|
|
|
font-weight: 600;
|
2021-02-23 06:58:00 +01:00
|
|
|
font-family: "Source Sans 3", sans-serif;
|
2017-07-08 02:28:18 +02:00
|
|
|
margin-top: 10px;
|
2017-03-09 21:18:14 +01:00
|
|
|
}
|
|
|
|
|
2020-03-02 04:10:02 +01:00
|
|
|
.download-from-google-play-store img {
|
|
|
|
height: 42px;
|
|
|
|
padding: 15px 0 15px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.download-from-apple-app-store img {
|
|
|
|
height: 42px;
|
|
|
|
padding: 15px 0 15px 0;
|
|
|
|
}
|
|
|
|
|
2017-07-20 22:00:23 +02:00
|
|
|
/* -- /for/open-source/ -- */
|
|
|
|
.portico-landing.why-page {
|
2020-08-06 02:42:07 +02:00
|
|
|
padding-top: 0;
|
2018-10-06 18:49:20 +02:00
|
|
|
color: hsl(223, 6%, 25%);
|
2017-07-20 22:00:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.why-page .main {
|
2018-05-08 23:28:32 +02:00
|
|
|
max-width: 800px;
|
2017-07-20 22:00:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.why-page .hero {
|
|
|
|
padding: 200px 50px 100px 50px;
|
|
|
|
|
2021-07-09 22:03:43 +02:00
|
|
|
&.empty-hero {
|
|
|
|
padding: 50px 50px 70px 50px;
|
|
|
|
}
|
|
|
|
|
2018-10-08 22:31:26 +02:00
|
|
|
background-color: hsl(153, 32%, 55%);
|
2018-09-27 21:57:07 +02:00
|
|
|
color: hsl(0, 0%, 100%);
|
2017-07-20 22:00:23 +02:00
|
|
|
}
|
|
|
|
|
2017-10-04 01:25:43 +02:00
|
|
|
.portico-landing.why-page .hero.small-hero {
|
|
|
|
padding: 120px 50px 30px 50px;
|
|
|
|
}
|
|
|
|
|
2017-07-20 22:00:23 +02:00
|
|
|
.portico-landing.why-page .hero h1 {
|
2021-07-20 20:33:48 +02:00
|
|
|
position: relative;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 0 0 20px 0;
|
2017-07-20 22:00:23 +02:00
|
|
|
|
|
|
|
font-size: 3.5em;
|
|
|
|
font-weight: 300;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.why-page .hero p {
|
|
|
|
width: 70%;
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
|
|
font-size: 1.3em;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
2019-07-24 10:13:43 +02:00
|
|
|
.portico-landing.why-page .markdown {
|
|
|
|
font-size: 1.1rem;
|
|
|
|
}
|
2017-07-20 22:00:23 +02:00
|
|
|
|
2018-06-04 23:00:25 +02:00
|
|
|
.portico-landing.why-page .main blockquote {
|
2018-10-08 22:31:26 +02:00
|
|
|
background-color: hsl(0, 0%, 100%);
|
2018-10-06 18:49:20 +02:00
|
|
|
border-color: hsl(168, 24%, 51%);
|
2018-06-06 22:51:09 +02:00
|
|
|
padding: 20px 30px;
|
2018-06-04 23:00:25 +02:00
|
|
|
margin-top: 20px;
|
2018-06-06 22:51:09 +02:00
|
|
|
font-size: 1.05em;
|
|
|
|
p {
|
|
|
|
line-height: 1.5;
|
|
|
|
margin: 0;
|
|
|
|
font-weight: 400;
|
2018-10-06 18:49:20 +02:00
|
|
|
color: hsl(220, 23%, 33%);
|
2018-06-06 22:51:09 +02:00
|
|
|
}
|
|
|
|
p:last-child {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
2018-06-04 23:00:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.why-page .main img {
|
|
|
|
display: block;
|
|
|
|
margin: 0 auto;
|
|
|
|
max-width: 100%;
|
2019-07-22 19:25:32 +02:00
|
|
|
box-shadow: none;
|
|
|
|
border: none;
|
2018-06-04 23:00:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.why-page .main .slack-image {
|
|
|
|
width: 500px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.why-page .main .zulip-topics-image {
|
|
|
|
width: 300px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.why-page .main .zulip-reply-later-image {
|
|
|
|
width: 600px;
|
|
|
|
}
|
|
|
|
|
2017-08-17 23:45:30 +02:00
|
|
|
.portico-landing.why-page .photo-description {
|
|
|
|
position: relative;
|
|
|
|
top: -40px;
|
|
|
|
height: 0;
|
|
|
|
|
|
|
|
font-size: 0.8em;
|
|
|
|
font-weight: normal;
|
2019-09-17 20:41:37 +02:00
|
|
|
line-height: 100%;
|
2018-09-27 21:57:07 +02:00
|
|
|
color: hsl(0, 0%, 53%);
|
2017-08-17 23:45:30 +02:00
|
|
|
}
|
|
|
|
|
2017-10-31 19:03:08 +01:00
|
|
|
.portico-landing.why-page .team h2 {
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
|
2021-07-22 13:59:28 +02:00
|
|
|
.portico-landing.why-page .bg-events {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
background-image: url(../../images/landing-page/for-events.jpg);
|
|
|
|
background-size: cover;
|
|
|
|
background-position: center;
|
|
|
|
}
|
|
|
|
|
2021-07-20 20:33:48 +02:00
|
|
|
.portico-landing.why-page .bg-education {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
background-image: url(../../images/landing-page/education/for-education-cover.jpg);
|
|
|
|
background-size: cover;
|
|
|
|
background-position: center;
|
|
|
|
}
|
|
|
|
|
2017-08-17 23:45:30 +02:00
|
|
|
.portico-landing.why-page .bg-pycon {
|
|
|
|
position: relative;
|
|
|
|
|
2020-08-13 00:27:39 +02:00
|
|
|
background-image: url(../../images/landing-page/pycon.jpg);
|
2017-08-17 23:45:30 +02:00
|
|
|
background-size: cover;
|
|
|
|
background-position: center;
|
|
|
|
}
|
|
|
|
|
2017-10-31 19:03:08 +01:00
|
|
|
.portico-landing.why-page .bg-pycon.drone {
|
2020-08-13 00:27:39 +02:00
|
|
|
background-image: url(../../images/landing-page/pycon-drone.jpg);
|
2017-10-31 19:03:08 +01:00
|
|
|
}
|
|
|
|
|
2017-11-29 20:38:41 +01:00
|
|
|
.portico-landing.why-page .bg-pycon.mit {
|
2020-08-13 00:27:39 +02:00
|
|
|
background-image: url(../../images/landing-page/mit-lobby-7.jpg);
|
2017-11-29 20:38:41 +01:00
|
|
|
}
|
|
|
|
|
2018-11-01 00:50:57 +01:00
|
|
|
.portico-landing.why-page .bg-pycon.security {
|
2020-08-13 00:27:39 +02:00
|
|
|
background-image: url(../../images/landing-page/security.jpg);
|
2018-11-01 00:50:57 +01:00
|
|
|
}
|
|
|
|
|
2018-11-01 08:05:40 +01:00
|
|
|
.portico-landing.why-page .bg-pycon.why-zulip {
|
2020-08-13 00:27:39 +02:00
|
|
|
background-image: url(../../images/landing-page/why-zulip-threads.jpg);
|
2018-11-01 08:05:40 +01:00
|
|
|
}
|
|
|
|
|
2021-07-20 20:33:48 +02:00
|
|
|
.portico-landing.why-page .bg-dimmer {
|
2017-08-17 23:45:30 +02:00
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
|
2019-06-19 04:53:16 +02:00
|
|
|
background-color: hsla(224, 52%, 12%, 0.7);
|
2017-08-17 23:45:30 +02:00
|
|
|
|
|
|
|
z-index: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.why-page .bg-pycon .content {
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
2018-05-09 21:57:55 +02:00
|
|
|
.portico-landing.why-page .testimonials {
|
2018-10-08 22:31:26 +02:00
|
|
|
background-color: hsl(168, 43%, 24%);
|
2018-09-27 21:57:07 +02:00
|
|
|
color: hsl(0, 0%, 100%);
|
2018-05-09 21:57:55 +02:00
|
|
|
margin-bottom: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.why-page .testimonials .quote-container {
|
|
|
|
width: 98%;
|
|
|
|
margin: 30px auto 20px auto;
|
|
|
|
padding-left: 2%;
|
|
|
|
|
|
|
|
font-size: 1.2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.why-page .testimonials .carousel-quotes {
|
|
|
|
width: 60%;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.why-page .testimonials .carousel-inner {
|
|
|
|
width: 100%;
|
|
|
|
left: -2%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.why-page .testimonials blockquote::before {
|
|
|
|
content: "“";
|
|
|
|
margin-left: -10px;
|
|
|
|
margin-right: -3px;
|
|
|
|
}
|
|
|
|
|
2020-03-18 00:09:39 +01:00
|
|
|
.portico-landing.why-page .testimonials blockquote::after {
|
|
|
|
content: "”";
|
|
|
|
}
|
|
|
|
|
2018-05-09 21:57:55 +02:00
|
|
|
.portico-landing.why-page .testimonials blockquote + cite {
|
|
|
|
display: block;
|
|
|
|
margin-top: 5px;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
2018-10-14 21:57:50 +02:00
|
|
|
color: hsl(0, 0%, 100%);
|
2018-05-09 21:57:55 +02:00
|
|
|
opacity: 0.7;
|
|
|
|
font-weight: 400;
|
|
|
|
line-height: 140%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.why-page .testimonials blockquote {
|
2020-08-06 02:42:07 +02:00
|
|
|
padding: 0;
|
2018-05-09 21:57:55 +02:00
|
|
|
|
|
|
|
font-weight: 400;
|
|
|
|
line-height: 1.6;
|
|
|
|
text-align: left;
|
|
|
|
border: none;
|
|
|
|
|
|
|
|
opacity: 0.8;
|
|
|
|
}
|
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
/* -- hello page styling -- */
|
2017-04-20 20:44:49 +02:00
|
|
|
.portico-landing.hello .apps .screen {
|
|
|
|
display: inline-block;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 0 10px;
|
2017-04-20 20:44:49 +02:00
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .screen.ios {
|
|
|
|
width: 200px;
|
|
|
|
height: 350px;
|
2020-08-06 02:42:07 +02:00
|
|
|
padding: 30px 0;
|
2017-04-20 20:44:49 +02:00
|
|
|
border-radius: 20px;
|
|
|
|
|
2019-08-30 03:49:42 +02:00
|
|
|
transform: translateY(50px);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2018-09-27 21:57:07 +02:00
|
|
|
background-color: hsl(0, 0%, 100%);
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .screen.android {
|
|
|
|
width: 200px;
|
|
|
|
height: 370px;
|
2020-08-06 02:42:07 +02:00
|
|
|
padding: 10px 0 30px 0;
|
2017-04-20 20:44:49 +02:00
|
|
|
border-radius: 20px;
|
|
|
|
|
2019-08-30 03:49:42 +02:00
|
|
|
transform: translateY(-110px);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-08-04 23:58:56 +02:00
|
|
|
background: linear-gradient(
|
|
|
|
90deg,
|
|
|
|
hsl(0, 0%, 27%) 0%,
|
|
|
|
hsl(0, 0%, 33%) 8%,
|
|
|
|
hsl(0, 0%, 33%) 92%,
|
|
|
|
hsl(0, 0%, 27%) 100%
|
|
|
|
);
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .screen .center-page {
|
|
|
|
height: calc(100% - 20px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .screen .center-page .message-feed {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .screen.ios::before {
|
|
|
|
top: 17px;
|
|
|
|
left: calc(50% - 20px);
|
|
|
|
|
|
|
|
width: 40px;
|
|
|
|
height: 5px;
|
2017-06-21 08:57:47 +02:00
|
|
|
background-color: hsl(0, 0%, 80%);
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .screen.ios::after {
|
|
|
|
top: auto;
|
|
|
|
bottom: 7px;
|
|
|
|
left: calc(50% - 12.5px);
|
2017-06-21 08:57:47 +02:00
|
|
|
background-color: hsl(0, 0%, 80%);
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .screen.android::before {
|
|
|
|
content: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .screen.android::after {
|
|
|
|
top: auto;
|
|
|
|
bottom: 10px;
|
|
|
|
left: calc(50% - 17.5px);
|
|
|
|
|
|
|
|
border-radius: 8px;
|
2017-06-21 08:57:47 +02:00
|
|
|
background-color: hsl(0, 0%, 13%);
|
2017-04-20 20:44:49 +02:00
|
|
|
width: 35px;
|
|
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .screen.ios .main-page {
|
2018-10-12 07:22:46 +02:00
|
|
|
border-color: hsl(0, 0%, 87%);
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .screen.android .main-page {
|
2017-06-21 08:57:47 +02:00
|
|
|
border-color: hsl(0, 0%, 13%);
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
2017-06-08 21:25:19 +02:00
|
|
|
/* -- gradients -- */
|
|
|
|
.gradients {
|
|
|
|
width: 100%;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gradients .gradient {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 1100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gradients .gradient.dark-blue {
|
2020-08-04 23:58:56 +02:00
|
|
|
background: linear-gradient(
|
|
|
|
10deg,
|
|
|
|
hsla(196, 58%, 14%, 0) 50%,
|
|
|
|
hsla(196, 58%, 14%, 0.7)
|
|
|
|
);
|
2017-06-08 21:25:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.gradients .gradient.green {
|
2020-08-04 23:58:56 +02:00
|
|
|
background: linear-gradient(
|
|
|
|
-25deg,
|
|
|
|
hsla(156, 47%, 47%, 0) 40%,
|
|
|
|
hsl(156, 47%, 47%)
|
|
|
|
);
|
2017-06-08 21:25:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.gradients .gradient.blue {
|
2020-08-04 23:58:56 +02:00
|
|
|
background: linear-gradient(
|
|
|
|
25deg,
|
|
|
|
hsla(196, 38%, 51%, 0) 40%,
|
|
|
|
hsl(196, 38%, 51%)
|
|
|
|
);
|
2017-06-08 21:25:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.gradients .gradient.sunburst {
|
2020-08-04 23:58:56 +02:00
|
|
|
background: linear-gradient(
|
|
|
|
5deg,
|
|
|
|
hsla(49, 71%, 68%, 0) 20%,
|
|
|
|
hsl(49, 71%, 68%)
|
|
|
|
);
|
2017-06-08 21:25:19 +02:00
|
|
|
}
|
2017-06-13 01:06:47 +02:00
|
|
|
|
2017-06-08 21:25:19 +02:00
|
|
|
.gradients .gradient.white-fade {
|
2020-08-04 23:58:56 +02:00
|
|
|
background: linear-gradient(
|
|
|
|
0deg,
|
|
|
|
hsl(0, 0%, 98%) 0%,
|
|
|
|
hsla(0, 0%, 98%, 0) 40%
|
|
|
|
);
|
2017-06-08 21:25:19 +02:00
|
|
|
}
|
2017-06-13 01:06:47 +02:00
|
|
|
|
2017-05-15 20:42:04 +02:00
|
|
|
/* -- pricing css -- */
|
|
|
|
.portico-landing.plans .main {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.plans .main .padded-content > h1 {
|
|
|
|
text-align: center;
|
|
|
|
font-size: 2.5em;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 0;
|
2017-05-15 20:42:04 +02:00
|
|
|
|
2018-09-27 21:57:07 +02:00
|
|
|
color: hsl(0, 0%, 100%);
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.plans .main .padded-content > h2 {
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
font-size: 1.5em;
|
|
|
|
|
|
|
|
margin-bottom: 50px;
|
|
|
|
|
2018-09-27 21:57:07 +02:00
|
|
|
color: hsl(0, 0%, 100%);
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.pricing-model .pricing-container {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pricing-model .pricing-container .block {
|
|
|
|
display: inline-block;
|
2018-05-07 22:54:45 +02:00
|
|
|
margin: 40px 20px 20px 20px;
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.pricing-model .pricing-container .block .plan-title {
|
|
|
|
padding: 10px;
|
|
|
|
margin-bottom: 3px;
|
|
|
|
|
2018-09-27 21:57:07 +02:00
|
|
|
color: hsl(0, 0%, 100%);
|
2017-05-15 20:42:04 +02:00
|
|
|
|
|
|
|
font-size: 2em;
|
|
|
|
font-weight: 300;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pricing-model .pricing-container .price-box {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: bottom;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 0;
|
2017-05-15 20:42:04 +02:00
|
|
|
width: 300px;
|
|
|
|
height: 500px;
|
|
|
|
|
2020-08-06 02:42:07 +02:00
|
|
|
box-shadow: 0 0 10px hsla(0, 0%, 0%, 0.1);
|
2017-05-15 20:42:04 +02:00
|
|
|
|
|
|
|
text-align: left;
|
2018-09-27 21:57:07 +02:00
|
|
|
background-color: hsl(0, 0%, 100%);
|
2017-05-15 20:42:04 +02:00
|
|
|
|
|
|
|
transition-property: all;
|
|
|
|
transition-duration: 0.3s;
|
|
|
|
transition-timing-function: ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pricing-model .pricing-container .text-content {
|
2021-07-24 06:18:50 +02:00
|
|
|
margin: 18px;
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.pricing-model .padded-content .text-header .text-content h1 {
|
2020-08-06 02:42:07 +02:00
|
|
|
margin-top: 0;
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.pricing-model .pricing-container .text-content h2 {
|
|
|
|
font-size: 1.5em;
|
|
|
|
font-weight: 400;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin-bottom: 0;
|
2017-05-15 20:42:04 +02:00
|
|
|
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pricing-model .pricing-container hr {
|
|
|
|
border: none;
|
2018-10-06 18:49:20 +02:00
|
|
|
border-bottom: 2px solid hsl(170, 47%, 53%);
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 15px 0 15px 0;
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.pricing-model .pricing-container .text-content .description {
|
|
|
|
font-size: 0.9em;
|
|
|
|
font-weight: 400;
|
2018-09-27 21:57:07 +02:00
|
|
|
color: hsl(0, 0%, 53%);
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.pricing-model .pricing-container ul.feature-list {
|
|
|
|
list-style: none;
|
2020-08-06 02:42:07 +02:00
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.pricing-model .pricing-container ul.feature-list li {
|
|
|
|
position: relative;
|
2020-08-06 02:42:07 +02:00
|
|
|
padding: 10px 0 10px 25px;
|
2017-05-15 20:42:04 +02:00
|
|
|
|
|
|
|
font-size: 0.9em;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pricing-model .pricing-container ul.feature-list li::before {
|
|
|
|
content: " ";
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
|
|
|
left: 0;
|
|
|
|
width: 20px;
|
|
|
|
height: 18px;
|
|
|
|
|
2020-08-13 00:27:39 +02:00
|
|
|
background-image: url(../../images/checkbox-green.svg);
|
2017-10-02 20:38:51 +02:00
|
|
|
background-size: contain;
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
2017-05-15 20:42:04 +02:00
|
|
|
|
2019-08-30 03:49:42 +02:00
|
|
|
filter: invert(0.3);
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.pricing-model .pricing-container .bottom {
|
|
|
|
position: absolute;
|
2020-08-06 02:42:07 +02:00
|
|
|
bottom: 0;
|
2017-05-15 20:42:04 +02:00
|
|
|
width: 100%;
|
|
|
|
height: 150px;
|
|
|
|
|
2018-09-27 21:57:07 +02:00
|
|
|
background-color: hsl(0, 0%, 93%);
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.pricing-model .pricing-container .text-content .price::before {
|
|
|
|
content: "$";
|
|
|
|
position: relative;
|
|
|
|
vertical-align: top;
|
2021-07-24 06:18:50 +02:00
|
|
|
top: 7px;
|
2017-05-15 20:42:04 +02:00
|
|
|
left: -3px;
|
|
|
|
|
|
|
|
font-size: 2rem;
|
|
|
|
font-weight: 300;
|
2018-09-27 21:57:07 +02:00
|
|
|
color: hsl(0, 0%, 53%);
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.pricing-model .pricing-container .text-content .price {
|
|
|
|
display: inline-block;
|
2017-12-01 08:42:34 +01:00
|
|
|
margin-right: 2px;
|
2017-05-15 20:42:04 +02:00
|
|
|
|
|
|
|
font-size: 3.5em;
|
|
|
|
font-weight: 600;
|
|
|
|
line-height: 0.8;
|
2021-07-24 06:18:50 +02:00
|
|
|
margin-top: 4px;
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.pricing-model .pricing-container .bottom .details {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
2021-07-24 06:18:50 +02:00
|
|
|
margin-left: 8px;
|
2017-05-15 20:42:04 +02:00
|
|
|
margin-top: 4px;
|
|
|
|
|
|
|
|
font-size: 0.9em;
|
|
|
|
font-weight: 400;
|
2018-09-27 21:57:07 +02:00
|
|
|
color: hsl(0, 0%, 53%);
|
2017-05-15 20:42:04 +02:00
|
|
|
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2019-06-17 06:01:45 +02:00
|
|
|
.pricing-model .pricing-container .bottom .button {
|
2021-07-24 06:18:50 +02:00
|
|
|
margin-top: 24px;
|
2019-06-17 06:01:45 +02:00
|
|
|
display: block;
|
|
|
|
text-align: center;
|
2017-05-15 20:42:04 +02:00
|
|
|
|
|
|
|
font-size: 0.9em;
|
|
|
|
|
2017-09-01 01:32:33 +02:00
|
|
|
transition: all 0.3s ease;
|
|
|
|
}
|
2017-05-15 20:42:04 +02:00
|
|
|
|
|
|
|
.pricing-model .pricing-container .price-box:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
2019-06-17 06:01:45 +02:00
|
|
|
.pricing-model .pricing-container .price-box:focus .button {
|
2020-08-06 02:42:07 +02:00
|
|
|
box-shadow: 0 0 25px hsl(169, 48%, 60%);
|
2017-05-15 20:42:04 +02:00
|
|
|
animation: box-shadow-pulse 2s infinite;
|
|
|
|
}
|
|
|
|
|
2018-10-24 06:09:01 +02:00
|
|
|
.pricing-model .pricing-container .text-content .standard-price-box {
|
2018-05-11 03:15:17 +02:00
|
|
|
display: flex;
|
2020-02-24 22:55:05 +01:00
|
|
|
height: 55px;
|
2018-05-11 03:15:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.pricing-model .pricing-container .text-content .price .price-cents {
|
2020-08-04 23:58:56 +02:00
|
|
|
font-size: 0.4em;
|
2018-05-11 03:15:17 +02:00
|
|
|
vertical-align: top;
|
|
|
|
position: relative;
|
|
|
|
top: 6px;
|
|
|
|
}
|
|
|
|
|
2017-05-15 20:42:04 +02:00
|
|
|
/* while the overlay is showing, the transform properties should stay fixed
|
|
|
|
for the container that sits inline in the page. */
|
|
|
|
|
|
|
|
.pricing-overlay.pricing-model {
|
|
|
|
position: fixed;
|
|
|
|
top: -140px;
|
2020-08-06 02:42:07 +02:00
|
|
|
left: 0;
|
2017-05-15 20:42:04 +02:00
|
|
|
width: 100vw;
|
|
|
|
height: 100vh;
|
|
|
|
|
|
|
|
opacity: 0;
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
|
|
z-index: 10;
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.plans .pricing-overlay.pricing-model {
|
|
|
|
top: -220px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pricing-overlay.pricing-model .pricing-container {
|
|
|
|
padding: 50px;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pricing-overlay.pricing-model.active {
|
|
|
|
opacity: 1;
|
|
|
|
pointer-events: all;
|
2019-06-19 04:53:16 +02:00
|
|
|
background-color: hsla(0, 0%, 0%, 0.6);
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.pricing-overlay.pricing-model .price-box {
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pricing-overlay.pricing-model .info-box {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
margin-left: 50px;
|
|
|
|
margin-top: -2px;
|
|
|
|
width: calc(100% - 300px - 50px);
|
|
|
|
|
2018-10-08 22:31:26 +02:00
|
|
|
background-color: hsl(0, 0%, 100%);
|
2017-05-15 20:42:04 +02:00
|
|
|
opacity: 0;
|
|
|
|
transform: translateY(300px);
|
|
|
|
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pricing-overlay.pricing-model .info-box.show {
|
|
|
|
opacity: 1;
|
|
|
|
transform: translateY(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
.pricing-overlay.pricing-model .info-box .text-content {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
height: calc(100% - 40px);
|
|
|
|
width: calc(100% - 300px - 40px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.pricing-overlay.pricing-model .info-box .text-content h1 {
|
2020-08-06 02:42:07 +02:00
|
|
|
margin-top: 0;
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.pricing-overlay.pricing-model .info-box .text-content p {
|
2018-09-27 21:57:07 +02:00
|
|
|
color: hsl(0, 0%, 53%);
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.pricing-overlay.pricing-model .info-box .text-content .feature-detail-box {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
2020-08-06 02:42:07 +02:00
|
|
|
bottom: 0;
|
2017-05-15 20:42:04 +02:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2020-08-04 23:58:56 +02:00
|
|
|
.pricing-overlay.pricing-model
|
|
|
|
.info-box
|
|
|
|
.text-content
|
|
|
|
.feature-detail-box
|
|
|
|
.feature {
|
2017-05-15 20:42:04 +02:00
|
|
|
display: inline-block;
|
|
|
|
width: calc(33% - 21px);
|
|
|
|
height: 200px;
|
2018-09-27 21:57:07 +02:00
|
|
|
background-color: hsl(0, 0%, 93%);
|
2017-05-15 20:42:04 +02:00
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-content .pricing-details {
|
2020-08-06 02:42:07 +02:00
|
|
|
padding: 15px 0 15px 0;
|
2018-05-07 22:50:57 +02:00
|
|
|
height: 25px;
|
2017-05-15 20:42:04 +02:00
|
|
|
|
|
|
|
font-weight: 400;
|
2018-09-27 21:57:07 +02:00
|
|
|
color: hsl(0, 0%, 53%);
|
2017-05-15 20:42:04 +02:00
|
|
|
font-style: italic;
|
|
|
|
text-align: center;
|
2021-07-22 02:42:14 +02:00
|
|
|
|
|
|
|
&.multi-line {
|
2021-07-24 06:18:50 +02:00
|
|
|
padding: 5px 0 25px 0;
|
2021-07-22 02:42:14 +02:00
|
|
|
}
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.pricing-overlay.pricing-model .info-box .image {
|
|
|
|
width: 300px;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
float: right;
|
|
|
|
|
2018-10-06 18:49:20 +02:00
|
|
|
background-color: hsl(169, 45%, 43%);
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
|
2018-11-08 22:43:55 +01:00
|
|
|
.portico-landing.jobs h2 {
|
|
|
|
line-height: 1.4;
|
|
|
|
margin: 20px 0 5px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.jobs h3 {
|
|
|
|
line-height: 1.4;
|
|
|
|
margin: 20px 0 7px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.jobs .open-positions-top .padded-content {
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.jobs .how-we-work .padded-content {
|
|
|
|
padding-top: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.jobs .what-were-building {
|
|
|
|
background-color: hsl(217, 22%, 93%);
|
|
|
|
}
|
|
|
|
|
2017-05-15 20:42:04 +02:00
|
|
|
@keyframes box-shadow-pulse {
|
|
|
|
0% {
|
2020-08-06 02:42:07 +02:00
|
|
|
box-shadow: 0 0 0 hsla(170, 47%, 60%, 1);
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
2017-11-13 17:26:11 +01:00
|
|
|
|
2017-05-15 20:42:04 +02:00
|
|
|
50% {
|
2020-08-06 02:42:07 +02:00
|
|
|
box-shadow: 0 0 25px hsla(170, 47%, 60%, 0.8);
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
2017-11-13 17:26:11 +01:00
|
|
|
|
2017-05-15 20:42:04 +02:00
|
|
|
100% {
|
2020-08-06 02:42:07 +02:00
|
|
|
box-shadow: 0 0 0 hsla(170, 47%, 60%, 1);
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-28 01:45:25 +01:00
|
|
|
/* -- media queries -- */
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 1426px) {
|
2017-06-06 22:05:17 +02:00
|
|
|
.portico-landing.hello .integrations .integration-icons .hide-1 {
|
|
|
|
display: none;
|
|
|
|
}
|
2017-06-13 01:06:47 +02:00
|
|
|
|
|
|
|
.portico-landing.integrations .integration-categories-sidebar {
|
|
|
|
padding-left: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.integrations .integration-lozenge {
|
|
|
|
width: 135px;
|
|
|
|
}
|
2017-06-06 22:05:17 +02:00
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 1390px) {
|
2020-08-04 23:58:56 +02:00
|
|
|
.portico-landing.plans
|
|
|
|
.pricing-container
|
|
|
|
.block:not(:first-child)
|
|
|
|
.responsive-title {
|
2017-08-30 20:39:38 +02:00
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 1376px) {
|
2017-05-15 20:42:04 +02:00
|
|
|
.portico-landing.plans .price-box {
|
|
|
|
margin: 20px;
|
|
|
|
}
|
|
|
|
|
2017-03-09 21:18:14 +01:00
|
|
|
.portico-landing.apps .main .details-container {
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.apps .main .details-container .details-box {
|
|
|
|
display: none;
|
|
|
|
position: static;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.apps .main .details-container .details-box h1 {
|
2020-08-06 02:42:07 +02:00
|
|
|
margin-top: 0;
|
2017-03-09 21:18:14 +01:00
|
|
|
padding-top: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.apps .main .details-container .details-box.show {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.apps .main .details-box[data-name="linux"] .image {
|
|
|
|
display: block;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
2020-08-04 23:58:56 +02:00
|
|
|
.portico-landing.apps
|
|
|
|
.main
|
|
|
|
.details-box[data-name="linux"]
|
|
|
|
.image
|
|
|
|
.platform,
|
2017-03-09 21:18:14 +01:00
|
|
|
.portico-landing.apps .main .details-box[data-name="linux"] .instructions {
|
|
|
|
text-align: center;
|
|
|
|
width: calc(100% - 40px);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width >= 1296px), (687px <= width <= 985px) {
|
2017-09-02 03:12:15 +02:00
|
|
|
/* while there are nine, show only two rows of four. */
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .company-box > div:last-of-type {
|
2017-09-02 03:12:15 +02:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 1295px) {
|
2017-04-20 20:44:49 +02:00
|
|
|
.portico-landing.hello .apps .right-side {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .left-side {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2017-06-06 22:05:17 +02:00
|
|
|
|
|
|
|
.portico-landing.hello .integrations .content {
|
|
|
|
max-width: 750px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .integrations .integration-icons {
|
|
|
|
max-width: 600px;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 0 auto;
|
2017-06-08 19:53:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .left-side .content {
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 0 auto 50px;
|
2017-06-06 22:05:17 +02:00
|
|
|
}
|
2017-08-30 23:33:01 +02:00
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .company-box .company {
|
2017-08-30 23:33:01 +02:00
|
|
|
width: calc(33% - 44px);
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 1100px) {
|
2020-07-19 11:01:50 +02:00
|
|
|
.tour .carousel-inner img {
|
|
|
|
&.zulip-topic,
|
|
|
|
&.slack-overwhelming,
|
|
|
|
&.zulip-easy {
|
|
|
|
width: 85%;
|
|
|
|
left: 0;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
}
|
|
|
|
|
2018-06-01 19:58:31 +02:00
|
|
|
.tour .carousel-inner .tour-item-header {
|
2018-05-09 20:08:44 +02:00
|
|
|
margin: 0 0 30px 0;
|
|
|
|
}
|
|
|
|
|
2020-07-19 12:34:10 +02:00
|
|
|
.tour .carousel-control {
|
|
|
|
&.right {
|
|
|
|
right: 20px;
|
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
|
2020-07-19 12:34:10 +02:00
|
|
|
&.left {
|
|
|
|
left: 20px;
|
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
}
|
|
|
|
|
2018-06-01 19:58:31 +02:00
|
|
|
.tour .carousel-inner .zulip-slack-comparison {
|
2018-07-25 21:24:36 +02:00
|
|
|
width: 650px;
|
|
|
|
max-width: 100%;
|
2018-05-09 20:08:44 +02:00
|
|
|
|
2020-07-19 10:54:22 +02:00
|
|
|
.comparison-zulip {
|
|
|
|
width: 450px;
|
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
|
2020-07-19 10:54:22 +02:00
|
|
|
.comparison-slack {
|
|
|
|
width: 200px;
|
|
|
|
}
|
2018-07-25 21:24:36 +02:00
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 1024px) {
|
2018-06-01 19:58:31 +02:00
|
|
|
.portico-landing.hello .gradients .gradient {
|
|
|
|
height: 1400px;
|
|
|
|
}
|
|
|
|
|
2017-06-08 21:25:19 +02:00
|
|
|
.portico-landing {
|
|
|
|
padding-top: 170px;
|
2017-02-28 01:45:25 +01:00
|
|
|
}
|
|
|
|
|
2020-05-27 00:43:36 +02:00
|
|
|
nav {
|
|
|
|
&.white {
|
|
|
|
padding-bottom: 40px;
|
|
|
|
}
|
2020-05-26 22:07:36 +02:00
|
|
|
|
2020-05-27 00:43:36 +02:00
|
|
|
.logo {
|
|
|
|
float: none;
|
|
|
|
display: block;
|
|
|
|
margin: 0 auto;
|
|
|
|
text-align: center;
|
2017-02-28 01:45:25 +01:00
|
|
|
|
2020-05-27 00:43:36 +02:00
|
|
|
span {
|
|
|
|
color: hsl(0, 0%, 100%);
|
|
|
|
}
|
2020-05-26 21:43:39 +02:00
|
|
|
}
|
2020-05-26 21:42:22 +02:00
|
|
|
|
2020-05-27 00:43:36 +02:00
|
|
|
ul {
|
|
|
|
display: block;
|
|
|
|
margin: 20px auto 0 auto;
|
|
|
|
float: none;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2017-06-08 21:25:19 +02:00
|
|
|
}
|
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
.portico-landing.features-app {
|
|
|
|
section {
|
|
|
|
.headliner {
|
|
|
|
.image {
|
|
|
|
width: 200px;
|
|
|
|
height: 200px;
|
|
|
|
}
|
2017-02-28 01:45:25 +01:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
.feature-box {
|
|
|
|
width: calc(100% - 200px - 20px);
|
|
|
|
}
|
2020-06-14 20:04:35 +02:00
|
|
|
}
|
2017-08-30 20:38:54 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
&.messages {
|
|
|
|
display: block;
|
|
|
|
text-align: center;
|
2017-10-26 02:12:20 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
> * {
|
|
|
|
display: inline-block;
|
|
|
|
text-align: left;
|
|
|
|
}
|
2017-10-26 02:12:20 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
.image {
|
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
}
|
2020-06-14 20:04:35 +02:00
|
|
|
}
|
2020-06-14 17:08:30 +02:00
|
|
|
}
|
2017-10-26 02:12:20 +02:00
|
|
|
}
|
|
|
|
|
2017-08-30 20:38:54 +02:00
|
|
|
.portico-landing.plans .compare .padded-content {
|
|
|
|
width: auto;
|
|
|
|
}
|
2017-02-28 01:45:25 +01:00
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 985px) {
|
2017-03-09 21:18:14 +01:00
|
|
|
.features .feature-box .text-content {
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.features .feature-box .image {
|
|
|
|
float: none;
|
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.features .text-content .flex {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.apps .main {
|
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
|
|
|
.portico-landing.hello .screen.hero-screen {
|
|
|
|
width: 420px;
|
|
|
|
height: 282px;
|
|
|
|
padding: 65px 117px;
|
|
|
|
|
2020-07-18 11:07:46 +02:00
|
|
|
.main-page {
|
|
|
|
overflow: hidden;
|
|
|
|
transform: translateY(-12px) translateX(2px);
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.screen.hero-screen .col-4 .action-block {
|
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .carousel-quotes {
|
2018-05-02 02:31:05 +02:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .fa-chevron-right {
|
2018-05-02 02:31:05 +02:00
|
|
|
right: -40px;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .fa-chevron-left {
|
2018-05-02 02:31:05 +02:00
|
|
|
left: -40px;
|
|
|
|
}
|
|
|
|
|
2017-04-20 20:44:49 +02:00
|
|
|
.screen.hero-screen .line {
|
|
|
|
height: 4px;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 4px 0;
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.screen .message-feed .message .content {
|
|
|
|
top: -12px;
|
|
|
|
}
|
|
|
|
|
2017-06-06 22:05:17 +02:00
|
|
|
.portico-landing.hello .apps,
|
|
|
|
.portico-landing.hello .integrations {
|
2017-06-08 21:25:19 +02:00
|
|
|
padding: 200px 50px 80px 50px;
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .left-side .content {
|
|
|
|
width: 100%;
|
2017-06-08 21:25:19 +02:00
|
|
|
text-align: center;
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
2017-06-06 22:05:17 +02:00
|
|
|
.portico-landing.hello .integrations {
|
|
|
|
width: 100%;
|
|
|
|
padding: 80px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .integrations .content {
|
|
|
|
padding: 0 50px;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials hr,
|
|
|
|
.portico-landing .testimonials .company-container {
|
2017-04-20 20:44:49 +02:00
|
|
|
width: 100%;
|
|
|
|
}
|
2017-08-30 23:33:01 +02:00
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .company-box .company {
|
2017-08-30 23:33:01 +02:00
|
|
|
width: calc(25% - 44px);
|
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
|
2020-07-19 11:01:50 +02:00
|
|
|
.tour .carousel-inner img {
|
|
|
|
&.slack-overwhelming,
|
|
|
|
&.zulip-easy {
|
|
|
|
width: 80%;
|
|
|
|
left: 0;
|
|
|
|
}
|
2018-07-25 21:24:36 +02:00
|
|
|
}
|
2018-11-03 16:52:36 +01:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
.portico-landing.hello .hero {
|
|
|
|
header {
|
|
|
|
width: calc(100% - 50px);
|
|
|
|
}
|
2018-11-03 16:52:36 +01:00
|
|
|
}
|
2017-03-09 21:18:14 +01:00
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 906px) {
|
2017-07-20 22:00:23 +02:00
|
|
|
.portico-landing.why-page .hero p br {
|
|
|
|
display: none;
|
|
|
|
}
|
2018-02-14 00:36:15 +01:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
.portico-landing.features-app {
|
|
|
|
section {
|
|
|
|
&.notifications {
|
|
|
|
padding: 50px 10px;
|
2018-02-14 00:36:15 +01:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
.image-block {
|
|
|
|
display: none;
|
|
|
|
}
|
2020-06-14 20:04:35 +02:00
|
|
|
}
|
2020-06-14 17:23:10 +02:00
|
|
|
}
|
2018-02-14 00:36:15 +01:00
|
|
|
}
|
2018-05-01 22:54:30 +02:00
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .quote-container {
|
2018-05-01 22:54:30 +02:00
|
|
|
width: 96%;
|
|
|
|
padding-left: 4%;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .carousel-inner {
|
2018-05-01 22:54:30 +02:00
|
|
|
left: -4%;
|
|
|
|
}
|
2017-06-13 01:06:47 +02:00
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 830px) {
|
2020-06-15 03:08:08 +02:00
|
|
|
.portico-landing.features-app {
|
|
|
|
section {
|
|
|
|
.headliner {
|
|
|
|
display: inline-flex;
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
width: auto;
|
|
|
|
height: 250px;
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
margin: 50px;
|
2017-07-19 19:41:23 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2020-06-14 20:04:35 +02:00
|
|
|
}
|
2017-07-19 19:41:23 +02:00
|
|
|
}
|
2018-05-07 21:14:51 +02:00
|
|
|
|
|
|
|
.portico-landing.hello .apps .left-side .platform-icons .group {
|
2018-07-25 21:24:36 +02:00
|
|
|
margin: 50px 30px;
|
|
|
|
display: block;
|
2018-05-07 21:14:51 +02:00
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
|
2018-06-01 19:58:31 +02:00
|
|
|
.portico-landing.hello .tour .carousel-inner .item-container {
|
2018-07-25 21:24:36 +02:00
|
|
|
width: 85%;
|
2018-05-09 20:08:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.tour .carousel-control {
|
|
|
|
font-size: 1.2em;
|
|
|
|
|
2020-07-19 12:34:10 +02:00
|
|
|
&.right {
|
|
|
|
right: -10px;
|
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
|
2020-07-19 12:34:10 +02:00
|
|
|
&.left {
|
|
|
|
left: -10px;
|
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
}
|
|
|
|
|
2018-06-01 19:58:31 +02:00
|
|
|
.tour .carousel-inner .zulip-slack-comparison {
|
2018-07-25 21:24:36 +02:00
|
|
|
width: 100%;
|
2018-05-09 20:08:44 +02:00
|
|
|
|
2020-07-19 10:54:22 +02:00
|
|
|
.comparison-zulip {
|
|
|
|
width: 65%;
|
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
|
2020-07-19 10:54:22 +02:00
|
|
|
.comparison-slack {
|
|
|
|
width: 35%;
|
|
|
|
}
|
2018-07-25 21:24:36 +02:00
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
|
2018-07-25 21:24:36 +02:00
|
|
|
.tour .carousel-inner .comparison-slack img.slack-unreads {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
|
2018-07-25 21:24:36 +02:00
|
|
|
.tour .carousel-inner .tour-item-header {
|
|
|
|
font-size: 1.1em;
|
|
|
|
}
|
2017-06-13 01:06:47 +02:00
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 768px) {
|
2017-07-19 19:41:23 +02:00
|
|
|
nav {
|
2017-02-28 01:45:25 +01:00
|
|
|
padding-left: 50px;
|
|
|
|
padding-right: 50px;
|
2017-08-30 20:38:54 +02:00
|
|
|
width: calc(100% - 100px);
|
2017-02-28 01:45:25 +01:00
|
|
|
|
2020-05-27 00:43:36 +02:00
|
|
|
.hamburger {
|
|
|
|
position: relative;
|
|
|
|
z-index: 10;
|
|
|
|
}
|
2020-05-26 22:09:08 +02:00
|
|
|
}
|
|
|
|
|
2020-07-18 11:49:17 +02:00
|
|
|
.portico-landing.hello .open-source {
|
|
|
|
.flex {
|
|
|
|
display: block;
|
|
|
|
}
|
2018-05-07 21:26:47 +02:00
|
|
|
|
2020-07-18 11:49:17 +02:00
|
|
|
img {
|
|
|
|
display: block;
|
|
|
|
width: 300px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
2018-05-07 21:26:47 +02:00
|
|
|
|
2020-07-18 11:49:17 +02:00
|
|
|
.il-block {
|
|
|
|
width: 75%;
|
|
|
|
}
|
2018-05-07 21:26:47 +02:00
|
|
|
}
|
|
|
|
|
2017-02-28 01:45:25 +01:00
|
|
|
.main {
|
2017-08-30 21:17:08 +02:00
|
|
|
width: auto;
|
2017-02-28 01:45:25 +01:00
|
|
|
}
|
|
|
|
|
2017-07-20 22:00:23 +02:00
|
|
|
.portico-landing.why-page .main {
|
|
|
|
width: auto;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 0;
|
2017-07-20 22:00:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.why-page .hero {
|
|
|
|
padding-left: 20px;
|
|
|
|
padding-right: 20px;
|
|
|
|
font-size: 0.6em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.why-page .hero p {
|
|
|
|
font-size: 2em;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.why-page .padded-content {
|
|
|
|
padding: 50px 20px;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:56:16 +01:00
|
|
|
.portico-landing.why-page .testimonials .padded-content {
|
|
|
|
padding: 50px;
|
|
|
|
}
|
|
|
|
|
2018-05-09 21:57:55 +02:00
|
|
|
.portico-landing.why-page .testimonials .carousel-quotes {
|
2018-07-25 21:24:36 +02:00
|
|
|
width: 90%;
|
|
|
|
}
|
2018-05-09 21:57:55 +02:00
|
|
|
|
2018-07-25 21:24:36 +02:00
|
|
|
.portico-landing.why-page .testimonials .quote-container {
|
|
|
|
padding-left: 4%;
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
2018-05-09 21:57:55 +02:00
|
|
|
|
2017-03-09 21:18:14 +01:00
|
|
|
.platform.image {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.platform.description {
|
|
|
|
width: 100% !important;
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
.portico-landing.hello .hero {
|
|
|
|
header {
|
|
|
|
width: 600px;
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .left-side .content {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .screen.hero-screen {
|
|
|
|
width: 300px;
|
|
|
|
height: 201px;
|
|
|
|
padding: 43px 73px;
|
|
|
|
}
|
|
|
|
|
2017-08-08 20:14:55 +02:00
|
|
|
.portico-landing.hello .features .col-2 {
|
2017-04-20 20:44:49 +02:00
|
|
|
width: 100%;
|
|
|
|
}
|
2017-06-08 21:25:19 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
.portico-landing.features-app {
|
|
|
|
section {
|
2020-08-06 02:42:07 +02:00
|
|
|
padding: 0 20px;
|
2020-06-14 20:04:35 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
&.hero {
|
|
|
|
padding: 50px;
|
2020-06-14 20:04:35 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
h1 {
|
|
|
|
font-size: 3em;
|
|
|
|
}
|
2020-06-14 20:04:35 +02:00
|
|
|
}
|
|
|
|
}
|
2017-07-19 19:41:23 +02:00
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
|
2018-06-29 16:51:36 +02:00
|
|
|
.billing-upgrade-page {
|
|
|
|
.nav-tabs,
|
|
|
|
.tab-content {
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
}
|
2017-02-28 01:45:25 +01:00
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 686px) {
|
2017-06-08 21:25:19 +02:00
|
|
|
.portico-landing {
|
|
|
|
padding-top: 120px;
|
|
|
|
}
|
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
.portico-landing.apps .hero {
|
|
|
|
height: 350px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.apps .hero h1 {
|
|
|
|
font-size: 1.9em;
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
2017-09-27 18:15:12 +02:00
|
|
|
.portico-landing.apps .hero .info .flex,
|
|
|
|
.portico-landing.apps .hero .image .flex {
|
2020-03-07 15:05:37 +01:00
|
|
|
height: 200px;
|
2020-08-06 02:42:07 +02:00
|
|
|
min-height: 0;
|
2019-03-31 19:18:14 +02:00
|
|
|
width: 100%;
|
2017-09-27 18:15:12 +02:00
|
|
|
}
|
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
.portico-landing.apps .other-apps {
|
|
|
|
padding: 50px 5px 120px 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.apps .other-apps h2 {
|
|
|
|
font-size: 1.5em;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.apps .other-apps .apps .icon {
|
2020-08-06 02:42:07 +02:00
|
|
|
padding: 0 14px;
|
2017-07-08 02:28:18 +02:00
|
|
|
width: 30px;
|
|
|
|
padding-top: 8px;
|
2020-08-06 02:42:07 +02:00
|
|
|
padding-bottom: 0;
|
2017-07-08 02:28:18 +02:00
|
|
|
font-size: 2.3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.apps .other-apps .apps .icon.fa-mobile-phone {
|
|
|
|
padding: 7px 10px 5px 10px;
|
|
|
|
width: 35px;
|
|
|
|
font-size: 2.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.apps .other-apps .apps .icon.fa-windows {
|
|
|
|
font-size: 2em;
|
|
|
|
padding: 10px 13px 2px 13px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.apps .other-apps .apps .icon::after {
|
|
|
|
content: "";
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.apps .hero .image {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.apps .hero .info {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2017-02-28 01:45:25 +01:00
|
|
|
.main {
|
|
|
|
width: calc(100% - 50px);
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
2017-04-20 20:44:49 +02:00
|
|
|
.portico-landing.hello .hero {
|
|
|
|
padding-bottom: 100px;
|
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
.waves {
|
|
|
|
height: 450px;
|
|
|
|
}
|
|
|
|
|
|
|
|
header {
|
|
|
|
width: auto;
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
2020-06-20 13:08:24 +02:00
|
|
|
.portico-landing.hello .screen.hero-screen {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2020-05-27 00:43:36 +02:00
|
|
|
nav {
|
|
|
|
.hamburger {
|
|
|
|
display: inline-block;
|
|
|
|
float: right;
|
|
|
|
}
|
2017-02-28 01:45:25 +01:00
|
|
|
|
2020-05-27 00:43:36 +02:00
|
|
|
.content {
|
2020-08-06 02:34:58 +02:00
|
|
|
display: inline-block;
|
|
|
|
z-index: 11;
|
|
|
|
|
2020-05-27 00:43:36 +02:00
|
|
|
> ul.show {
|
|
|
|
outline-color: hsla(203, 43%, 22%, 0.7);
|
|
|
|
}
|
2020-05-26 21:47:16 +02:00
|
|
|
}
|
|
|
|
|
2020-05-27 00:43:36 +02:00
|
|
|
ul {
|
2020-08-06 02:42:07 +02:00
|
|
|
margin-top: 0;
|
2020-08-06 02:34:58 +02:00
|
|
|
text-align: left;
|
|
|
|
|
2020-05-27 00:43:36 +02:00
|
|
|
position: fixed;
|
|
|
|
float: none;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
height: 100vh;
|
|
|
|
width: 300px;
|
|
|
|
padding-left: 30px;
|
2017-02-28 01:45:25 +01:00
|
|
|
|
2020-05-27 00:43:36 +02:00
|
|
|
background-color: hsl(0, 0%, 100%);
|
2020-08-06 02:42:07 +02:00
|
|
|
transform: translate(-350px, 0);
|
2017-02-28 01:45:25 +01:00
|
|
|
|
2020-08-06 02:42:07 +02:00
|
|
|
box-shadow: 0 0 80px hsla(0, 0%, 0%, 0.12);
|
2017-02-28 01:45:25 +01:00
|
|
|
|
2020-05-27 00:43:36 +02:00
|
|
|
transition: all 0.5s ease;
|
2017-02-28 01:45:25 +01:00
|
|
|
|
2021-06-23 23:00:05 +02:00
|
|
|
overflow-y: auto;
|
|
|
|
|
2020-05-27 00:43:36 +02:00
|
|
|
&.show {
|
2020-08-06 02:42:07 +02:00
|
|
|
transform: translate(0, 0);
|
2020-05-27 00:43:36 +02:00
|
|
|
}
|
2017-02-28 01:45:25 +01:00
|
|
|
|
2020-05-27 00:43:36 +02:00
|
|
|
.exit {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
|
|
|
right: 25px;
|
2017-02-28 01:45:25 +01:00
|
|
|
|
2020-05-27 00:43:36 +02:00
|
|
|
font-weight: 100;
|
|
|
|
font-size: 3em;
|
|
|
|
color: initial;
|
|
|
|
}
|
2017-06-12 22:05:29 +02:00
|
|
|
|
2021-06-23 23:00:05 +02:00
|
|
|
li,
|
|
|
|
div.dropdown div.dropdown-label {
|
2020-05-27 00:43:36 +02:00
|
|
|
display: block;
|
|
|
|
font-size: 1.5em;
|
|
|
|
font-weight: 300;
|
|
|
|
line-height: 1.5;
|
2017-06-12 22:05:29 +02:00
|
|
|
|
2020-05-27 00:43:36 +02:00
|
|
|
&.active {
|
2020-07-30 04:58:12 +02:00
|
|
|
font-weight: 400;
|
|
|
|
|
2020-05-27 00:43:36 +02:00
|
|
|
&::after {
|
|
|
|
content: ">";
|
|
|
|
transform: scale(1, 1);
|
|
|
|
bottom: auto;
|
|
|
|
left: -25px;
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
2020-05-26 22:02:06 +02:00
|
|
|
}
|
2020-05-26 21:56:57 +02:00
|
|
|
}
|
2021-06-23 23:00:05 +02:00
|
|
|
|
|
|
|
div.dropdown div.dropdown-label.first {
|
|
|
|
margin-top: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.dropdown ul.dropdown-list {
|
|
|
|
position: relative;
|
|
|
|
box-shadow: none;
|
|
|
|
padding-left: 10px;
|
|
|
|
border: none;
|
|
|
|
|
|
|
|
li {
|
|
|
|
&:hover {
|
|
|
|
background-color: unset;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-dropdown {
|
2021-07-20 20:35:44 +02:00
|
|
|
ul.resources-options,
|
|
|
|
ul.solutions-options {
|
2021-06-23 23:00:05 +02:00
|
|
|
div.dropdown-column {
|
|
|
|
float: none;
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
padding-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
li.nav-header {
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.portico-header {
|
|
|
|
div.content ul div.nav-dropdown {
|
|
|
|
display: block;
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
2020-05-26 21:56:57 +02:00
|
|
|
}
|
2017-02-28 01:45:25 +01:00
|
|
|
}
|
|
|
|
|
2020-05-26 22:13:35 +02:00
|
|
|
.portico-header .content > ul::before {
|
|
|
|
content: "Zulip";
|
|
|
|
display: block;
|
2021-06-23 23:00:05 +02:00
|
|
|
margin-top: 25px;
|
2020-05-26 22:13:35 +02:00
|
|
|
padding-top: 5px;
|
|
|
|
margin-left: 10px;
|
|
|
|
|
|
|
|
width: 100px;
|
|
|
|
height: 40px;
|
|
|
|
|
|
|
|
font-size: 1.5rem;
|
|
|
|
line-height: 30px;
|
|
|
|
text-align: right;
|
|
|
|
color: hsl(0, 0%, 27%);
|
|
|
|
|
|
|
|
background-size: 40px auto;
|
2020-08-13 00:27:39 +02:00
|
|
|
background-image: url(../../images/zulip-logo.svg);
|
2020-05-26 22:13:35 +02:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-header .dropdown ul {
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
margin: 42px 0 0 0;
|
|
|
|
font-size: 0.8em;
|
|
|
|
}
|
|
|
|
|
2017-02-28 01:45:25 +01:00
|
|
|
nav ul li,
|
2017-11-22 23:14:15 +01:00
|
|
|
nav ul li a,
|
2021-06-23 23:00:05 +02:00
|
|
|
nav ul div.dropdown div.dropdown-label,
|
2017-11-22 23:14:15 +01:00
|
|
|
.portico-header .dropdown-pill .realm-name {
|
2017-06-21 08:57:47 +02:00
|
|
|
color: hsl(0, 0%, 27%) !important;
|
2017-02-28 01:45:25 +01:00
|
|
|
}
|
|
|
|
|
2017-03-09 21:18:14 +01:00
|
|
|
.portico-landing.apps .main ul.sidebar {
|
|
|
|
display: block;
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.apps .main ul.sidebar li {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 10px;
|
|
|
|
width: 80px;
|
|
|
|
text-align: center;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.apps .main .details-container {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .company-box .company {
|
2017-04-20 20:44:49 +02:00
|
|
|
margin: 10px;
|
|
|
|
width: calc(33% - 24px);
|
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
|
|
|
|
.tour .carousel-control {
|
|
|
|
font-size: 1.1em;
|
|
|
|
|
2020-07-19 12:34:10 +02:00
|
|
|
.right {
|
|
|
|
right: -30px;
|
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
|
2020-07-19 12:34:10 +02:00
|
|
|
.left {
|
|
|
|
left: -30px;
|
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
}
|
|
|
|
|
2018-06-01 19:58:31 +02:00
|
|
|
.tour .carousel-inner .zulip-slack-comparison img {
|
2018-05-09 20:08:44 +02:00
|
|
|
max-width: 90%;
|
|
|
|
}
|
|
|
|
|
2018-06-01 19:58:31 +02:00
|
|
|
.portico-landing.hello .tour .carousel-inner .item-container {
|
2018-05-09 20:08:44 +02:00
|
|
|
height: 450px;
|
|
|
|
}
|
|
|
|
|
2019-07-20 02:24:04 +02:00
|
|
|
.tour .carousel-inner .call-to-action {
|
|
|
|
margin: 10px auto;
|
2018-05-09 20:08:44 +02:00
|
|
|
}
|
2017-02-28 01:45:25 +01:00
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 640px) {
|
2017-06-06 22:05:17 +02:00
|
|
|
.portico-landing.hello .integrations .integration-icons .group {
|
|
|
|
margin: 10px 16px 0 16px;
|
|
|
|
}
|
2020-03-31 00:10:28 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
.portico-landing.features-app {
|
|
|
|
section {
|
|
|
|
&.keyboard-shortcuts {
|
|
|
|
img {
|
|
|
|
&.overflow-wave {
|
|
|
|
top: -100px;
|
|
|
|
}
|
2020-06-14 20:04:35 +02:00
|
|
|
}
|
2020-06-14 16:59:43 +02:00
|
|
|
}
|
2020-06-14 16:53:27 +02:00
|
|
|
}
|
2020-03-31 00:10:28 +02:00
|
|
|
}
|
2017-06-06 22:05:17 +02:00
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 550px) {
|
2020-06-15 03:08:08 +02:00
|
|
|
.portico-landing.features-app {
|
|
|
|
section {
|
|
|
|
&.hero {
|
|
|
|
padding: 50px 20px 20px;
|
|
|
|
}
|
2017-10-26 02:47:30 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
&.messages {
|
2020-08-06 02:42:07 +02:00
|
|
|
padding: 0 20px;
|
2017-10-26 02:47:30 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
h2 {
|
|
|
|
font-size: 2em;
|
|
|
|
}
|
2017-10-26 02:47:30 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
.features {
|
|
|
|
.feature-block {
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 20px 0;
|
2020-06-15 03:08:08 +02:00
|
|
|
}
|
2020-06-14 20:04:35 +02:00
|
|
|
}
|
2020-06-14 17:08:30 +02:00
|
|
|
}
|
2020-06-14 17:02:39 +02:00
|
|
|
}
|
2017-10-26 02:47:30 +02:00
|
|
|
}
|
|
|
|
|
2018-06-01 19:58:31 +02:00
|
|
|
.portico-landing .tour {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .tour .carousel-inner .item-container {
|
|
|
|
height: 400px;
|
2018-05-09 20:08:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.tour .carousel-control {
|
|
|
|
top: 100%;
|
|
|
|
}
|
|
|
|
|
2020-07-19 10:54:22 +02:00
|
|
|
.tour .carousel-inner .zulip-slack-comparison {
|
|
|
|
.comparison-zulip {
|
|
|
|
width: 60%;
|
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
|
2020-07-19 10:54:22 +02:00
|
|
|
.comparison-slack {
|
|
|
|
width: 38%;
|
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
|
2020-07-19 10:54:22 +02:00
|
|
|
.caption {
|
|
|
|
font-size: 90%;
|
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
|
2020-07-19 10:54:22 +02:00
|
|
|
img {
|
|
|
|
max-width: 100%;
|
2018-05-09 20:08:44 +02:00
|
|
|
|
2020-07-19 10:54:22 +02:00
|
|
|
&.zulip-streams {
|
|
|
|
max-width: 140px;
|
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
|
2020-07-19 10:54:22 +02:00
|
|
|
&.zulip-streams-selected {
|
|
|
|
max-width: 95%;
|
|
|
|
}
|
2020-07-19 10:48:11 +02:00
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
}
|
|
|
|
|
2018-06-01 19:58:31 +02:00
|
|
|
.tour .carousel-inner .tour-explanation {
|
2018-05-09 20:08:44 +02:00
|
|
|
opacity: 0.8;
|
|
|
|
font-size: 90%;
|
2018-06-01 19:58:31 +02:00
|
|
|
text-align: left;
|
2018-05-09 20:08:44 +02:00
|
|
|
}
|
2018-07-03 16:42:53 +02:00
|
|
|
|
2018-07-25 21:24:36 +02:00
|
|
|
.billing-upgrade-page {
|
2018-07-03 16:42:53 +02:00
|
|
|
.payment-schedule {
|
|
|
|
.box {
|
|
|
|
width: 100px;
|
|
|
|
height: 80px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-06-13 01:06:47 +02:00
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 450px) {
|
2018-04-03 04:46:17 +02:00
|
|
|
.portico-landing.plans .price-box {
|
|
|
|
display: inline-flex;
|
|
|
|
flex-direction: column;
|
|
|
|
min-height: 500px;
|
|
|
|
height: auto;
|
|
|
|
max-width: 300px;
|
|
|
|
width: auto;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 10px 0;
|
2018-04-03 04:46:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.pricing-model .pricing-container .text-content {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pricing-model .pricing-container .bottom {
|
|
|
|
position: static;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
2018-06-01 19:58:31 +02:00
|
|
|
.portico-landing.hello .hero {
|
|
|
|
padding: 60px 5px 40px 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello header {
|
|
|
|
padding: 0 45px 0 45px;
|
|
|
|
}
|
|
|
|
|
2018-12-04 19:54:41 +01:00
|
|
|
.portico-landing.hello .integrations .content header {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2017-06-06 22:05:17 +02:00
|
|
|
.portico-landing.hello .integrations .integration-icons .group {
|
2018-05-07 22:03:51 +02:00
|
|
|
margin: 4px 2px;
|
2017-06-06 22:05:17 +02:00
|
|
|
}
|
|
|
|
|
2019-06-10 14:39:32 +02:00
|
|
|
.main {
|
2017-02-28 01:45:55 +01:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2017-08-30 20:38:54 +02:00
|
|
|
.portico-landing.plans .compare .padded-content {
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.plans .pricing-container .block {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2018-06-01 19:58:31 +02:00
|
|
|
.tour .carousel-inner .mobile-hide,
|
|
|
|
.tour .carousel-inner img.mobile-hide,
|
|
|
|
.tour .carousel-inner img.centered-image.mobile-hide {
|
2018-05-09 20:08:44 +02:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2018-06-01 19:58:31 +02:00
|
|
|
.tour .carousel-inner .mobile-show,
|
|
|
|
.tour .carousel-inner img.mobile-show,
|
|
|
|
.tour .carousel-inner img.centered-image.mobile-show {
|
2018-05-09 20:08:44 +02:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2017-02-28 01:45:55 +01:00
|
|
|
.main .padded-content {
|
2017-02-28 01:45:25 +01:00
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer {
|
|
|
|
width: 100vw;
|
|
|
|
}
|
2017-09-02 03:10:56 +02:00
|
|
|
|
|
|
|
/* the gradients leave the bottom of the text and the button white so we
|
|
|
|
want to have the gradients stay darker for longer.
|
|
|
|
*/
|
|
|
|
.gradients .gradient.green {
|
2020-08-04 23:58:56 +02:00
|
|
|
background: linear-gradient(
|
|
|
|
-25deg,
|
|
|
|
transparent 10%,
|
|
|
|
hsl(156, 47%, 47%) 80%
|
|
|
|
);
|
2017-09-02 03:10:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.gradients .gradient.blue {
|
2020-08-04 23:58:56 +02:00
|
|
|
background: linear-gradient(
|
|
|
|
25deg,
|
|
|
|
transparent 10%,
|
|
|
|
hsl(196, 38%, 51%) 80%
|
|
|
|
);
|
2017-09-02 03:10:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.gradients .gradient.sunburst {
|
2020-08-04 23:58:56 +02:00
|
|
|
background: linear-gradient(
|
|
|
|
5deg,
|
|
|
|
transparent 20%,
|
|
|
|
hsl(49, 71%, 68%) 80%
|
|
|
|
);
|
2017-09-02 03:10:56 +02:00
|
|
|
}
|
2017-02-28 01:45:25 +01:00
|
|
|
}
|
2017-06-06 22:05:17 +02:00
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 375px) {
|
2017-06-06 22:05:17 +02:00
|
|
|
.portico-landing.hello .integrations .integration-icons .group {
|
|
|
|
width: 130px;
|
|
|
|
height: 215px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .integrations .integration-icons .integration-logo {
|
|
|
|
width: 60px;
|
|
|
|
}
|
2017-06-13 01:06:47 +02:00
|
|
|
|
2018-06-28 16:46:11 +02:00
|
|
|
.portico-landing.integrations .integration-categories-dropdown {
|
|
|
|
width: 323px;
|
|
|
|
}
|
2020-03-31 00:10:28 +02:00
|
|
|
|
2020-06-15 03:08:08 +02:00
|
|
|
.portico-landing.features-app {
|
|
|
|
section {
|
|
|
|
&.keyboard-shortcuts {
|
|
|
|
img {
|
|
|
|
&.overflow-wave {
|
|
|
|
top: -92px;
|
|
|
|
}
|
2020-06-14 20:04:35 +02:00
|
|
|
}
|
2020-06-14 16:59:43 +02:00
|
|
|
}
|
2020-06-14 16:53:27 +02:00
|
|
|
}
|
2020-03-31 00:10:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 360px) {
|
2020-06-15 03:08:08 +02:00
|
|
|
.portico-landing.features-app {
|
|
|
|
section {
|
|
|
|
.keyboard-shortcuts {
|
|
|
|
img {
|
|
|
|
&.overflow-wave {
|
|
|
|
top: -88px;
|
|
|
|
}
|
2020-06-14 20:04:35 +02:00
|
|
|
}
|
2020-06-14 16:59:43 +02:00
|
|
|
}
|
2020-06-14 16:53:27 +02:00
|
|
|
}
|
2020-03-31 00:10:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* For iPhone 5/SE device */
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 320px) {
|
2020-06-15 03:08:08 +02:00
|
|
|
.portico-landing.features-app {
|
|
|
|
section {
|
|
|
|
.keyboard-shortcuts {
|
|
|
|
img {
|
|
|
|
&.overflow-wave {
|
|
|
|
top: -78px;
|
|
|
|
}
|
2020-06-14 20:04:35 +02:00
|
|
|
}
|
2020-06-14 16:59:43 +02:00
|
|
|
}
|
2020-06-14 16:53:27 +02:00
|
|
|
}
|
2020-03-31 00:10:28 +02:00
|
|
|
}
|
2017-06-13 01:06:47 +02:00
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 313px) {
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .quote-container {
|
2018-05-02 18:56:44 +02:00
|
|
|
width: 93%;
|
|
|
|
padding-left: 7%;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:54:03 +01:00
|
|
|
.portico-landing .testimonials .carousel-inner {
|
2018-05-02 18:56:44 +02:00
|
|
|
left: -7%;
|
|
|
|
}
|
|
|
|
}
|
2019-03-03 16:59:03 +01:00
|
|
|
|
2021-05-06 00:39:52 +02:00
|
|
|
#download-android-apk,
|
|
|
|
#download-mac-arm64 {
|
2019-03-03 16:59:03 +01:00
|
|
|
display: inline-block;
|
|
|
|
color: hsl(0, 0%, 100%);
|
|
|
|
font-size: 13px;
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
2021-07-20 20:33:48 +02:00
|
|
|
|
|
|
|
.feature-container {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 50px 4vw 10px;
|
|
|
|
|
|
|
|
.feature-half {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.md-hide {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.md-display {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (width <= 768px) {
|
|
|
|
.feature-text {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.twitter-tweet {
|
|
|
|
margin: 30px auto !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (width >= 768px) {
|
|
|
|
display: grid;
|
|
|
|
grid-column-gap: 5%;
|
|
|
|
grid-template-columns: 43% auto;
|
|
|
|
max-width: 1300px;
|
|
|
|
align-items: center;
|
|
|
|
justify-items: center;
|
|
|
|
margin: auto;
|
|
|
|
|
|
|
|
.alternate-grid& {
|
|
|
|
grid-template-columns: auto 43%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.feature-half {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.md-display {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.feature-text {
|
|
|
|
h1 {
|
|
|
|
font-size: 30px;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
list-style: none;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul li {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
float: left;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
content: "";
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
margin-right: 5px;
|
|
|
|
margin-top: 2px;
|
|
|
|
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16px" height="16px" viewBox="0 0 24 24"><path d="M12 0c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm-1.25 17.292l-4.5-4.364 1.857-1.858 2.643 2.506 5.643-5.784 1.857 1.857-7.5 7.643z"/></svg>');
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-content {
|
|
|
|
margin-left: 22px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.feature-image {
|
|
|
|
img,
|
|
|
|
div.quote {
|
|
|
|
width: 400px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-22 00:46:29 +02:00
|
|
|
.topics-image {
|
|
|
|
border: solid 2px hsl(0, 0%, 60%);
|
|
|
|
}
|
|
|
|
|
2021-07-20 20:33:48 +02:00
|
|
|
.feature-buttons {
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.twitter-tweet {
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.discounts-section {
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
header {
|
|
|
|
b {
|
|
|
|
font-weight: 600;
|
|
|
|
color: hsl(169, 45%, 43%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.register-buttons {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row wrap;
|
|
|
|
justify-content: center;
|
|
|
|
margin: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Common button styles */
|
2021-07-20 20:51:09 +02:00
|
|
|
.register-now,
|
|
|
|
.register-now:visited {
|
2021-07-22 14:22:08 +02:00
|
|
|
text-align: center;
|
2021-07-20 20:51:09 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
2021-07-20 20:33:48 +02:00
|
|
|
font-size: 15px;
|
|
|
|
margin: 10px 20px;
|
|
|
|
float: left;
|
|
|
|
width: 200px;
|
|
|
|
border: 2px solid;
|
|
|
|
border-radius: 4px;
|
|
|
|
background: none;
|
2021-07-20 20:51:09 +02:00
|
|
|
color: hsl(169, 45%, 43%);
|
2021-07-20 20:33:48 +02:00
|
|
|
vertical-align: middle;
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
|
|
|
backface-visibility: hidden;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
letter-spacing: 2px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
overflow: hidden;
|
|
|
|
transition: border-color 0.3s, background-color 0.3s;
|
|
|
|
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
|
|
|
font-weight: 800;
|
|
|
|
padding: 15px 5px;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
font-weight: 600;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
border-color: hsl(169, 45%, 43%);
|
|
|
|
background-color: hsl(170, 47%, 53%);
|
|
|
|
color: hsl(0, 0%, 100%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.quote {
|
|
|
|
background: hsl(218, 46%, 43%);
|
|
|
|
padding: 1em;
|
|
|
|
border-radius: 1em;
|
|
|
|
font-weight: 400;
|
|
|
|
margin: 40px 5px;
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: hsl(0, 0%, 100%);
|
|
|
|
&.case-study-link {
|
|
|
|
margin-left: 20px;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.author,
|
|
|
|
blockquote {
|
|
|
|
color: hsl(0, 0%, 100%);
|
|
|
|
margin: 5px 20px 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
blockquote {
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
blockquote::before {
|
|
|
|
font-size: 20px;
|
|
|
|
font-weight: 800;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.solutions-page {
|
|
|
|
.hero-text {
|
|
|
|
position: relative;
|
|
|
|
width: 80%;
|
|
|
|
max-width: 700px;
|
|
|
|
margin: 40px auto;
|
|
|
|
font-size: 20px;
|
|
|
|
text-align: center;
|
|
|
|
font-weight: bolder;
|
|
|
|
opacity: 0.9;
|
2021-07-23 06:13:28 +02:00
|
|
|
}
|
2021-07-20 20:33:48 +02:00
|
|
|
|
2021-07-23 06:13:28 +02:00
|
|
|
.hero {
|
2021-07-20 20:33:48 +02:00
|
|
|
a {
|
|
|
|
color: hsl(170, 76%, 64%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.hero-buttons {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row wrap;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: hsl(170, 47%, 33%);
|
|
|
|
font-weight: 600;
|
|
|
|
font-size: 15px;
|
|
|
|
margin: 10px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: hsl(0, 0%, 100%);
|
|
|
|
background-color: hsl(170, 47%, 33%);
|
|
|
|
border-color: hsl(170, 47%, 33%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.feature-end {
|
|
|
|
@media (width >= 768px) {
|
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
margin-top: 20px;
|
|
|
|
text-align: center;
|
|
|
|
font-weight: 600;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
margin: auto;
|
|
|
|
max-width: 800px;
|
|
|
|
padding: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin: auto;
|
|
|
|
max-width: 800px;
|
|
|
|
padding: 30px;
|
|
|
|
}
|
2021-07-21 12:20:15 +02:00
|
|
|
}
|
2021-07-20 20:33:48 +02:00
|
|
|
|
2021-07-21 12:20:15 +02:00
|
|
|
.price-asterisk {
|
|
|
|
text-align: center;
|
|
|
|
margin-top: 0 !important;
|
|
|
|
padding-top: 0 !important;
|
|
|
|
font-size: 15px;
|
|
|
|
opacity: 0.8;
|
2021-07-22 02:42:14 +02:00
|
|
|
max-width: 560px !important;
|
2021-07-20 20:33:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottom-register-buttons {
|
|
|
|
max-width: 800px;
|
|
|
|
margin: auto;
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
text-align: center;
|
|
|
|
font-weight: 600;
|
|
|
|
margin-bottom: 0;
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hero-buttons {
|
|
|
|
margin: 20px;
|
|
|
|
}
|
|
|
|
}
|
2021-07-21 12:20:15 +02:00
|
|
|
|
|
|
|
.for-education.pricing-model {
|
|
|
|
.padded-content {
|
|
|
|
padding-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pricing-container {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row wrap;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
.pricing-details {
|
|
|
|
color: inherit;
|
|
|
|
font-style: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
.price-box {
|
|
|
|
margin: 10px;
|
|
|
|
height: 625px;
|
|
|
|
|
|
|
|
.bottom {
|
|
|
|
height: 275px;
|
|
|
|
|
|
|
|
.standard-register-button {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.free-text {
|
|
|
|
margin-top: 90px;
|
|
|
|
|
|
|
|
.pricing-details {
|
|
|
|
font-size: 34px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
margin-top: 76px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.standard-price-box {
|
|
|
|
flex-flow: row wrap;
|
|
|
|
height: 90px;
|
|
|
|
font-size: 15px;
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
padding-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0 0 -10px 0;
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
font-weight: 550;
|
|
|
|
color: hsl(169, 46%, 33%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-07-22 14:22:08 +02:00
|
|
|
|
|
|
|
.portico-landing.why-page.case-study-page {
|
|
|
|
.bg-dimmer {
|
|
|
|
background-color: hsl(224, 52%, 12%, 86%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.hero-text {
|
|
|
|
margin: 0 auto;
|
|
|
|
font-size: 25px;
|
|
|
|
font-weight: 500;
|
|
|
|
opacity: 0.8;
|
|
|
|
}
|
|
|
|
}
|
2021-07-23 06:13:28 +02:00
|
|
|
|
|
|
|
.feature-intro {
|
|
|
|
max-width: 800px;
|
|
|
|
margin: 50px auto 0;
|
|
|
|
padding: 0 4vw 0;
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-size: 36px;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
}
|