2017-02-28 01:45:25 +01:00
|
|
|
|
html {
|
|
|
|
|
width: 100vw;
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
|
margin: 0;
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background-color: hsl(0, 0%, 91%);
|
|
|
|
|
color: hsl(0, 0%, 27%);
|
2017-02-28 01:45:25 +01:00
|
|
|
|
line-height: normal;
|
|
|
|
|
|
|
|
|
|
max-width: 100vw;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*::-moz-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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*::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 -- */
|
|
|
|
|
button {
|
|
|
|
|
padding: 5px 12px;
|
|
|
|
|
|
|
|
|
|
font-family: inherit;
|
|
|
|
|
font-size: 0.7em;
|
|
|
|
|
background-color: #fff;
|
2017-06-21 08:57:47 +02:00
|
|
|
|
color: hsl(0, 0%, 27%);
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button:active {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background-color: hsl(0, 0%, 98%);
|
|
|
|
|
border: 1px solid hsl(0, 0%, 73%);
|
2017-02-28 01:45:25 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button.green {
|
|
|
|
|
color: #fff;
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background-color: hsl(170, 47%, 53%);
|
2017-02-28 01:45:25 +01:00
|
|
|
|
|
2017-06-21 08:57:47 +02:00
|
|
|
|
border: 1px solid hsl(169, 45%, 43%);
|
2017-02-28 01:45:25 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button.button.grey-transparent {
|
|
|
|
|
display: block;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
padding: 8px 20px;
|
|
|
|
|
|
|
|
|
|
font-size: 1.1rem;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
|
|
|
|
|
color: #fff;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
border: 1px solid #fff;
|
|
|
|
|
|
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button.button.grey-transparent:hover {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background-color: hsla(0, 0%, 100%, 0.2);
|
2017-02-28 01:45:25 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button.button.grey-transparent:active {
|
|
|
|
|
background-color: #fff;
|
2017-06-21 08:57:47 +02:00
|
|
|
|
color: hsl(0, 0%, 40%);
|
2017-02-28 01:45:25 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* -- navbar styling -- */
|
|
|
|
|
|
|
|
|
|
nav {
|
|
|
|
|
position: relative;
|
|
|
|
|
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background-color: hsl(169, 44%, 36%);
|
|
|
|
|
background: -webkit-linear-gradient(to bottom, black, hsl(170, 54%, 61%));
|
|
|
|
|
background: linear-gradient(-145deg, hsl(169, 41%, 31%), hsl(170, 54%, 61%));
|
2017-02-28 01:45:25 +01:00
|
|
|
|
padding: 50px 100px 130px 100px;
|
|
|
|
|
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-20 20:44:49 +02:00
|
|
|
|
nav .hamburger {
|
2017-02-28 01:45:25 +01:00
|
|
|
|
display: none;
|
|
|
|
|
fill: #fff;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
margin-top: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav .content {
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav .stripes,
|
|
|
|
|
nav .faded,
|
|
|
|
|
nav .faded-light {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav .stripes,
|
|
|
|
|
nav .faded,
|
|
|
|
|
nav .faded-light {
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav .stripes {
|
|
|
|
|
background: repeating-linear-gradient(
|
|
|
|
|
75deg,
|
2017-06-21 08:57:47 +02:00
|
|
|
|
hsla(0, 0%, 100%, 0.0) 0px,
|
|
|
|
|
hsla(0, 0%, 100%, 0.05) 200px
|
2017-02-28 01:45:25 +01:00
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav .faded {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background: -webkit-linear-gradient(top bottom, transparent , hsla(0, 0%, 0%, 0.1));
|
|
|
|
|
background: linear-gradient(0deg, transparent , hsla(0, 0%, 0%, 0.1));
|
2017-02-28 01:45:25 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav .faded-light {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background: -webkit-linear-gradient(top top, transparent , hsla(170, 54%, 61%, 0.8));
|
|
|
|
|
background: linear-gradient(180deg, transparent , hsla(170, 54%, 61%, 0.8));
|
2017-02-28 01:45:25 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav .logo {
|
|
|
|
|
top: 7px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav .logo span {
|
2017-04-20 20:44:49 +02:00
|
|
|
|
position: relative;
|
|
|
|
|
left: 5px;
|
|
|
|
|
top: 1px;
|
2017-02-28 01:45:25 +01:00
|
|
|
|
color: #fff;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
font-size: 1.2rem;
|
|
|
|
|
letter-spacing: 0.1em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav .brand-logo {
|
|
|
|
|
width: 25px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav ul {
|
|
|
|
|
float: right;
|
|
|
|
|
list-style-type: none;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-12 22:05:29 +02:00
|
|
|
|
nav ul .exit {
|
|
|
|
|
display: none;
|
2017-07-09 17:23:24 +02:00
|
|
|
|
-webkit-user-select: none;
|
|
|
|
|
-moz-user-select: none;
|
|
|
|
|
-ms-user-select: none;
|
|
|
|
|
user-select: none;
|
2017-06-12 22:05:29 +02:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-28 01:45:25 +01:00
|
|
|
|
nav ul li {
|
|
|
|
|
position: relative;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin: 10px;
|
|
|
|
|
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
|
|
|
|
opacity: 0.7;
|
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav li a,
|
|
|
|
|
nav li a:hover {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
color: #fff !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav ul li.active,
|
|
|
|
|
nav ul li:hover {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav ul li.active::after {
|
|
|
|
|
content: "v";
|
|
|
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: -15px;
|
|
|
|
|
left: calc(50% - 4px);
|
|
|
|
|
|
|
|
|
|
font-weight: 100;
|
|
|
|
|
|
|
|
|
|
transform: scaleX(2) scaleY(0.5);
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-20 20:44:49 +02:00
|
|
|
|
nav.dark-blue {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background: hsl(218, 23%, 16%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-28 01:45:25 +01:00
|
|
|
|
/* -- main panel styling -- */
|
|
|
|
|
.portico-landing {
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
transition: all 0.5s ease;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
margin-top: -80px;
|
|
|
|
|
-webkit-transform: translateY(120px);
|
|
|
|
|
transform: translateY(120px);
|
2017-02-28 01:45:25 +01:00
|
|
|
|
opacity: 0;
|
|
|
|
|
|
|
|
|
|
z-index: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.show {
|
2017-04-20 20:44:49 +02:00
|
|
|
|
-webkit-transform: translateY(0px);
|
|
|
|
|
transform: translateY(0px);
|
2017-02-28 01:45:25 +01:00
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main {
|
|
|
|
|
width: calc(100% - 200px - 20px);
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* -- generic styles -- */
|
|
|
|
|
|
2017-03-26 22:24:35 +02:00
|
|
|
|
h1,
|
|
|
|
|
h2,
|
|
|
|
|
h3 {
|
2017-02-28 01:45:25 +01:00
|
|
|
|
margin: 10px 0px;
|
|
|
|
|
|
|
|
|
|
font-weight: 300;
|
|
|
|
|
line-height: 1.2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p {
|
|
|
|
|
margin: 10px 0px;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
line-height: 1.5;
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-26 22:24:35 +02:00
|
|
|
|
a,
|
|
|
|
|
a:hover,
|
|
|
|
|
a:visited {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
color: hsl(170, 47%, 53%);
|
2017-02-28 01:45:25 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a.no-style:hover {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
color: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a.arrow:after {
|
|
|
|
|
content: " ";
|
|
|
|
|
display: inline-block;
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
height: 17px;
|
|
|
|
|
width: 17px;
|
|
|
|
|
|
|
|
|
|
top: 3px;
|
|
|
|
|
|
2017-03-27 22:55:46 +02:00
|
|
|
|
background-image: url(/static/images/landing-page/arrow.png);
|
2017-02-28 01:45:25 +01:00
|
|
|
|
background-size: 100%;
|
|
|
|
|
|
|
|
|
|
margin-left: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
|
font-size: 2em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
|
font-size: 1.8em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
position: relative;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a:not(.no-style):before {
|
|
|
|
|
content: " ";
|
|
|
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: -1px;
|
|
|
|
|
|
|
|
|
|
height: 1px;
|
|
|
|
|
width: 0%;
|
|
|
|
|
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background-color: hsl(170, 47%, 53%);
|
2017-02-28 01:45:25 +01:00
|
|
|
|
transition: all 0.5s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a:not(.no-style):hover:before {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flex {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-20 20:44:49 +02:00
|
|
|
|
.float.left {
|
|
|
|
|
float: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.float.right {
|
|
|
|
|
float: right;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.float.clear {
|
|
|
|
|
clear: both;
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-28 01:45:25 +01:00
|
|
|
|
.small {
|
|
|
|
|
font-size: 0.8em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.box-shadow {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
box-shadow: 0px 0px 80px hsla(0, 0%, 0%, 0.12);
|
2017-02-28 01:45:25 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.grey {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
color: hsl(0, 0%, 60%);
|
2017-02-28 01:45:25 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dark-grey {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
color: hsl(0, 0%, 40%);
|
2017-02-28 01:45:25 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bold {
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.padded-content {
|
|
|
|
|
padding: 50px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.clear-float {
|
|
|
|
|
clear: both;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* -- 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 -- */
|
|
|
|
|
.features-app .main {
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.features-app p {
|
|
|
|
|
line-height: 1.3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.feature-page-header {
|
|
|
|
|
padding-top: 0px;
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.feature-block .flex {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
align-items: center;
|
|
|
|
|
height: 110px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.feature-block .icon-container {
|
|
|
|
|
width: 70px;
|
|
|
|
|
min-width: 70px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.feature-block i {
|
|
|
|
|
float: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.feature-block i:before {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background: -webkit-linear-gradient(65deg, hsl(169, 41%, 31%), hsl(170, 54%, 61%));
|
2017-02-28 01:45:25 +01:00
|
|
|
|
-webkit-background-clip: text;
|
|
|
|
|
-webkit-text-fill-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.feature-block .block h4 {
|
|
|
|
|
font-size: 1em;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
text-transform: uppercase;
|
2017-06-21 08:57:47 +02:00
|
|
|
|
color: hsl(0, 0%, 66%);
|
2017-02-28 01:45:25 +01:00
|
|
|
|
margin-left: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.feature-block .block p {
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
margin-left: 15px;
|
|
|
|
|
margin-bottom: 0px;
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-20 20:44:49 +02:00
|
|
|
|
/* -- hello page -- */
|
|
|
|
|
.portico-landing.hello {
|
|
|
|
|
background-color: #fff;
|
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;
|
|
|
|
|
padding: 100px 50px 320px 50px;
|
|
|
|
|
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background-color: hsl(219, 21%, 19%);
|
|
|
|
|
color: hsl(220, 15%, 76%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .hero .waves {
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
|
|
|
|
width: 150vw;
|
|
|
|
|
height: 150vw;
|
|
|
|
|
|
|
|
|
|
top: 650px;
|
|
|
|
|
left: -25vw;
|
|
|
|
|
|
|
|
|
|
z-index: 0;
|
|
|
|
|
opacity: 0.3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .hero .waves .wave {
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
|
|
background-color: white;
|
|
|
|
|
border-radius: 35%;
|
|
|
|
|
|
|
|
|
|
opacity: 0.3;
|
|
|
|
|
|
|
|
|
|
animation-name: waves;
|
|
|
|
|
animation-duration: 15s;
|
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
|
animation-timing-function: linear;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .hero .waves .wave.dark-blue {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background-color: hsl(219, 39%, 13%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .hero .waves .wave.light-blue {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background-color: hsla(0, 67%, 57%, 0.9);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
|
|
|
|
|
animation-duration: 18s;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .hero .waves .wave.light-green {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background-color: hsla(187, 98%, 75%, 0.75);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
|
|
|
|
|
animation-name: wavesBackward;
|
|
|
|
|
animation-duration: 21s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@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);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .hero .content {
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .hero header {
|
|
|
|
|
width: 700px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .hero header h1 {
|
|
|
|
|
font-size: 3em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .hero header p {
|
|
|
|
|
margin: 30px 0px;
|
|
|
|
|
|
|
|
|
|
font-size: 1.2em;
|
|
|
|
|
line-height: 1.4;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .hero header button {
|
|
|
|
|
padding: 8px 15px;
|
|
|
|
|
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background-color: hsl(170, 47%, 54%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
border: none;
|
|
|
|
|
|
|
|
|
|
font-size: 1em;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
2017-06-21 08:57:47 +02:00
|
|
|
|
box-shadow: 0px 1px 2px hsla(0, 0%, 0%, 0.2);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
|
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .hero header button:hover {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background-color: hsl(170, 58%, 52%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
|
2017-06-21 08:57:47 +02:00
|
|
|
|
box-shadow: 0px 2px 5px hsla(0, 0%, 0%, 0.18);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .hero header button:active {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background-color: hsl(170, 42%, 46%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
|
2017-06-21 08:57:47 +02:00
|
|
|
|
box-shadow: 0px 1px 1px hsla(0, 0%, 0%, 0.18);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .hero header .download-button {
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .hero header #see_all_apps {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .col-2 {
|
|
|
|
|
width: 60%;
|
|
|
|
|
margin-right: -4px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .col-3 {
|
|
|
|
|
width: 33.3%;
|
|
|
|
|
margin-right: -4px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .col-4 {
|
|
|
|
|
width: 20%;
|
|
|
|
|
margin-right: -4px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
}
|
|
|
|
|
|
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%);
|
2017-05-13 23:25:10 +02:00
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.compare .text-header .text-content h1 {
|
|
|
|
|
margin-top: 0px;
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-16 07:17:32 +02:00
|
|
|
|
.compare .padded-content {
|
|
|
|
|
width: 900px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-13 23:25:10 +02:00
|
|
|
|
.compare table {
|
|
|
|
|
width: 100%;
|
|
|
|
|
text-align: left;
|
|
|
|
|
border-collapse: collapse;
|
2017-05-16 07:17:32 +02:00
|
|
|
|
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
|
2017-06-21 08:57:47 +02:00
|
|
|
|
color: hsla(0, 0%, 100%, 0.8);
|
2017-05-16 07:17:32 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.compare table thead th:last-of-type {
|
|
|
|
|
width: 120px;
|
2017-05-13 23:25:10 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.compare table thead th.uniform {
|
|
|
|
|
width: 20%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.compare table td:not(:first-of-type),
|
|
|
|
|
.compare table th:not(:first-of-type) {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.compare thead {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
border-bottom: 5px solid hsla(0, 0%, 0%, 0.1);
|
2017-05-13 23:25:10 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.compare thead th {
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
padding: 15px 0px;
|
2017-05-16 07:17:32 +02:00
|
|
|
|
|
|
|
|
|
color: #fff;
|
2017-05-13 23:25:10 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.compare thead th.normal {
|
|
|
|
|
font-weight: normal;
|
2017-05-16 07:17:32 +02:00
|
|
|
|
color: inherit;
|
2017-05-13 23:25:10 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.compare tbody tr {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
border-bottom: 1px solid hsl(163, 22%, 28%);
|
2017-05-13 23:25:10 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.compare tbody tr td {
|
|
|
|
|
padding: 10px 0px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.compare tbody tr td.no {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.compare tbody tr td.yes::before {
|
|
|
|
|
content: " ";
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
|
|
width: 27px;
|
|
|
|
|
height: 27px;
|
|
|
|
|
background-image: url(/static/images/landing-page/checkmark.png);
|
|
|
|
|
background-size: 100% auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.compare tbody tr td.no::before {
|
|
|
|
|
content: "×";
|
|
|
|
|
|
|
|
|
|
position: relative;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
|
|
top: 3px;
|
|
|
|
|
|
|
|
|
|
font-size: 2.5rem;
|
2017-05-16 08:08:08 +02:00
|
|
|
|
font-weight: 300;
|
2017-05-13 23:25:10 +02:00
|
|
|
|
line-height: 0.9;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.compare tbody tr td a {
|
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.compare p {
|
|
|
|
|
font-weight: 300;
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-16 07:17:32 +02:00
|
|
|
|
.compare .terms {
|
|
|
|
|
margin-top: 30px;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 0.7em;
|
|
|
|
|
|
|
|
|
|
line-height: 1.2;
|
|
|
|
|
|
2017-06-21 08:57:47 +02:00
|
|
|
|
color: hsla(0, 0%, 100%, 0.8);
|
2017-05-16 07:17:32 +02:00
|
|
|
|
}
|
|
|
|
|
|
2017-04-20 20:44:49 +02:00
|
|
|
|
.screen .line {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 6px;
|
|
|
|
|
margin: 8px 0px;
|
|
|
|
|
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background-color: hsl(0, 0%, 93%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
border-radius: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.screen .line.small {
|
|
|
|
|
width: 60%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.screen .line.micro {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
|
|
|
|
|
width: 15%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.screen .line.darker {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background-color: hsl(0, 0%, 73%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.screen .line.nano {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
|
|
|
|
|
width: 10%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.screen .line.med {
|
|
|
|
|
width: 80%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.screen .col-4 .action-block {
|
|
|
|
|
margin: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.screen .col-4 .action-block .sub-block {
|
|
|
|
|
margin: 0px 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.screen .line.red {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background-color: hsl(350, 42%, 77%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.screen .line.blue {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background-color: hsl(193, 42%, 77%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.screen .line.green {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background-color: hsl(119, 42%, 77%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.screen .line.orange {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background-color: hsl(30, 42%, 77%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.screen .top .avatar {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background-color: hsl(0, 0%, 73%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
border-radius: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.screen .top .top-line {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
|
|
|
|
|
width: 50px;
|
|
|
|
|
margin-top: 0px;
|
|
|
|
|
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background-color: hsl(0, 0%, 73%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.screen .navbar {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background-color: hsl(170, 47%, 54%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
padding: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.screen .center-page {
|
|
|
|
|
height: 100%;
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.screen .center-page .message-feed {
|
|
|
|
|
height: calc(100% - 20px);
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
|
|
|
|
|
transition: all 0.1s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.screen .message-feed .message .content {
|
|
|
|
|
margin-left: 24px;
|
|
|
|
|
position: relative;
|
|
|
|
|
top: -15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.screen .message-feed .stream {
|
|
|
|
|
padding: 3px 5px 0px 5px;
|
|
|
|
|
margin: 0px 5px;
|
|
|
|
|
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
2017-06-21 08:57:47 +02:00
|
|
|
|
box-shadow: 0px 0px 15px hsla(0, 0%, 0%, 0.01);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .screen.hero-screen {
|
|
|
|
|
padding: 95px 170px;
|
|
|
|
|
height: 385px;
|
|
|
|
|
|
|
|
|
|
background-image: url(/static/images/landing-page/macbook-empty.png);
|
|
|
|
|
background-size: 100% auto;
|
|
|
|
|
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .screen.hero-screen::before,
|
|
|
|
|
.portico-landing.hello .screen.hero-screen::after {
|
|
|
|
|
content: "";
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .screen.hero-screen .main-page {
|
|
|
|
|
transform: translateY(-12px) translateX(3px);
|
|
|
|
|
-webkit-transform: translateY(-12px) translateX(3px);
|
|
|
|
|
-moz-transform: translateY(-12px) translateX(3px);
|
2017-06-21 08:57:47 +02:00
|
|
|
|
border: 5px solid hsl(0, 0%, 0%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .screen {
|
|
|
|
|
position: relative;
|
|
|
|
|
margin: -300px auto 0px auto;
|
|
|
|
|
|
|
|
|
|
width: 600px;
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background-color: hsl(0, 0%, 98%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
height: 350px;
|
|
|
|
|
|
|
|
|
|
padding: 10px 30px 10px 30px;
|
|
|
|
|
|
|
|
|
|
border-radius: 12px;
|
2017-06-21 08:57:47 +02:00
|
|
|
|
box-shadow: 0px 0px 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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .screen::before {
|
|
|
|
|
content: " ";
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: calc(50% - 5px);
|
|
|
|
|
left: 20px;
|
|
|
|
|
|
|
|
|
|
width: 10px;
|
|
|
|
|
height: 10px;
|
|
|
|
|
|
|
|
|
|
border-radius: 5px;
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background-color: hsl(0, 0%, 13%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .screen::after {
|
|
|
|
|
content: " ";
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: calc(50% - 12.5px);
|
|
|
|
|
right: 8px;
|
|
|
|
|
|
|
|
|
|
width: 25px;
|
|
|
|
|
height: 25px;
|
|
|
|
|
|
|
|
|
|
border-radius: 13px;
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background-color: hsl(0, 0%, 73%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .screen .main-page {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
|
|
height: calc(100% - 30px);
|
|
|
|
|
width: calc(100% - 30px);
|
|
|
|
|
margin: 10px;
|
|
|
|
|
|
2017-06-21 08:57:47 +02:00
|
|
|
|
border: 5px solid hsl(0, 0%, 13%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background-color: hsl(0, 0%, 98%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .features {
|
|
|
|
|
padding: 50px 0px 100px 0px;
|
|
|
|
|
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .features .col-3 {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .features .col-3 .il-block {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 75%;
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .features .col-3 h2 {
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .testimonials {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
color: hsl(220, 15%, 76%);
|
|
|
|
|
background-color: hsl(219, 21%, 19%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .testimonials .text-header .text-content {
|
|
|
|
|
float: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .testimonials .text-header .action-content {
|
|
|
|
|
float: right;
|
|
|
|
|
margin-top: 18px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .testimonials .quote-container {
|
|
|
|
|
width: 60%;
|
|
|
|
|
margin: 30px auto 20px auto;
|
|
|
|
|
|
|
|
|
|
font-size: 1.2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .testimonials blockquote::before {
|
|
|
|
|
content: "“";
|
|
|
|
|
margin-left: -10px;
|
|
|
|
|
margin-right: -3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .testimonials blockquote::after {
|
|
|
|
|
content: "”";
|
|
|
|
|
margin-left: -3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .testimonials blockquote + cite {
|
|
|
|
|
display: block;
|
|
|
|
|
margin-top: 5px;
|
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
|
2017-06-21 08:57:47 +02:00
|
|
|
|
color: hsl(221, 8%, 51%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
font-weight: 400;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .testimonials blockquote {
|
|
|
|
|
padding: 0px;
|
|
|
|
|
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
line-height: 1.6;
|
|
|
|
|
text-align: left;
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .testimonials hr {
|
|
|
|
|
width: 60%;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
border: none;
|
2017-06-21 08:57:47 +02:00
|
|
|
|
border-bottom: 1px solid hsl(0, 0%, 33%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .testimonials .company-container {
|
|
|
|
|
width: 60%;
|
|
|
|
|
margin: 20px auto;
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .testimonials .company-box {
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .testimonials .company-container header h2 {
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 1.5em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .testimonials .company-container header .arrow {
|
|
|
|
|
margin-top: 12px;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .testimonials .company-box .company {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin: 10px 20px;
|
|
|
|
|
|
|
|
|
|
height: 60px;
|
|
|
|
|
width: calc(20% - 44px);
|
|
|
|
|
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background-color: hsl(0, 0%, 66%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
background-size: contain;
|
|
|
|
|
background-position: center;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* -- company logos -- */
|
|
|
|
|
.portico-landing.hello .testimonials .company-box .company.akamai {
|
|
|
|
|
background-image: url(/static/images/landing-page/logos/akamai.png);
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .testimonials .company-box .company.doctorondemand {
|
|
|
|
|
background-image: url(/static/images/landing-page/logos/doctorondemand.png);
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .testimonials .company-box .company.layershift {
|
|
|
|
|
background-image: url(/static/images/landing-page/logos/layershift.png);
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .testimonials .company-box .company.recurse {
|
|
|
|
|
background-image: url(/static/images/landing-page/logos/recurse.png);
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .testimonials .company-box .company.solano {
|
|
|
|
|
background-image: url(/static/images/landing-page/logos/solano.png);
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .testimonials .company-box .company.veelo {
|
|
|
|
|
background-image: url(/static/images/landing-page/logos/veelo.png);
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .testimonials .company-box .company.panjiva {
|
|
|
|
|
background-image: url(/static/images/landing-page/logos/panjiva.png);
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .testimonials .company-box .company.cmt {
|
|
|
|
|
background-image: url(/static/images/landing-page/logos/cambridge-mobile-telematics.png);
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .testimonials .company-box .company.levelup {
|
|
|
|
|
background-image: url(/static/images/landing-page/logos/levelup.png);
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .apps {
|
|
|
|
|
padding: 80px;
|
|
|
|
|
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background: hsl(177, 52%, 55%);
|
|
|
|
|
background: -webkit-linear-gradient(145deg, hsl(169, 65%, 42%), hsl(191, 55%, 54%));
|
|
|
|
|
background: linear-gradient(145deg, hsl(191, 56%, 55%), hsl(169, 65%, 42%));
|
2017-04-20 20:44:49 +02:00
|
|
|
|
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .arrow {
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .arrow::before {
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.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;
|
|
|
|
|
margin: 0 auto 50px auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.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;
|
|
|
|
|
margin: 0px 30px;
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .arrow::after {
|
|
|
|
|
-webkit-filter: brightness(4) saturate(0);
|
|
|
|
|
-moz-filter: brightness(4) saturate(0);
|
|
|
|
|
filter: brightness(4) saturate(0);
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-06 22:05:17 +02:00
|
|
|
|
.portico-landing.hello .integrations {
|
|
|
|
|
padding: 80px 80px 120px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .integrations .content {
|
|
|
|
|
margin-left: 50px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .integrations .integration-icons {
|
|
|
|
|
width: 100%;
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
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;
|
|
|
|
|
border: 1px solid #fff;
|
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;
|
|
|
|
|
padding: 125px 100px 20px 100px;
|
|
|
|
|
margin-top: 0px;
|
|
|
|
|
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background-color: hsl(218, 23%, 16%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .call-to-action-bottom button {
|
|
|
|
|
display: block;
|
|
|
|
|
margin: 20px auto 0 auto;
|
|
|
|
|
padding: 12px 25px 10px 25px;
|
|
|
|
|
|
|
|
|
|
font-size: 1.2rem;
|
2017-06-21 08:57:47 +02:00
|
|
|
|
color: hsl(220, 15%, 76%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
|
2017-06-21 08:57:47 +02:00
|
|
|
|
border: 1px solid hsl(220, 15%, 76%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
background: transparent;
|
|
|
|
|
|
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .call-to-action-bottom button:hover {
|
|
|
|
|
border-color: #fff;
|
|
|
|
|
background: #fff;
|
2017-06-21 08:57:47 +02:00
|
|
|
|
color: hsl(219, 23%, 33%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .call-to-action-bottom h1 {
|
|
|
|
|
color: #fff;
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .call-to-action-bottom .zulip-octopus {
|
|
|
|
|
margin: 130px auto 0 auto;
|
|
|
|
|
width: 30px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
background-image: url(/static/images/landing-page/zulip-octopus.png);
|
|
|
|
|
background-size: cover;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.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 {
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-09 21:18:14 +01:00
|
|
|
|
/* -- apps page -- */
|
|
|
|
|
.portico-landing.apps .main,
|
|
|
|
|
.portico-landing.features-app .main {
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main {
|
|
|
|
|
max-width: 1600px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main .padded-content.headline {
|
|
|
|
|
padding-bottom: 0px;
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-13 20:26:19 +02:00
|
|
|
|
.portico-landing.apps .main .headline h1 {
|
|
|
|
|
font-size: 2.5em;
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-09 21:18:14 +01:00
|
|
|
|
.portico-landing.apps .main .headline h3 {
|
|
|
|
|
font-weight: 400;
|
2017-06-13 20:26:19 +02:00
|
|
|
|
font-size: 1.1em;
|
2017-06-21 08:57:47 +02:00
|
|
|
|
color: hsl(0, 0%, 66%);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main ul.sidebar {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
margin: 0 -4px 0 0;
|
|
|
|
|
list-style: none;
|
|
|
|
|
font-weight: 500;
|
2017-06-21 08:57:47 +02:00
|
|
|
|
color: hsl(0, 0%, 66%);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main ul.sidebar li {
|
|
|
|
|
position: relative;
|
|
|
|
|
padding: 20px 15px 20px 0px;
|
|
|
|
|
margin: 2px 0px;
|
|
|
|
|
width: 130px;
|
|
|
|
|
text-align: right;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main ul.sidebar li:first-of-type {
|
|
|
|
|
margin-top: 0px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main ul.sidebar li.active {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
color: hsl(0, 0%, 27%);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
|
|
|
|
transform: translateX(-10px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* active arrow that slides in when a tab is .active on */
|
|
|
|
|
.portico-landing.apps .main ul.sidebar li::after {
|
|
|
|
|
content: ">";
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 0px;
|
|
|
|
|
top: 21px;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transform: translateX(3px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main ul.sidebar li.active::after {
|
|
|
|
|
transform: translateX(0px);
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main .details-container {
|
|
|
|
|
position: relative;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
height: 500px;
|
|
|
|
|
width: calc(100% - 155px);
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background-color: hsl(0, 0%, 53%);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main .details-container .details-box {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main .details-container .details-box.show {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
pointer-events: auto;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main .details-container .details-box[data-name="android"] {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
color: hsl(156, 56%, 95%);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background: -webkit-radial-gradient(top right, ellipse cover, hsl(128, 78%, 84%) 0%, hsl(191, 74%, 35%) 100%);
|
|
|
|
|
background: radial-gradient(ellipse farthest corner at 0px 0px, hsl(128, 78%, 84%) 0%, hsl(191, 74%, 35%) 100%);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main .details-container .details-box[data-name="ios"] {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
color: hsl(203, 48%, 95%);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background: -webkit-radial-gradient(top right, ellipse cover, hsl(36, 98%, 84%) 0%, hsl(197, 80%, 37%) 100%);
|
|
|
|
|
background: radial-gradient(ellipse farthest corner at 0px 0px, hsl(36, 98%, 84%) 0%, hsl(197, 80%, 37%) 100%);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main .details-container .details-box[data-name="windows"] {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
color: hsl(0, 0%, 93%);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background: -webkit-radial-gradient(top right, ellipse cover, hsl(212, 60%, 78%) 0%, hsl(216, 91%, 21%) 100%);
|
|
|
|
|
background: radial-gradient(ellipse farthest corner at 0px 0px, hsl(212, 60%, 78%) 0%, hsl(216, 91%, 21%) 100%);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main .details-container .details-box[data-name="mac"] {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
color: hsl(350, 92%, 95%);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background: -webkit-radial-gradient(top right, ellipse cover, hsl(44, 97%, 85%) 0%, hsl(340, 73%, 32%) 100%);
|
|
|
|
|
background: radial-gradient(ellipse farthest corner at 0px 0px, hsl(44, 97%, 85%) 0%, hsl(340, 73%, 32%) 100%);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main .details-container .details-box[data-name="linux"] {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
color: hsl(16, 93%, 95%);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background: -webkit-radial-gradient(top right, ellipse cover, hsl(16, 98%, 81%) 0%, hsl(6, 88%, 43%) 100%);
|
|
|
|
|
background: radial-gradient(ellipse farthest corner at 0px 0px, hsl(16, 98%, 81%) 0%, hsl(6, 88%, 43%) 100%);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main .details-container .details-box[data-name="snipe"] {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
color: hsl(350, 92%, 95%);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background: -webkit-radial-gradient(top right, ellipse cover, hsl(9, 97%, 87%) 0%, hsl(246, 82%, 30%) 100%);
|
|
|
|
|
background: radial-gradient(ellipse farthest corner at 0px 0px, hsl(9, 97%, 87%) 0%, hsl(246, 82%, 30%) 100%);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main .details-container .details-box[data-name="plan9"] {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
color: hsl(350, 92%, 95%);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background: -webkit-radial-gradient(top right, ellipse cover, hsl(9, 97%, 87%) 0%, hsl(356, 82%, 30%) 100%);
|
|
|
|
|
background: radial-gradient(ellipse farthest corner at 0px 0px, hsl(9, 97%, 87%) 0%, hsl(356, 82%, 30%) 100%);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main ul.sidebar li[data-name="android"].active {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
color: hsl(175, 74%, 35%);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main ul.sidebar li[data-name="ios"].active {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
color: hsl(196, 57%, 58%);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main ul.sidebar li[data-name="windows"].active {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
color: hsl(216, 70%, 39%);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main ul.sidebar li[data-name="mac"].active {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
color: hsl(340, 55%, 51%);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main ul.sidebar li[data-name="linux"].active {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
color: hsl(6, 88%, 43%);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main ul.sidebar li[data-name="snipe"].active {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
color: hsl(246, 82%, 30%);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main ul.sidebar li[data-name="plan9"].active {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
color: hsl(356, 82%, 30%);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main .details-container .platform.description {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
height: 300px;
|
|
|
|
|
padding: 50px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main .details-container .platform.image {
|
|
|
|
|
float: right;
|
|
|
|
|
width: calc(49.5% - 40px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main .details-container {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .details-box[data-name="mac"] .platform.image {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main .details-box .platform.image {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transform: scale(0.2);
|
|
|
|
|
transition: transform 0.3s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main .details-box.show .platform.image {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transform: scale(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .details-box[data-name="mac"] .platform.image img {
|
|
|
|
|
width: 450px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .details-box[data-name="windows"] .platform.image img {
|
|
|
|
|
width: 450px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .details-box[data-name="ios"] .platform.image img {
|
|
|
|
|
width: 175px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .details-box[data-name="android"] .platform.image img {
|
|
|
|
|
width: 240px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .details-box button.grey-transparent {
|
|
|
|
|
margin-top: 30px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .details-box[data-name="mac"] button.grey-transparent:active {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
color: hsl(356, 58%, 47%);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .details-box[data-name="ios"] button.grey-transparent:active {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
color: hsl(205, 33%, 56%);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .details-box[data-name="windows"] button.grey-transparent:active {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
color: hsl(216, 50%, 35%);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main .details-box > .image {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 35px 0px;
|
|
|
|
|
height: calc(100% - 70px);
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background-color: hsla(0, 0%, 100%, 0.1);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main .details-container h1 {
|
|
|
|
|
margin: 20px 0px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main .details-container .platform {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
padding: 20px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
width: 50%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main .details-container .platform h2 {
|
|
|
|
|
margin-top: 0px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main .details-container pre {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
max-width: 400px;
|
|
|
|
|
border: none;
|
|
|
|
|
padding: 15px;
|
2017-06-21 08:57:47 +02:00
|
|
|
|
box-shadow: 0px 0px 30px hsla(0, 0%, 100%, 0.3);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
text-align: left;
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background-color: hsl(16, 93%, 95%);
|
|
|
|
|
color: hsl(7, 32%, 57%);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main .details-container .instructions {
|
|
|
|
|
margin: 30px auto 0 auto;
|
|
|
|
|
text-align: left;
|
|
|
|
|
font-size: 1.1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main .details-container .instructions a {
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main .details-container .instructions a:not(.no-style):before {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background-color: hsla(0, 0%, 100%, 0.5);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
width: 50%;
|
|
|
|
|
left: 25%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main .details-container .instructions a:not(.no-style):hover:before {
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
width: 100%;
|
|
|
|
|
left: 0%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main .details-container .instructions img {
|
|
|
|
|
display: block;
|
|
|
|
|
margin: -32px auto 0px auto;
|
|
|
|
|
width: 195px;
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-20 20:44:49 +02:00
|
|
|
|
.portico-landing.hello .apps .screen {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin: 0px 10px;
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .screen.ios {
|
|
|
|
|
width: 200px;
|
|
|
|
|
height: 350px;
|
|
|
|
|
padding: 30px 0px;
|
|
|
|
|
border-radius: 20px;
|
|
|
|
|
|
|
|
|
|
-webkit-transform: translateY(50px);
|
|
|
|
|
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .screen.android {
|
|
|
|
|
width: 200px;
|
|
|
|
|
height: 370px;
|
|
|
|
|
padding: 10px 0px 30px 0px;
|
|
|
|
|
border-radius: 20px;
|
|
|
|
|
|
|
|
|
|
-webkit-transform: translateY(-50px);
|
|
|
|
|
|
2017-06-21 08:57:47 +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);
|
2017-06-21 08:57:47 +02:00
|
|
|
|
background-color: hsl(0, 0%, 80%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
|
|
|
|
|
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 {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
border-color: hsl(0, 0%, 86%);
|
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-02-28 01:45:55 +01:00
|
|
|
|
/* -- integrations page css -- */
|
|
|
|
|
.portico-landing.integrations {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
color: hsl(0, 0%, 27%);
|
2017-02-28 01:45:55 +01:00
|
|
|
|
font-weight: normal;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .main {
|
2017-06-13 01:06:47 +02:00
|
|
|
|
width: calc(100% - 100px);
|
2017-02-28 01:45:55 +01:00
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .padded-content {
|
2017-06-13 01:06:47 +02:00
|
|
|
|
padding: 50px 0;
|
2017-02-28 01:45:55 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .padded-content .inner-content {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .padded-content .inner-content.show {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
pointer-events: all;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations ol li {
|
|
|
|
|
list-style: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations ol > li > p {
|
|
|
|
|
max-width: calc(100% - 33px);
|
|
|
|
|
margin-top: 0px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing code {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
|
|
|
|
|
font-family: Monaco, Menlo, Consolas, "Courier New", Courier, monospace;
|
|
|
|
|
font-size: 0.85em;
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-12 21:50:02 +02:00
|
|
|
|
.portico-landing.integrations #integration-main-text {
|
|
|
|
|
padding: 0 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .portico-page-heading {
|
|
|
|
|
font-size: 2.5em;
|
|
|
|
|
font-weight: 300;
|
|
|
|
|
line-height: 1.2;
|
|
|
|
|
text-align: center;
|
2017-02-28 01:45:55 +01:00
|
|
|
|
}
|
|
|
|
|
|
2017-06-12 21:50:02 +02:00
|
|
|
|
.portico-landing.integrations .portico-page-heading a {
|
2017-02-28 01:45:55 +01:00
|
|
|
|
color: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-12 21:50:02 +02:00
|
|
|
|
.portico-landing.integrations .portico-page-subheading {
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 1.1em;
|
|
|
|
|
color: #aaa;
|
|
|
|
|
line-height: 1.2;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-13 01:06:47 +02:00
|
|
|
|
.portico-landing #integration-search {
|
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .searchbar {
|
|
|
|
|
width: -moz-calc(100% - 40px);
|
|
|
|
|
width: -webkit-calc(100% - 40px);
|
|
|
|
|
width: -o-calc(100% - 40px);
|
|
|
|
|
width: calc(100% - 40px);
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
margin: 30px auto 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .searchbar .searchbar-reset {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .searchbar input {
|
|
|
|
|
-webkit-box-shadow: 1px 3px 5px 3px rgba(0,0,0,0.03);
|
|
|
|
|
-moz-box-shadow: 1px 3px 5px 3px rgba(0,0,0,0.03);
|
|
|
|
|
box-shadow: 1px 3px 5px 3px rgba(0,0,0,0.03);
|
|
|
|
|
|
|
|
|
|
font-size: 1em;
|
|
|
|
|
font-family: inherit;
|
|
|
|
|
|
|
|
|
|
width: 500px;
|
|
|
|
|
height: 45px;
|
|
|
|
|
padding: 0px 20px 0px 50px;
|
|
|
|
|
border-radius: 40px;
|
|
|
|
|
border: 1px solid hsl(208, 46%, 93%);
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .searchbar input:focus {
|
|
|
|
|
border: 1px solid hsl(170, 47%, 53%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .searchbar i.icon-vector-search {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 20px;
|
|
|
|
|
top: 13px;
|
|
|
|
|
font-size: 19px;
|
|
|
|
|
color: hsl(170, 47%, 53%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .catalog {
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
padding: 0 30px;
|
2017-07-11 01:42:01 +02:00
|
|
|
|
min-height: 500px;
|
2017-06-13 01:06:47 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .integration-categories-sidebar {
|
|
|
|
|
float: left;
|
|
|
|
|
width: 200px;
|
|
|
|
|
padding: 0 30px 0 50px;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .integration-categories-sidebar.sticky {
|
|
|
|
|
position: sticky;
|
|
|
|
|
top: 40px;
|
|
|
|
|
margin: auto;
|
|
|
|
|
height: 426px;
|
|
|
|
|
z-index: 10;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .integration-categories-sidebar h3 {
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 1.1em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .integration-categories-sidebar h4 {
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: .95em;
|
|
|
|
|
padding: 6px 10px 3px;
|
|
|
|
|
margin: 3px 0;
|
|
|
|
|
border-radius: 5px;
|
2017-02-28 01:45:55 +01:00
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-13 01:06:47 +02:00
|
|
|
|
.portico-landing.integrations .integration-categories-sidebar h4.selected,
|
|
|
|
|
.portico-landing.integrations .integration-categories-sidebar h4:hover {
|
|
|
|
|
background-color: hsl(170, 65%, 85%);
|
|
|
|
|
color: hsl(170, 72%, 32%);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .integration-categories-dropdown {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
margin: 30px 0;
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .integration-lozenges {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-align: left;
|
2017-02-28 01:45:55 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .integration-lozenge {
|
2017-06-13 01:06:47 +02:00
|
|
|
|
display: inline-block;
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
width: 153px;
|
|
|
|
|
height: 200px;
|
|
|
|
|
padding: 0 4px;
|
|
|
|
|
margin: 7px 5px;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
border: 1px solid hsl(208, 46%, 93%);
|
|
|
|
|
color: #414e67;
|
|
|
|
|
text-align: center;
|
2017-02-28 01:45:55 +01:00
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-11 01:24:48 +02:00
|
|
|
|
.portico-landing.integrations .integration-lozenge.without-category {
|
|
|
|
|
height: 180px;
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-28 01:45:55 +01:00
|
|
|
|
.portico-landing.integrations .integration-lozenge:hover {
|
2017-06-13 01:06:47 +02:00
|
|
|
|
border: 1px solid hsl(170, 47%, 53%);
|
2017-02-28 01:45:55 +01:00
|
|
|
|
}
|
|
|
|
|
|
2017-06-13 01:06:47 +02:00
|
|
|
|
.portico-landing.integrations .integration-lozenge .integration-logo {
|
|
|
|
|
margin: 34px auto 20px;
|
|
|
|
|
height: 60px;
|
2017-02-28 01:45:55 +01:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-11 03:18:58 +02:00
|
|
|
|
.portico-landing.integrations .integration-lozenge .icon-vector-plus {
|
|
|
|
|
font-size: 59px;
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-13 01:06:47 +02:00
|
|
|
|
.portico-landing.integrations .integration-lozenge .integration-name {
|
|
|
|
|
font-size: 1.2em;
|
|
|
|
|
font-weight: 400;
|
2017-07-10 23:44:00 +02:00
|
|
|
|
margin: 10px 4px 0 4px;
|
2017-06-13 01:06:47 +02:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-11 03:18:58 +02:00
|
|
|
|
.portico-landing.integrations .integration-lozenge .integration-name.create-your-own {
|
|
|
|
|
margin-top: 27px;
|
|
|
|
|
font-size: 1.1em !important;
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-13 01:06:47 +02:00
|
|
|
|
.portico-landing.integrations .integration-lozenge .integration-name.with-secondary {
|
|
|
|
|
font-size: 1.1em;
|
|
|
|
|
margin-top: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .integration-lozenge .integration-secondary-line-text {
|
|
|
|
|
margin: 0;
|
|
|
|
|
line-height: 10px;
|
|
|
|
|
font-size: .65em;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .integration-lozenge .integration-category {
|
|
|
|
|
font-size: .85em;
|
|
|
|
|
margin-top: 5px;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: hsla(216, 23%, 13%, 0.5);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* -- integration instructions -- */
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .integration-instruction-block .integration-lozenge {
|
|
|
|
|
width: 125px;
|
|
|
|
|
height: 170px;
|
|
|
|
|
margin: 0 0 20px 0;
|
2017-02-28 01:45:55 +01:00
|
|
|
|
}
|
|
|
|
|
|
2017-06-13 01:06:47 +02:00
|
|
|
|
.portico-landing.integrations .integration-instruction-block .integration-lozenge .integration-category {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-02-28 01:45:25 +01:00
|
|
|
|
/* -- media queries -- */
|
2017-06-06 22:05:17 +02:00
|
|
|
|
@media (max-width: 1426px) {
|
|
|
|
|
.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
|
|
|
|
}
|
|
|
|
|
|
2017-03-09 21:18:14 +01:00
|
|
|
|
@media (max-width: 1368px) {
|
|
|
|
|
.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 {
|
|
|
|
|
margin-top: 0px;
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.apps .main .details-box[data-name="linux"] .image .platform,
|
|
|
|
|
.portico-landing.apps .main .details-box[data-name="linux"] .instructions {
|
|
|
|
|
text-align: center;
|
|
|
|
|
width: calc(100% - 40px);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 1340px) {
|
|
|
|
|
.features .feature-box.open-source .text-content {
|
|
|
|
|
display: block;
|
|
|
|
|
height: auto;
|
|
|
|
|
width: 100%;
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.features .feature-box.open-source .contrib-graph {
|
|
|
|
|
width: 100%;
|
|
|
|
|
margin: 0;
|
|
|
|
|
height: calc(50vw * 0.5);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-20 20:44:49 +02:00
|
|
|
|
@media (max-width: 1295px) {
|
|
|
|
|
.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;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-28 01:45:25 +01:00
|
|
|
|
@media (max-width: 1100px) {
|
|
|
|
|
.feature-block .flex {
|
|
|
|
|
height: 130px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 1024px) {
|
|
|
|
|
nav {
|
|
|
|
|
padding-bottom: 110px;
|
2017-05-10 03:01:43 +02:00
|
|
|
|
padding-top: 30px;
|
2017-02-28 01:45:25 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav .logo {
|
|
|
|
|
float: none;
|
|
|
|
|
display: block;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav ul {
|
|
|
|
|
display: block;
|
|
|
|
|
margin: 20px auto 0 auto;
|
|
|
|
|
float: none;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.feature-block .flex {
|
|
|
|
|
height: 150px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.features-app .main {
|
2017-05-01 21:33:41 +02:00
|
|
|
|
margin: 0px auto;
|
2017-02-28 01:45:25 +01:00
|
|
|
|
width: calc(100% - 40px);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-09 21:18:14 +01:00
|
|
|
|
@media (max-width: 985px) {
|
|
|
|
|
.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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .screen.hero-screen .main-page {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
transform: translateY(-12px) translateX(2px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.screen.hero-screen .col-4 .action-block {
|
|
|
|
|
margin: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.screen.hero-screen .line {
|
|
|
|
|
height: 4px;
|
|
|
|
|
margin: 4px 0px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.screen .message-feed .message .content {
|
|
|
|
|
top: -12px;
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-06 22:05:17 +02:00
|
|
|
|
.portico-landing.hello .apps,
|
|
|
|
|
.portico-landing.hello .integrations {
|
2017-04-20 20:44:49 +02:00
|
|
|
|
padding: 80px 50px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .left-side .content {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-20 20:44:49 +02:00
|
|
|
|
.portico-landing.hello .testimonials .quote-container {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .testimonials hr,
|
|
|
|
|
.portico-landing.hello .testimonials .company-container {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2017-03-09 21:18:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
2017-06-13 01:06:47 +02:00
|
|
|
|
@media (max-width: 906px) {
|
|
|
|
|
.portico-landing.integrations .integration-categories-sidebar {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .integration-categories-dropdown {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .integration-categories-dropdown h3,
|
|
|
|
|
.portico-landing.integrations .integration-categories-dropdown h4 {
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
margin: 0 25px;
|
|
|
|
|
padding: 12px 20px;
|
|
|
|
|
border-bottom: 1px solid hsl(208, 46%, 93%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .integration-categories-dropdown .dropdown-toggle {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .integration-categories-dropdown i {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 10px;
|
|
|
|
|
right: 36px;
|
|
|
|
|
font-size: 24px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .integration-categories-dropdown .dropdown-list {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .integration-categories-dropdown h3 {
|
|
|
|
|
border-top: 1px solid hsl(208, 46%, 93%);
|
|
|
|
|
border-left: 1px solid hsl(208, 46%, 93%);
|
|
|
|
|
border-right: 1px solid hsl(208, 46%, 93%);
|
|
|
|
|
font-size: 1em;
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .integration-categories-dropdown h4 {
|
|
|
|
|
border-left: 1px solid #E4EDF5;
|
|
|
|
|
border-right: 1px solid #E4EDF5;
|
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
font-size: .9em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .integration-categories-dropdown h4.selected,
|
|
|
|
|
.portico-landing.integrations .integration-categories-dropdown h4:hover {
|
|
|
|
|
background-color: hsl(170, 65%, 85%);
|
|
|
|
|
color: hsl(170, 72%, 32%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .integration-lozenges {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 830px) {
|
|
|
|
|
.portico-landing.integrations .integration-lozenge {
|
|
|
|
|
width: 134px;
|
|
|
|
|
height: 180px;
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-11 01:24:48 +02:00
|
|
|
|
.portico-landing.integrations .integration-lozenge.without-category {
|
|
|
|
|
height: 160px;
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-13 01:06:47 +02:00
|
|
|
|
.portico-landing.integrations .integration-lozenge .integration-logo {
|
|
|
|
|
margin: 34px auto 15px;
|
|
|
|
|
height: 45px;
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-11 03:18:58 +02:00
|
|
|
|
.portico-landing.integrations .integration-lozenge .icon-vector-plus {
|
|
|
|
|
font-size: 45px;
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-13 01:06:47 +02:00
|
|
|
|
.portico-landing.integrations .integration-lozenge .integration-name {
|
|
|
|
|
font-size: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .integration-lozenge .integration-category {
|
|
|
|
|
font-size: .8em;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-28 01:45:25 +01:00
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
nav,
|
2017-02-28 01:45:55 +01:00
|
|
|
|
.features {
|
2017-02-28 01:45:25 +01:00
|
|
|
|
padding-left: 50px;
|
|
|
|
|
padding-right: 50px;
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-09 21:18:14 +01:00
|
|
|
|
.portico-landing.integrations .main,
|
2017-02-28 01:45:25 +01:00
|
|
|
|
.main {
|
|
|
|
|
width: calc(100% - 100px);
|
|
|
|
|
|
|
|
|
|
margin-left: 50px;
|
|
|
|
|
margin-right: 50px;
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-28 01:45:55 +01:00
|
|
|
|
#integration-instruction-block .integration-lozenge {
|
2017-07-11 01:59:10 +02:00
|
|
|
|
display: none !important;
|
2017-02-28 01:45:55 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#integration-list-link {
|
2017-06-13 01:06:47 +02:00
|
|
|
|
top: -40px;
|
|
|
|
|
left: 35px;
|
2017-02-28 01:45:55 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.integration-instructions {
|
|
|
|
|
margin-left: 0px;
|
|
|
|
|
}
|
2017-03-09 21:18:14 +01:00
|
|
|
|
|
|
|
|
|
.feature-block .flex {
|
|
|
|
|
height: auto;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .portico-page-header {
|
|
|
|
|
padding-top: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-13 01:06:47 +02:00
|
|
|
|
.portico-landing.integrations .searchbar-reset {
|
|
|
|
|
width: 445px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .searchbar input {
|
|
|
|
|
width: 375px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
.portico-landing.hello .hero header {
|
|
|
|
|
width: 600px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .left-side .content {
|
|
|
|
|
width: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .screen.hero-screen {
|
|
|
|
|
width: 300px;
|
|
|
|
|
height: 201px;
|
|
|
|
|
padding: 43px 73px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .features .col-3 {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2017-02-28 01:45:25 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 666px) {
|
2017-02-28 01:45:55 +01:00
|
|
|
|
.portico-landing.integrations .main,
|
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 header {
|
|
|
|
|
width: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .screen.hero-screen {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .hero {
|
|
|
|
|
padding-bottom: 100px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.hello .hero .waves {
|
|
|
|
|
height: 450px;
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-28 01:45:25 +01:00
|
|
|
|
nav ul {
|
|
|
|
|
margin-top: 0px;
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav .content {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-20 20:44:49 +02:00
|
|
|
|
nav .hamburger {
|
2017-02-28 01:45:25 +01:00
|
|
|
|
display: inline-block;
|
|
|
|
|
float: right;
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-09 21:18:14 +01:00
|
|
|
|
nav ul:before {
|
2017-05-10 03:01:43 +02:00
|
|
|
|
content: "Zulip";
|
2017-03-09 21:18:14 +01:00
|
|
|
|
display: block;
|
2017-05-10 03:01:43 +02:00
|
|
|
|
margin-top: 20px;
|
|
|
|
|
padding-top: 5px;
|
|
|
|
|
margin-left: 10px;
|
2017-03-09 21:18:14 +01:00
|
|
|
|
|
2017-05-10 03:01:43 +02:00
|
|
|
|
width: 100px;
|
2017-03-09 21:18:14 +01:00
|
|
|
|
height: 40px;
|
|
|
|
|
|
2017-05-10 03:01:43 +02:00
|
|
|
|
font-size: 1.5rem;
|
|
|
|
|
text-align: right;
|
2017-06-21 08:57:47 +02:00
|
|
|
|
color: hsl(0, 0%, 27%);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
|
2017-05-10 03:01:43 +02:00
|
|
|
|
background-size: 40px auto;
|
|
|
|
|
background-image: url(/static/images/zulip-logo.svg);
|
|
|
|
|
background-repeat: no-repeat;
|
2017-03-09 21:18:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-28 01:45:25 +01:00
|
|
|
|
nav ul {
|
|
|
|
|
position: fixed;
|
|
|
|
|
float: none;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
height: 100vh;
|
|
|
|
|
width: 300px;
|
|
|
|
|
padding-left: 30px;
|
|
|
|
|
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
transform: translate(-350px, 0px);
|
|
|
|
|
|
|
|
|
|
|
2017-06-21 08:57:47 +02:00
|
|
|
|
box-shadow: 0px 0px 80px hsla(0, 0%, 0%, 0.12);
|
2017-02-28 01:45:25 +01:00
|
|
|
|
|
|
|
|
|
transition: all 0.5s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav ul.show {
|
|
|
|
|
transform: translate(0px, 0px);
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-12 22:05:29 +02:00
|
|
|
|
nav ul .exit {
|
|
|
|
|
display: block;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 10px;
|
|
|
|
|
right: 25px;
|
|
|
|
|
|
|
|
|
|
font-weight: 100;
|
|
|
|
|
font-size: 3em;
|
|
|
|
|
color: initial;
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-28 01:45:25 +01:00
|
|
|
|
nav ul li:first-of-type {
|
2017-05-10 03:01:43 +02:00
|
|
|
|
margin-top: 20px;
|
2017-02-28 01:45:25 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav ul li {
|
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
|
|
font-size: 1.5em;
|
|
|
|
|
font-weight: 300;
|
|
|
|
|
line-height: 1.5;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav ul li,
|
|
|
|
|
nav ul li a {
|
2017-06-21 08:57:47 +02:00
|
|
|
|
color: hsl(0, 0%, 27%) !important;
|
2017-02-28 01:45:25 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav ul li.active:after {
|
|
|
|
|
content: ">";
|
|
|
|
|
transform: scale(1,1);
|
|
|
|
|
bottom: auto;
|
|
|
|
|
left: -25px;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav ul li.active {
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
}
|
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
|
|
|
|
|
|
|
|
|
.portico-landing.hello .testimonials .company-box .company {
|
|
|
|
|
margin: 10px;
|
|
|
|
|
width: calc(33% - 24px);
|
|
|
|
|
}
|
2017-02-28 01:45:25 +01:00
|
|
|
|
}
|
|
|
|
|
|
2017-06-06 22:05:17 +02:00
|
|
|
|
@media (max-width: 640px) {
|
|
|
|
|
.portico-landing.hello .integrations .integration-icons .group {
|
|
|
|
|
margin: 10px 16px 0 16px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-13 01:06:47 +02:00
|
|
|
|
@media (max-width: 550px) {
|
|
|
|
|
.portico-landing.integrations .searchbar-reset {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .searchbar input {
|
|
|
|
|
width: -moz-calc(100% - 80px);
|
|
|
|
|
width: -webkit-calc(100% - 80px);
|
|
|
|
|
width: -o-calc(100% - 80px);
|
|
|
|
|
width: calc(100% - 80px);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-28 01:45:25 +01:00
|
|
|
|
@media (max-device-width: 450px) {
|
|
|
|
|
nav {
|
2017-05-10 03:01:43 +02:00
|
|
|
|
padding-bottom: 105px;
|
2017-02-28 01:45:25 +01:00
|
|
|
|
padding-top: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-06 22:05:17 +02:00
|
|
|
|
.portico-landing.hello .integrations .integration-icons .group {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-26 22:24:35 +02:00
|
|
|
|
.main,
|
|
|
|
|
.portico-landing.integrations .main {
|
2017-02-28 01:45:55 +01:00
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .main .portico-page-header {
|
|
|
|
|
padding-top: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .main .padded-content {
|
2017-06-13 01:06:47 +02:00
|
|
|
|
padding: 40px 0;
|
2017-02-28 01:45:25 +01:00
|
|
|
|
}
|
|
|
|
|
|
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-06-06 22:05:17 +02:00
|
|
|
|
|
|
|
|
|
@media (max-width: 375px) {
|
|
|
|
|
.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
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .integration-lozenge {
|
|
|
|
|
width: 120px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 357px) {
|
|
|
|
|
.portico-landing.integrations .integration-lozenge {
|
|
|
|
|
width: 108px;
|
|
|
|
|
height: 160px;
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-11 01:24:48 +02:00
|
|
|
|
.portico-landing.integrations .integration-lozenge.without-category {
|
|
|
|
|
height: 140px;
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-13 01:06:47 +02:00
|
|
|
|
.portico-landing.integrations .integration-lozenge .integration-logo {
|
|
|
|
|
margin: 28px auto 10px;
|
|
|
|
|
height: 45px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .integration-lozenge .integration-name {
|
|
|
|
|
font-size: .9em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.portico-landing.integrations .integration-lozenge .integration-category {
|
|
|
|
|
font-size: .77em;
|
|
|
|
|
}
|
2017-06-06 22:05:17 +02:00
|
|
|
|
}
|