mirror of https://github.com/zulip/zulip.git
2880 lines
56 KiB
CSS
2880 lines
56 KiB
CSS
html {
|
|
width: 100vw;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
body {
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
margin: 0;
|
|
background-color: #fff;
|
|
color: hsl(0, 0%, 27%);
|
|
line-height: normal;
|
|
|
|
max-width: 100vw;
|
|
}
|
|
|
|
/* -- generic styles -- */
|
|
|
|
h1,
|
|
h2,
|
|
h3 {
|
|
margin: 10px 0px;
|
|
|
|
font-weight: 300;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
p {
|
|
margin: 10px 0px;
|
|
font-weight: normal;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
a,
|
|
a:hover,
|
|
a:visited {
|
|
color: hsl(170, 47%, 53%);
|
|
}
|
|
|
|
a.no-style:hover {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
}
|
|
|
|
a.arrow:after {
|
|
content: " ";
|
|
display: inline-block;
|
|
position: relative;
|
|
|
|
height: 17px;
|
|
width: 17px;
|
|
|
|
top: 3px;
|
|
|
|
background-image: url(/static/images/landing-page/arrow.png);
|
|
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%;
|
|
|
|
background-color: hsl(170, 47%, 53%);
|
|
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;
|
|
}
|
|
|
|
.float.left {
|
|
float: left;
|
|
}
|
|
|
|
.float.right {
|
|
float: right;
|
|
}
|
|
|
|
.float.clear {
|
|
clear: both;
|
|
}
|
|
|
|
.small {
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
.box-shadow {
|
|
box-shadow: 0px 0px 80px hsla(0, 0%, 0%, 0.12);
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
*::-moz-selection {
|
|
background-color: hsla(31, 84%, 60%, 0.3);
|
|
}
|
|
|
|
*::selection {
|
|
background-color: hsla(31, 84%, 60%, 0.3);
|
|
}
|
|
|
|
.center {
|
|
text-align: center;
|
|
}
|
|
|
|
/* -- component styling -- */
|
|
button {
|
|
padding: 5px 12px;
|
|
|
|
font-family: inherit;
|
|
font-size: 0.7em;
|
|
background-color: #fff;
|
|
color: hsl(0, 0%, 27%);
|
|
|
|
border-radius: 4px;
|
|
border: 1px solid hsl(0, 0%, 80%);
|
|
outline: none;
|
|
}
|
|
|
|
button:active {
|
|
background-color: hsl(0, 0%, 98%);
|
|
border: 1px solid hsl(0, 0%, 73%);
|
|
}
|
|
|
|
button.green {
|
|
color: #fff;
|
|
background-color: hsl(170, 47%, 53%);
|
|
|
|
border: 1px solid hsl(169, 45%, 43%);
|
|
}
|
|
|
|
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 {
|
|
background-color: hsla(0, 0%, 100%, 0.2);
|
|
}
|
|
|
|
button.button.grey-transparent:active {
|
|
background-color: #fff;
|
|
color: hsl(0, 0%, 40%);
|
|
}
|
|
|
|
/* -- navbar styling -- */
|
|
|
|
nav {
|
|
width: calc(100% - 80px);
|
|
position: absolute;
|
|
color: #fff;
|
|
|
|
padding: 40px;
|
|
|
|
z-index: 4;
|
|
}
|
|
|
|
nav.white {
|
|
background-color: #fff;
|
|
}
|
|
|
|
nav.white li a,
|
|
nav.white li a:hover,
|
|
nav.white li a:visited {
|
|
color: #444;
|
|
}
|
|
|
|
nav.white ul li.active::after {
|
|
color: #444;
|
|
}
|
|
|
|
nav.white .brand.logo span {
|
|
color: #444;
|
|
}
|
|
|
|
nav.white .brand-logo circle {
|
|
fill: #444 !important;
|
|
}
|
|
|
|
nav.white .brand-logo path {
|
|
fill: #fff !important;
|
|
stroke: #fff !important;
|
|
}
|
|
|
|
nav .hamburger {
|
|
display: none;
|
|
fill: #fff;
|
|
cursor: pointer;
|
|
margin-top: 3px;
|
|
}
|
|
|
|
nav.white .hamburger {
|
|
fill: #444;
|
|
}
|
|
|
|
nav .content {
|
|
margin: 0 5px 0 10px;
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
nav .logo {
|
|
top: 7px;
|
|
}
|
|
|
|
nav .logo span {
|
|
position: relative;
|
|
left: 5px;
|
|
top: 1px;
|
|
color: #fff;
|
|
font-weight: 600;
|
|
vertical-align: top;
|
|
text-transform: uppercase;
|
|
font-size: 1.2rem;
|
|
letter-spacing: 0.1em;
|
|
}
|
|
|
|
nav.white .brand.logo span {
|
|
color: #444;
|
|
}
|
|
|
|
nav .brand-logo {
|
|
width: 25px;
|
|
}
|
|
|
|
nav ul {
|
|
float: right;
|
|
list-style-type: none;
|
|
font-weight: 400;
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
cursor: pointer;
|
|
}
|
|
|
|
nav ul .exit {
|
|
display: none;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
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,
|
|
nav li a:visited {
|
|
text-decoration: none;
|
|
color: #fff;
|
|
|
|
font-size: 1.05em;
|
|
}
|
|
|
|
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);
|
|
}
|
|
|
|
/* -- main panel styling -- */
|
|
.portico-landing {
|
|
position: relative;
|
|
|
|
padding-top: 120px;
|
|
|
|
transition: opacity 0.3s ease;
|
|
|
|
opacity: 0;
|
|
|
|
z-index: 1;
|
|
}
|
|
|
|
.portico-landing.show {
|
|
opacity: 1;
|
|
}
|
|
|
|
.main {
|
|
width: calc(100% - 200px - 20px);
|
|
margin: 0 auto;
|
|
}
|
|
|
|
/* -- modify portico.css -- */
|
|
.app-main {
|
|
max-width: none;
|
|
min-width: 0;
|
|
padding: 0 !important;
|
|
}
|
|
|
|
.header,
|
|
.portico-os-announcement {
|
|
display: none;
|
|
}
|
|
|
|
/* -- features page css -- */
|
|
.portico-landing.features-app {
|
|
position: relative;
|
|
|
|
padding-top: 0px;
|
|
|
|
z-index: 2;
|
|
}
|
|
|
|
.portico-landing.features-app section {
|
|
max-width: 1440px;
|
|
margin: 40px auto;
|
|
padding: 0px 30px;
|
|
color: #2a3241;
|
|
}
|
|
|
|
.portico-landing.features-app section.hero {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
height: 400px;
|
|
padding: 100px 100px 50px 100px;
|
|
|
|
margin: 0;
|
|
|
|
max-width: none;
|
|
|
|
color: #fff;
|
|
|
|
background-color: hsla(0, 0%, 0%, 0.1);
|
|
}
|
|
|
|
.portico-landing.features-app section.hero .copy {
|
|
width: 800px;
|
|
margin: 0 auto;
|
|
|
|
text-align: center;
|
|
}
|
|
|
|
.portico-landing.features-app section.hero h1 {
|
|
margin: 0;
|
|
font-size: 3.7em;
|
|
}
|
|
|
|
.portico-landing.features-app section.hero h2 {
|
|
font-size: 1.8em;
|
|
margin: 30px auto 0 auto;
|
|
|
|
width: 600px;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
.portico-landing.features-app section.hero .image {
|
|
height: 400px;
|
|
width: 40%;
|
|
background-color: rgba(0,0,0,0.05);
|
|
}
|
|
|
|
.portico-landing.features-app section.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 */
|
|
margin-top: 0px;
|
|
background-color: #2a3241;
|
|
color: #e1eafb;
|
|
}
|
|
|
|
.portico-landing.features-app section.keyboard-shortcuts::after {
|
|
content: " ";
|
|
display: block;
|
|
|
|
position: absolute;
|
|
top: -169px;
|
|
right: 0;
|
|
|
|
width: 685px;
|
|
height: 170px;
|
|
|
|
background-image: url(/static/images/landing-page/wave.png);
|
|
background-size: 100% auto;
|
|
background-repeat: no-repeat;
|
|
|
|
z-index: 1;
|
|
}
|
|
|
|
.portico-landing.features-app section.keyboard-shortcuts h3 {
|
|
font-size: 3em;
|
|
}
|
|
|
|
.portico-landing.features-app section.keyboard-shortcuts .feature-block {
|
|
width: 50%;
|
|
}
|
|
|
|
.portico-landing.features-app section.keyboard-shortcuts p {
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
.portico-landing.features-app section.keyboard-shortcuts a.cta {
|
|
font-size: 1em;
|
|
}
|
|
|
|
.portico-landing.features-app section.keyboard-shortcuts img {
|
|
width: 600px;
|
|
margin-left: 100px;
|
|
}
|
|
|
|
.portico-landing.features-app section.messages {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
margin: 50px auto;
|
|
padding: 0px 50px;
|
|
}
|
|
|
|
.portico-landing.features-app section.messages .image {
|
|
width: calc(100% - 500px - 100px);
|
|
margin: 50px 0px 50px 50px;
|
|
}
|
|
|
|
.portico-landing.features-app section.messages .features {
|
|
width: 500px;
|
|
}
|
|
|
|
.portico-landing.features-app section.messages .features h2 {
|
|
margin: 0;
|
|
}
|
|
|
|
.portico-landing.features-app section.messages .features .feature-block {
|
|
display: block;
|
|
margin: 30px 0px;
|
|
}
|
|
|
|
.portico-landing.features-app section.notifications {
|
|
position: relative;
|
|
|
|
padding: 50px 100px;
|
|
max-width: calc(1000px);
|
|
|
|
background-color: #fff;
|
|
border-radius: 10px;
|
|
|
|
box-shadow: 10px 20px 80px rgba(0,0,0,0.15);
|
|
}
|
|
|
|
.portico-landing.features-app section.notifications .envelope {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.portico-landing.features-app section.notifications h2 {
|
|
position: relative;
|
|
|
|
margin-bottom: 120px;
|
|
top: -0px;
|
|
}
|
|
|
|
.portico-landing.features-app section.notifications .feature-list {
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
text-align: left;
|
|
|
|
margin: 35px 0px 0px 20px;
|
|
|
|
z-index: 1;
|
|
}
|
|
|
|
.portico-landing.features-app section.notifications {
|
|
margin: 100px auto 150px auto;
|
|
text-align: center;
|
|
}
|
|
|
|
.portico-landing.features-app section.notifications .feature-list h3 {
|
|
position: relative;
|
|
|
|
margin: 15px 0px 15px 50px;
|
|
|
|
font-size: 1.2em;
|
|
font-weight: 400;
|
|
|
|
color: #888;
|
|
}
|
|
|
|
.portico-landing.features-app section.notifications .feature-list h3::before {
|
|
content: " ";
|
|
display: block;
|
|
position: absolute;
|
|
|
|
left: -35px;
|
|
top: 0px;
|
|
width: 20px;
|
|
height: 20px;
|
|
|
|
border-radius: 4px;
|
|
|
|
background-image: url(/static/images/checkbox-valid.svg);
|
|
background-size: 100% auto;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.portico-landing.features-app section.notifications .image-block {
|
|
width: 400px;
|
|
height: 280px;
|
|
|
|
background: linear-gradient(135deg, rgba(0,0,0,0.05), rgba(0,0,0,0.2));
|
|
border-radius: 4px;
|
|
|
|
background-image: url(/static/images/landing-page/notifications.jpg);
|
|
background-size: contain;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
|
|
display: inline-block;
|
|
}
|
|
|
|
.portico-landing.features-app .cta::after {
|
|
content: "\2192";
|
|
|
|
margin-left: 5px;
|
|
transform: scaleX(2);
|
|
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.portico-landing.features-app .cta:hover::after {
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.portico-landing.features-app section .feature-block {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.portico-landing.features-app section .headliner .feature-block {
|
|
margin: 0px 10px;
|
|
width: calc(100% - 250px - 20px);
|
|
}
|
|
|
|
.portico-landing.features-app section h2 {
|
|
font-size: 2.5em;
|
|
margin: 0px 10px;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.portico-landing.features-app section > .feature-block {
|
|
margin: 10px;
|
|
width: calc(33% - 20px);
|
|
}
|
|
|
|
.portico-landing.features-app .feature-block h3 {
|
|
font-size: 1.2em;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.portico-landing.features-app .feature-block p {
|
|
margin: 0;
|
|
|
|
opacity: 0.6;
|
|
}
|
|
|
|
/* -- hello page -- */
|
|
.portico-landing.hello {
|
|
background-color: transparent;
|
|
color: hsl(219, 23%, 33%);
|
|
}
|
|
|
|
.portico-landing.hello .hero {
|
|
position: relative;
|
|
padding: 60px 50px 350px 50px;
|
|
|
|
color: #fff;
|
|
|
|
overflow: hidden;
|
|
}
|
|
|
|
.portico-landing.hello .gradients .gradient {
|
|
position: absolute;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 1100px;
|
|
}
|
|
|
|
.portico-landing.hello .gradients .gradient.dark-blue {
|
|
background: linear-gradient(10deg, transparent 50%, rgba(15, 46, 57, 0.7));
|
|
}
|
|
|
|
.portico-landing.hello .gradients .gradient.green {
|
|
background: linear-gradient(-25deg, transparent 40%, #3fb082);
|
|
}
|
|
|
|
.portico-landing.hello .gradients .gradient.blue {
|
|
background: linear-gradient(25deg, transparent 40%, #5298b1);
|
|
}
|
|
|
|
.portico-landing.hello .gradients .gradient.sunburst {
|
|
background: linear-gradient(5deg, transparent 20%, #e8d275);
|
|
}
|
|
|
|
.portico-landing.hello .gradients .gradient.white-fade {
|
|
background: linear-gradient(0deg, #fff 0%, transparent 40%);
|
|
}
|
|
|
|
|
|
.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 {
|
|
background-color: hsl(219, 39%, 13%);
|
|
}
|
|
|
|
.portico-landing.hello .hero .waves .wave.light-blue {
|
|
background-color: hsla(0, 67%, 57%, 0.9);
|
|
|
|
animation-duration: 18s;
|
|
|
|
}
|
|
|
|
.portico-landing.hello .hero .waves .wave.light-green {
|
|
background-color: hsla(187, 98%, 75%, 0.75);
|
|
|
|
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 .content p {
|
|
font-weight: 400;
|
|
opacity: 0.85;
|
|
}
|
|
|
|
.portico-landing.hello .hero header {
|
|
width: 850px;
|
|
display: inline-block;
|
|
text-align: left;
|
|
}
|
|
|
|
.portico-landing.hello .hero header h1 {
|
|
font-size: 3em;
|
|
font-weight: 400;
|
|
|
|
text-shadow: 0px 0px 20px rgba(255,255,255,0.2);
|
|
}
|
|
|
|
.portico-landing.hello .hero header p {
|
|
margin: 30px 0px;
|
|
|
|
font-size: 1.5em;
|
|
font-weight: 300;
|
|
line-height: 1.4;
|
|
text-shadow: 0px 0px 5px rgba(10, 66, 51, 0.3), 0px 0px 20px rgba(255,255,255,0.2);
|
|
}
|
|
|
|
.portico-landing.hello .hero header a {
|
|
display: block;
|
|
margin: 20px auto 0px auto;
|
|
width: 150px;
|
|
text-align: center;
|
|
}
|
|
|
|
.portico-landing.hello .hero header button {
|
|
margin-top: 0px;
|
|
padding: 8px 15px;
|
|
|
|
background-color: transparent;
|
|
border: 2px solid #fff;
|
|
|
|
font-size: 1em;
|
|
font-weight: 600;
|
|
color: #fff;
|
|
|
|
box-shadow: 0px 1px 50px rgba(0,0,0,0.1);
|
|
text-shadow: 0px 1px 2px rgba(0,0,0,0.1);
|
|
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.portico-landing.hello .hero header button:hover {
|
|
box-shadow: 0px 0px 0px #fff;
|
|
}
|
|
|
|
.portico-landing.hello .hero header button:active {
|
|
box-shadow: 0px 1px 20px rgba(255,255,255,0.5);
|
|
}
|
|
|
|
.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-3-5,
|
|
.portico-landing.hello .col-2,
|
|
.portico-landing.hello .col-4 {
|
|
margin-right: -4px;
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.portico-landing.hello .col-3-5 {
|
|
width: 60%;
|
|
}
|
|
|
|
.portico-landing.hello .col-2 {
|
|
width: 49.9%;
|
|
}
|
|
|
|
.portico-landing.hello .col-3 {
|
|
width: 33.3%;
|
|
}
|
|
|
|
.portico-landing.hello .col-4 {
|
|
width: 20%;
|
|
}
|
|
|
|
/* -- compare css -- */
|
|
.compare {
|
|
background-color: hsl(163, 22%, 31%);
|
|
color: #fff;
|
|
}
|
|
|
|
.compare .text-header .text-content h1 {
|
|
margin-top: 0px;
|
|
}
|
|
|
|
.compare .padded-content {
|
|
width: 900px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.compare table {
|
|
width: 100%;
|
|
text-align: left;
|
|
border-collapse: collapse;
|
|
|
|
font-weight: 400;
|
|
|
|
color: hsla(0, 0%, 100%, 0.8);
|
|
}
|
|
|
|
.compare table thead th:last-of-type {
|
|
width: 120px;
|
|
}
|
|
|
|
.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 {
|
|
border-bottom: 5px solid hsla(0, 0%, 0%, 0.1);
|
|
}
|
|
|
|
.compare thead th {
|
|
font-weight: 600;
|
|
padding: 15px 0px;
|
|
|
|
color: #fff;
|
|
}
|
|
|
|
.compare thead th.normal {
|
|
font-weight: normal;
|
|
color: inherit;
|
|
}
|
|
|
|
.compare tbody tr {
|
|
border-bottom: 1px solid hsl(163, 22%, 28%);
|
|
}
|
|
|
|
.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: "\d7";
|
|
|
|
position: relative;
|
|
display: inline-block;
|
|
|
|
top: 3px;
|
|
|
|
font-size: 2.5rem;
|
|
font-weight: 300;
|
|
line-height: 0.9;
|
|
}
|
|
|
|
.compare tbody tr td a {
|
|
font-size: 0.9rem;
|
|
font-weight: 400;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.compare p {
|
|
font-weight: 300;
|
|
}
|
|
|
|
.compare .terms {
|
|
margin-top: 30px;
|
|
font-weight: 400;
|
|
font-size: 0.7em;
|
|
|
|
line-height: 1.2;
|
|
|
|
color: hsla(0, 0%, 100%, 0.8);
|
|
}
|
|
|
|
.screen .line {
|
|
width: 100%;
|
|
height: 6px;
|
|
margin: 8px 0px;
|
|
|
|
background-color: hsl(0, 0%, 93%);
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.screen .line.small {
|
|
width: 60%;
|
|
}
|
|
|
|
.screen .line.micro {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
|
|
width: 15%;
|
|
}
|
|
|
|
.screen .line.darker {
|
|
background-color: hsl(0, 0%, 73%);
|
|
}
|
|
|
|
.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 {
|
|
background-color: hsl(350, 42%, 77%);
|
|
}
|
|
|
|
.screen .line.blue {
|
|
background-color: hsl(193, 42%, 77%);
|
|
}
|
|
|
|
.screen .line.green {
|
|
background-color: hsl(119, 42%, 77%);
|
|
}
|
|
|
|
.screen .line.orange {
|
|
background-color: hsl(30, 42%, 77%);
|
|
}
|
|
|
|
.screen .top .avatar {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
|
|
width: 20px;
|
|
height: 20px;
|
|
background-color: hsl(0, 0%, 73%);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.screen .top .top-line {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
|
|
width: 50px;
|
|
margin-top: 0px;
|
|
|
|
background-color: hsl(0, 0%, 73%);
|
|
}
|
|
|
|
.screen .navbar {
|
|
background-color: hsl(170, 47%, 54%);
|
|
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;
|
|
|
|
box-shadow: 0px 0px 15px hsla(0, 0%, 0%, 0.01);
|
|
}
|
|
|
|
.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);
|
|
border: 5px solid hsl(0, 0%, 0%);
|
|
}
|
|
|
|
.portico-landing.hello .screen {
|
|
position: relative;
|
|
margin: -300px auto 0px auto;
|
|
|
|
width: 600px;
|
|
background-color: hsl(0, 0%, 98%);
|
|
height: 350px;
|
|
|
|
padding: 10px 30px 10px 30px;
|
|
|
|
border-radius: 12px;
|
|
box-shadow: 0px 0px 50px hsla(0, 0%, 0%, 0.2);
|
|
|
|
background-color: hsl(0, 0%, 27%);
|
|
|
|
z-index: 1;
|
|
}
|
|
|
|
.portico-landing.hello .screen::before {
|
|
content: " ";
|
|
position: absolute;
|
|
top: calc(50% - 5px);
|
|
left: 20px;
|
|
|
|
width: 10px;
|
|
height: 10px;
|
|
|
|
border-radius: 5px;
|
|
background-color: hsl(0, 0%, 13%);
|
|
}
|
|
|
|
.portico-landing.hello .screen::after {
|
|
content: " ";
|
|
position: absolute;
|
|
top: calc(50% - 12.5px);
|
|
right: 8px;
|
|
|
|
width: 25px;
|
|
height: 25px;
|
|
|
|
border-radius: 13px;
|
|
background-color: hsl(0, 0%, 73%);
|
|
}
|
|
|
|
.portico-landing.hello .screen .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%);
|
|
}
|
|
|
|
.portico-landing.hello .features {
|
|
padding: 50px 0px 100px 0px;
|
|
|
|
background-color: #fff;
|
|
}
|
|
|
|
.portico-landing.hello .features .col-2 {
|
|
text-align: center;
|
|
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.portico-landing.hello .features .col-2 img {
|
|
margin-bottom: 20px;
|
|
width: 100%;
|
|
max-width: 300px;
|
|
}
|
|
|
|
.portico-landing.hello .features .col-2 .il-block {
|
|
display: inline-block;
|
|
width: 75%;
|
|
text-align: left;
|
|
}
|
|
|
|
.portico-landing.hello .features .col-2 h2 {
|
|
font-weight: normal;
|
|
}
|
|
|
|
.portico-landing.hello .open-source {
|
|
text-align: center;
|
|
|
|
position: relative;
|
|
z-index: 1;
|
|
|
|
background-color: #262d3a;
|
|
color: hsl(220, 15%, 76%);
|
|
}
|
|
|
|
.portico-landing.hello .open-source img {
|
|
margin: 20px 2%;
|
|
width: 28%;
|
|
max-width: 500px;
|
|
}
|
|
|
|
.portico-landing.hello .open-source .il-block {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
width: 50%;
|
|
max-width: 700px;
|
|
text-align: left;
|
|
}
|
|
|
|
.portico-landing.hello .open-source h2 {
|
|
font-weight: normal;
|
|
}
|
|
|
|
.portico-landing.hello .open-source img {
|
|
display: inline-block;
|
|
}
|
|
|
|
.portico-landing.hello .testimonials {
|
|
color: hsl(220, 15%, 76%);
|
|
background-color: hsl(219, 21%, 19%);
|
|
}
|
|
|
|
.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;
|
|
|
|
color: hsl(221, 8%, 51%);
|
|
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;
|
|
border-bottom: 1px solid rgba(255,255,255,0.2);
|
|
}
|
|
|
|
.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);
|
|
|
|
background-color: hsl(0, 0%, 66%);
|
|
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 {
|
|
position: relative;
|
|
padding: 200px 80px 100px 80px;
|
|
margin-top: -50px;
|
|
|
|
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%));
|
|
|
|
color: #fff;
|
|
}
|
|
|
|
.portico-landing.hello .apps .triangle {
|
|
position: absolute;
|
|
top: 0px;
|
|
left: 0px;
|
|
width: 0;
|
|
height: 0;
|
|
border-style: solid;
|
|
border-width: 150px 100vw 0 0;
|
|
border-color: #fff transparent transparent transparent;
|
|
}
|
|
|
|
.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: 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);
|
|
}
|
|
|
|
.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;
|
|
width: 155px;
|
|
height: 220px;
|
|
padding: 0 5px;
|
|
transition: all 0.3s ease;
|
|
margin: 10px 5px;
|
|
color: hsl(219, 23%, 33%);
|
|
border-radius: 5px;
|
|
border: 1px solid #fff;
|
|
}
|
|
|
|
.portico-landing.hello .integrations .integration-icons .group:hover {
|
|
border: 1px solid hsl(170, 47%, 53%);
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.portico-landing.hello .call-to-action-bottom {
|
|
position: relative;
|
|
padding: 125px 100px 60px 100px;
|
|
margin-top: 0px;
|
|
|
|
background-color: hsl(218, 23%, 16%);
|
|
}
|
|
|
|
.portico-landing.hello .call-to-action-bottom button {
|
|
display: block;
|
|
margin: 20px auto 0 auto;
|
|
padding: 12px 25px 10px 25px;
|
|
|
|
font-size: 1.2rem;
|
|
color: hsl(220, 15%, 76%);
|
|
|
|
border: 1px solid hsl(220, 15%, 76%);
|
|
background: transparent;
|
|
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.portico-landing.hello .call-to-action-bottom button:hover {
|
|
border-color: #fff;
|
|
background: #fff;
|
|
color: hsl(219, 23%, 33%);
|
|
}
|
|
|
|
.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 {
|
|
color: hsl(220, 15%, 76%);
|
|
}
|
|
|
|
.footer.hello li a:hover {
|
|
color: #fff;
|
|
}
|
|
|
|
/* -- apps page -- */
|
|
.portico-landing.apps {
|
|
padding-top: 0px;
|
|
}
|
|
.portico-landing.apps .main,
|
|
.portico-landing.features-app .main {
|
|
background-color: #fff;
|
|
}
|
|
|
|
.portico-landing.apps .hero {
|
|
position: relative;
|
|
|
|
padding: 100px 50px 50px 50px;
|
|
background: linear-gradient(35deg, #003b52, #45b59b);
|
|
height: 600px;
|
|
|
|
color: #fff;
|
|
|
|
overflow: hidden;
|
|
}
|
|
|
|
.portico-landing.apps .hero h1 {
|
|
font-size: 3em;
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
.portico-landing.apps .hero h1 {
|
|
margin-top: 0px;
|
|
}
|
|
|
|
.portico-landing.apps .hero #waves {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
background-image: url(/static/images/waves.svg);
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.portico-landing.apps .hero .info,
|
|
.portico-landing.apps .hero .image {
|
|
position: relative;
|
|
|
|
width: 50%;
|
|
float: left;
|
|
height: 100%;
|
|
|
|
z-index: 1;
|
|
}
|
|
|
|
.portico-landing.apps .hero .info .cta {
|
|
text-shadow: 0px 0px 60px rgba(0,0,0,0.3);
|
|
max-width: 600px;
|
|
}
|
|
|
|
.portico-landing.apps .hero .image img[src="/static/images/landing-page/tar.gz.svg"] {
|
|
width: 50%;
|
|
}
|
|
|
|
.portico-landing.apps .hero .image img[src="/static/images/app-screenshots/zulip-iphone-rough.png"] {
|
|
height: 85%;
|
|
}
|
|
|
|
.portico-landing.apps .hero .image img[src="/static/images/app-screenshots/zulip-android.png"] {
|
|
height: 100%;
|
|
}
|
|
|
|
.portico-landing.apps .hero .info .flex {
|
|
height: 100%;
|
|
}
|
|
|
|
.portico-landing.apps .hero .info button {
|
|
padding: 10px 20px;
|
|
margin-top: 50px;
|
|
|
|
font-size: 1em;
|
|
font-weight: 600;
|
|
|
|
border: 2px solid #fff;
|
|
color: #fff;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.portico-landing.apps .other-apps {
|
|
background-color: #fff;
|
|
padding: 50px 50px 120px 50px;
|
|
|
|
text-align: center;
|
|
}
|
|
|
|
.portico-landing.apps .other-apps h2 {
|
|
width: 600px;
|
|
margin: 0 auto;
|
|
|
|
text-align: center;
|
|
}
|
|
|
|
.portico-landing.apps .other-apps .apps {
|
|
display: inline-block;
|
|
margin: 50px 0px 0px 0px;
|
|
}
|
|
|
|
.portico-landing.apps .other-apps .apps .icon {
|
|
vertical-align: top;
|
|
|
|
width: 50px;
|
|
padding: 20px 30px;
|
|
border-radius: 70px;
|
|
|
|
color: #ccc;
|
|
|
|
font-size: 3em;
|
|
text-align: center;
|
|
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.portico-landing.apps .other-apps .apps .icon:hover {
|
|
color: #777;
|
|
background: linear-gradient(-45deg, #d4d4d4, #fafafa);
|
|
}
|
|
|
|
.portico-landing.apps .other-apps .apps .icon.fa-mobile-phone {
|
|
font-size: 4em;
|
|
padding: 11.5px 27px;
|
|
}
|
|
|
|
.portico-landing.apps .other-apps .apps .icon.fa-mobile-phone::after {
|
|
margin-top: 1px;
|
|
}
|
|
|
|
.portico-landing.apps .other-apps .apps .icon::after {
|
|
content: attr(data-label);
|
|
display: block;
|
|
|
|
font-size: 0.8rem;
|
|
font-weight: 600;
|
|
font-family: "Humbug", sans-serif;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
/* -- /for/open-source/ -- */
|
|
.portico-landing.why-page {
|
|
padding-top: 0px;
|
|
}
|
|
|
|
.portico-landing.why-page .main {
|
|
max-width: 900px;
|
|
}
|
|
|
|
.portico-landing.why-page .hero {
|
|
padding: 200px 50px 100px 50px;
|
|
|
|
|
|
background: #69b190;
|
|
color: #fff;
|
|
}
|
|
|
|
.portico-landing.why-page .hero h1 {
|
|
margin: 0px 0px 20px 0px;
|
|
|
|
font-size: 3.5em;
|
|
font-weight: 300;
|
|
}
|
|
|
|
.portico-landing.why-page .hero p {
|
|
width: 70%;
|
|
max-width: 700px;
|
|
margin: 0 auto;
|
|
|
|
font-size: 1.3em;
|
|
text-align: center;
|
|
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.portico-landing.why-page .main .inner-content h2 {
|
|
margin-top: 30px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.portico-landing.why-page .main li {
|
|
color: #555;
|
|
}
|
|
|
|
.portico-landing.why-page .main p {
|
|
line-height: 1.8;
|
|
}
|
|
|
|
.portico-landing.why-page .main li strong {
|
|
font-weight: 600;
|
|
color: #333;
|
|
}
|
|
|
|
.portico-landing.why-page .photo-description {
|
|
position: relative;
|
|
top: -40px;
|
|
height: 0;
|
|
|
|
font-size: 0.8em;
|
|
font-weight: normal;
|
|
color: #888;
|
|
}
|
|
|
|
.portico-landing.why-page .bg-pycon {
|
|
position: relative;
|
|
|
|
background-image: url(/static/images/landing-page/pycon.jpg);
|
|
background-size: cover;
|
|
background-position: center;
|
|
}
|
|
|
|
.portico-landing.why-page .bg-pycon .bg-dimmer {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
|
|
background-color: rgba(15, 24, 48, 0.7);
|
|
|
|
z-index: 0;
|
|
}
|
|
|
|
.portico-landing.why-page .bg-pycon .content {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
/* -- hello page styling -- */
|
|
.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(-110px);
|
|
|
|
background: linear-gradient(90deg, hsl(0, 0%, 27%) 0%, hsl(0, 0%, 33%) 8%, hsl(0, 0%, 33%) 92%, hsl(0, 0%, 27%) 100%);
|
|
}
|
|
|
|
.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;
|
|
background-color: hsl(0, 0%, 80%);
|
|
}
|
|
|
|
.portico-landing.hello .apps .screen.ios::after {
|
|
top: auto;
|
|
bottom: 7px;
|
|
left: calc(50% - 12.5px);
|
|
background-color: hsl(0, 0%, 80%);
|
|
}
|
|
|
|
.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);
|
|
background-color: hsl(0, 0%, 80%);
|
|
|
|
border-radius: 8px;
|
|
background-color: hsl(0, 0%, 13%);
|
|
width: 35px;
|
|
height: 20px;
|
|
}
|
|
|
|
.portico-landing.hello .apps .screen.ios .main-page {
|
|
border-color: hsl(0, 0%, 86%);
|
|
}
|
|
|
|
.portico-landing.hello .apps .screen.android .main-page {
|
|
border-color: hsl(0, 0%, 13%);
|
|
}
|
|
|
|
/* -- integrations page css -- */
|
|
.portico-landing.integrations {
|
|
color: hsl(0, 0%, 27%);
|
|
font-weight: normal;
|
|
}
|
|
|
|
.portico-landing.integrations .main {
|
|
width: calc(100% - 100px);
|
|
margin: 0 auto;
|
|
|
|
background-color: #fff;
|
|
box-shadow: 0px 0px 80px hsla(0, 0%, 0%, 0.12);
|
|
}
|
|
|
|
.portico-landing.integrations .padded-content {
|
|
padding: 50px 0;
|
|
}
|
|
|
|
.portico-landing.integrations .padded-content .inner-content {
|
|
transition: all 0.3s ease;
|
|
min-height: 800px;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.portico-landing.integrations .portico-page-heading a {
|
|
color: inherit;
|
|
}
|
|
|
|
.portico-landing.integrations .portico-page-subheading {
|
|
font-weight: 400;
|
|
font-size: 1.1em;
|
|
color: #aaa;
|
|
line-height: 1.2;
|
|
text-align: center;
|
|
}
|
|
|
|
.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: 0px 0px 7px 2px rgba(0,0,0,0.03);
|
|
-moz-box-shadow: 0px 0px 7px 2px rgba(0,0,0,0.03);
|
|
box-shadow: 0px 0px 7px 2px 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;
|
|
min-height: 500px;
|
|
}
|
|
|
|
.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: 490px;
|
|
z-index: 10;
|
|
}
|
|
|
|
.portico-landing.integrations .integration-categories-sidebar h3 {
|
|
font-weight: 400;
|
|
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;
|
|
transition: all 0.3s ease;
|
|
color: #414e67;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.portico-landing.integrations .integration-lozenge {
|
|
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;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.portico-landing.integrations .integration-lozenge.legacy {
|
|
display: none !important;
|
|
}
|
|
|
|
.portico-landing.integrations .integration-lozenge.without-category {
|
|
height: 180px;
|
|
}
|
|
|
|
.portico-landing.integrations .integration-lozenge:hover {
|
|
border: 1px solid hsl(170, 47%, 53%);
|
|
}
|
|
|
|
.portico-landing.integrations .integration-lozenge .integration-logo {
|
|
margin: 34px auto 20px;
|
|
height: 60px;
|
|
}
|
|
|
|
.portico-landing.integrations .integration-lozenge .icon-vector-plus {
|
|
font-size: 59px;
|
|
}
|
|
|
|
.portico-landing.integrations .integration-lozenge .integration-name {
|
|
font-size: 1.2em;
|
|
font-weight: 400;
|
|
margin: 10px 4px 0 4px;
|
|
}
|
|
|
|
.portico-landing.integrations .integration-lozenge .integration-name.create-your-own {
|
|
margin-top: 27px;
|
|
font-size: 1.1em !important;
|
|
}
|
|
|
|
.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-instructions-group {
|
|
padding: 0 50px;
|
|
display: none;
|
|
}
|
|
|
|
.portico-landing.integrations .integration-instruction-block .integration-lozenge {
|
|
width: 125px;
|
|
height: 170px;
|
|
margin: 0 21px;
|
|
}
|
|
|
|
.portico-landing.integrations .integration-instruction-block .integration-lozenge .integration-category {
|
|
display: none;
|
|
}
|
|
|
|
.portico-landing.integrations .integration-instruction-block .name {
|
|
display: none;
|
|
font-size: 1.4em;
|
|
font-weight: 400;
|
|
margin: 0;
|
|
padding-bottom: 35px;
|
|
}
|
|
|
|
.portico-landing.integrations .integration-instruction-block .categories {
|
|
position: absolute;
|
|
top: 230px;
|
|
}
|
|
|
|
.portico-landing.integrations .integration-instruction-block .categories .integration-category {
|
|
font-size: 0.90em;
|
|
font-weight: 400;
|
|
padding: 6px 10px 6px 3px;
|
|
margin: 3px 0;
|
|
width: 165px;
|
|
text-align: center;
|
|
border-radius: 5px;
|
|
transition: all 0.3s ease;
|
|
color: #414e67;
|
|
}
|
|
|
|
.portico-landing.integrations .integration-instruction-block .categories .integration-category:hover {
|
|
background-color: hsl(170, 65%, 85%);
|
|
color: hsl(170, 72%, 32%);
|
|
}
|
|
|
|
/* -- 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 {
|
|
background: linear-gradient(10deg, transparent 50%, rgba(15, 46, 57, 0.7));
|
|
}
|
|
|
|
.gradients .gradient.green {
|
|
background: linear-gradient(-25deg, transparent 40%, #3fb082);
|
|
}
|
|
|
|
.gradients .gradient.blue {
|
|
background: linear-gradient(25deg, transparent 40%, #5298b1);
|
|
}
|
|
|
|
.gradients .gradient.sunburst {
|
|
background: linear-gradient(5deg, transparent 20%, #e8d275);
|
|
}
|
|
|
|
.gradients .gradient.white-fade {
|
|
background: linear-gradient(0deg, #fff 0%, transparent 40%);
|
|
}
|
|
|
|
/* -- media queries -- */
|
|
@media (max-width: 1426px) {
|
|
.portico-landing.hello .integrations .integration-icons .hide-1 {
|
|
display: none;
|
|
}
|
|
|
|
.portico-landing.integrations .integration-categories-sidebar {
|
|
padding-left: 30px;
|
|
}
|
|
|
|
.portico-landing.integrations .integration-lozenge {
|
|
width: 135px;
|
|
}
|
|
}
|
|
|
|
@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: 1295px) {
|
|
.portico-landing.hello .apps .right-side {
|
|
display: none;
|
|
|
|
}
|
|
|
|
.portico-landing.hello .apps .left-side {
|
|
width: 100%;
|
|
}
|
|
|
|
.portico-landing.hello .integrations .content {
|
|
max-width: 750px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.portico-landing.hello .integrations .integration-icons {
|
|
max-width: 600px;
|
|
margin: 0px auto;
|
|
}
|
|
|
|
.portico-landing.hello .apps .left-side .content {
|
|
margin: 0px auto 50px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 1024px) {
|
|
nav {
|
|
padding-bottom: 110px;
|
|
}
|
|
|
|
nav.white {
|
|
padding-bottom: 40px;
|
|
}
|
|
|
|
.portico-landing {
|
|
padding-top: 170px;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
nav .logo span {
|
|
color: #52c2af;
|
|
}
|
|
|
|
nav .logo span {
|
|
color: #fff;
|
|
}
|
|
|
|
nav svg.brand-logo circle {
|
|
fill: #fff !important;
|
|
stroke: #fff !important;
|
|
}
|
|
|
|
nav svg.brand-logo path {
|
|
fill: #4e9da0 !important;
|
|
stroke: #4e9da0 !important;
|
|
}
|
|
|
|
.portico-landing.features-app section .headliner .image {
|
|
width: 200px;
|
|
height: 200px;
|
|
}
|
|
|
|
.portico-landing.features-app section .headliner .feature-box {
|
|
width: calc(100% - 200px - 20px);
|
|
}
|
|
}
|
|
|
|
@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;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.portico-landing.hello .apps,
|
|
.portico-landing.hello .integrations {
|
|
padding: 200px 50px 80px 50px;
|
|
}
|
|
|
|
.portico-landing.hello .apps .left-side .content {
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
|
|
.portico-landing.hello .integrations {
|
|
width: 100%;
|
|
padding: 80px 0;
|
|
}
|
|
|
|
.portico-landing.hello .integrations .content {
|
|
padding: 0 50px;
|
|
}
|
|
|
|
.portico-landing.hello .testimonials .quote-container {
|
|
width: 100%;
|
|
}
|
|
|
|
.portico-landing.hello .testimonials hr,
|
|
.portico-landing.hello .testimonials .company-container {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
@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;
|
|
}
|
|
|
|
.portico-landing.why-page .hero p br {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 830px) {
|
|
.portico-landing.integrations .integration-lozenge {
|
|
width: 134px;
|
|
height: 180px;
|
|
}
|
|
|
|
.portico-landing.integrations .integration-lozenge.without-category {
|
|
height: 160px;
|
|
}
|
|
|
|
.portico-landing.integrations .integration-lozenge .integration-logo {
|
|
margin: 34px auto 15px;
|
|
height: 45px;
|
|
}
|
|
|
|
.portico-landing.integrations .integration-lozenge .icon-vector-plus {
|
|
font-size: 45px;
|
|
}
|
|
|
|
.portico-landing.integrations .integration-lozenge .integration-name {
|
|
font-size: 1em;
|
|
}
|
|
|
|
.portico-landing.integrations .integration-lozenge .integration-name.create-your-own {
|
|
font-size: 0.95em !important;
|
|
}
|
|
|
|
.portico-landing.integrations .integration-lozenge .integration-category {
|
|
font-size: .8em;
|
|
}
|
|
|
|
.portico-landing.features-app section .headliner {
|
|
display: inline-flex;
|
|
|
|
width: auto;
|
|
height: 250px;
|
|
|
|
margin: 50px;
|
|
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
nav {
|
|
padding-left: 50px;
|
|
padding-right: 50px;
|
|
}
|
|
|
|
.portico-landing.integrations .main,
|
|
.main {
|
|
width: calc(100% - 100px);
|
|
|
|
margin-left: 50px;
|
|
margin-right: 50px;
|
|
}
|
|
|
|
.portico-landing.why-page .main {
|
|
width: auto;
|
|
margin: 0px;
|
|
}
|
|
|
|
.portico-landing.why-page .hero {
|
|
padding-left: 20px;
|
|
padding-right: 20px;
|
|
}
|
|
|
|
.portico-landing.why-page .hero {
|
|
font-size: 0.6em;
|
|
}
|
|
|
|
.portico-landing.why-page .hero p {
|
|
font-size: 2em;
|
|
width: 100%;
|
|
}
|
|
|
|
.portico-landing.why-page .padded-content {
|
|
padding: 50px 20px;
|
|
}
|
|
|
|
#integration-instruction-block .integration-lozenge {
|
|
display: none !important;
|
|
}
|
|
|
|
#integration-list-link {
|
|
top: 33px;
|
|
left: -7px;
|
|
}
|
|
|
|
.integration-instructions {
|
|
margin-left: 0px;
|
|
}
|
|
|
|
.portico-landing.integrations .portico-page-header {
|
|
padding-top: 20px;
|
|
}
|
|
|
|
.portico-landing.integrations .searchbar-reset {
|
|
width: 445px;
|
|
}
|
|
|
|
.portico-landing.integrations .searchbar input {
|
|
width: 375px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.portico-landing.integrations .integration-instruction-block .name {
|
|
display: block;
|
|
}
|
|
|
|
.portico-landing.integrations .integration-instruction-block .categories {
|
|
display: none;
|
|
}
|
|
|
|
.platform.image {
|
|
display: none !important;
|
|
}
|
|
|
|
.platform.description {
|
|
width: 100% !important;
|
|
}
|
|
|
|
.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-2 {
|
|
width: 100%;
|
|
}
|
|
|
|
nav .hamburger {
|
|
position: relative;
|
|
z-index: 10;
|
|
}
|
|
|
|
.portico-landing.features-app section {
|
|
padding: 0px 20px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 686px) {
|
|
.portico-landing {
|
|
padding-top: 120px;
|
|
}
|
|
|
|
.portico-landing.apps .hero {
|
|
height: 350px;
|
|
}
|
|
|
|
.portico-landing.apps .hero h1 {
|
|
font-size: 1.9em;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.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 {
|
|
padding: 0px 14px;
|
|
width: 30px;
|
|
padding-top: 8px;
|
|
padding-bottom: 0px;
|
|
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%;
|
|
}
|
|
|
|
.portico-landing.integrations .main,
|
|
.main {
|
|
width: calc(100% - 50px);
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
nav ul {
|
|
margin-top: 0px;
|
|
text-align: left;
|
|
}
|
|
|
|
nav .content {
|
|
display: inline-block;
|
|
}
|
|
|
|
nav .hamburger {
|
|
display: inline-block;
|
|
float: right;
|
|
}
|
|
|
|
nav ul:before {
|
|
content: "Zulip";
|
|
display: block;
|
|
margin-top: 20px;
|
|
padding-top: 5px;
|
|
margin-left: 10px;
|
|
|
|
width: 100px;
|
|
height: 40px;
|
|
|
|
font-size: 1.5rem;
|
|
text-align: right;
|
|
color: hsl(0, 0%, 27%);
|
|
|
|
background-size: 40px auto;
|
|
background-image: url(/static/images/zulip-logo.svg);
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
nav ul {
|
|
position: fixed;
|
|
float: none;
|
|
top: 0;
|
|
left: 0;
|
|
height: 100vh;
|
|
width: 300px;
|
|
padding-left: 30px;
|
|
|
|
background-color: #fff;
|
|
transform: translate(-350px, 0px);
|
|
|
|
|
|
box-shadow: 0px 0px 80px hsla(0, 0%, 0%, 0.12);
|
|
|
|
transition: all 0.5s ease;
|
|
}
|
|
|
|
nav ul.show {
|
|
transform: translate(0px, 0px);
|
|
}
|
|
|
|
nav ul .exit {
|
|
display: block;
|
|
position: absolute;
|
|
top: 10px;
|
|
right: 25px;
|
|
|
|
font-weight: 100;
|
|
font-size: 3em;
|
|
color: initial;
|
|
}
|
|
|
|
nav ul li:first-of-type {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
nav ul li {
|
|
display: block;
|
|
|
|
font-size: 1.5em;
|
|
font-weight: 300;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
nav ul li,
|
|
nav ul li a {
|
|
color: hsl(0, 0%, 27%) !important;
|
|
}
|
|
|
|
nav ul li.active:after {
|
|
content: ">";
|
|
transform: scale(1,1);
|
|
bottom: auto;
|
|
left: -25px;
|
|
font-weight: 400;
|
|
}
|
|
|
|
nav ul li.active {
|
|
font-weight: 400;
|
|
}
|
|
|
|
.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%;
|
|
}
|
|
|
|
.portico-landing.hello .testimonials .company-box .company {
|
|
margin: 10px;
|
|
width: calc(33% - 24px);
|
|
}
|
|
}
|
|
|
|
@media (max-width: 640px) {
|
|
.portico-landing.hello .integrations .integration-icons .group {
|
|
margin: 10px 16px 0 16px;
|
|
}
|
|
}
|
|
|
|
@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);
|
|
}
|
|
}
|
|
|
|
@media (max-device-width: 450px) {
|
|
nav {
|
|
padding-bottom: 105px;
|
|
}
|
|
|
|
.portico-landing.hello .integrations .integration-icons .group {
|
|
margin: 0;
|
|
}
|
|
|
|
.main,
|
|
.portico-landing.integrations .main {
|
|
width: 100%;
|
|
}
|
|
|
|
.portico-landing.integrations .main .portico-page-header {
|
|
padding-top: 10px;
|
|
}
|
|
|
|
.portico-landing.integrations .main .padded-content {
|
|
padding: 40px 0;
|
|
}
|
|
|
|
.portico-landing.integrations #integration-instructions-group {
|
|
padding: 0 25px;
|
|
}
|
|
|
|
.main .padded-content {
|
|
padding: 20px;
|
|
}
|
|
|
|
.footer {
|
|
width: 100vw;
|
|
}
|
|
}
|
|
|
|
@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;
|
|
}
|
|
|
|
.portico-landing.integrations .integration-lozenge {
|
|
width: 120px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 357px) {
|
|
.portico-landing.integrations .integration-lozenge {
|
|
width: 108px;
|
|
height: 160px;
|
|
}
|
|
|
|
.portico-landing.integrations .integration-lozenge.without-category {
|
|
height: 140px;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
}
|