2023-05-12 20:23:09 +02:00
|
|
|
:root {
|
|
|
|
--padded-content-padding: 50px;
|
|
|
|
}
|
|
|
|
|
2017-02-28 01:45:25 +01:00
|
|
|
html {
|
|
|
|
width: 100vw;
|
|
|
|
overflow-x: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
margin: 0;
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 0% 100%) !important;
|
|
|
|
color: hsl(0deg 0% 27%);
|
2017-02-28 01:45:25 +01:00
|
|
|
line-height: normal;
|
|
|
|
|
|
|
|
max-width: 100vw;
|
|
|
|
}
|
|
|
|
|
2017-06-08 21:25:19 +02:00
|
|
|
/* -- generic styles -- */
|
|
|
|
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3 {
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 10px 0;
|
2017-06-08 21:25:19 +02:00
|
|
|
|
|
|
|
font-weight: 300;
|
|
|
|
line-height: 1.2;
|
|
|
|
}
|
|
|
|
|
2020-05-24 22:58:55 +02:00
|
|
|
h1 {
|
|
|
|
font-size: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-size: 1.8em;
|
|
|
|
}
|
|
|
|
|
2017-06-08 21:25:19 +02:00
|
|
|
p {
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 10px 0;
|
2017-06-08 21:25:19 +02:00
|
|
|
font-weight: normal;
|
|
|
|
line-height: 1.5;
|
|
|
|
}
|
|
|
|
|
2017-10-26 01:26:36 +02:00
|
|
|
ul {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
2020-05-24 22:46:51 +02:00
|
|
|
a {
|
|
|
|
position: relative;
|
|
|
|
cursor: pointer;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(170deg 47% 33%);
|
2020-05-24 22:46:51 +02:00
|
|
|
|
2020-05-24 22:56:55 +02:00
|
|
|
&:hover,
|
|
|
|
&:visited {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(170deg 47% 33%);
|
2020-05-24 22:56:55 +02:00
|
|
|
}
|
2020-05-24 22:46:51 +02:00
|
|
|
|
2022-08-04 11:00:45 +02:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2020-05-24 22:56:55 +02:00
|
|
|
text-decoration: none;
|
2020-05-24 22:53:05 +02:00
|
|
|
}
|
2017-06-08 21:25:19 +02:00
|
|
|
|
2020-05-24 22:56:55 +02:00
|
|
|
&.arrow {
|
|
|
|
&::after {
|
|
|
|
content: " ";
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
height: 17px;
|
|
|
|
width: 17px;
|
|
|
|
top: 3px;
|
2021-11-05 03:28:57 +01:00
|
|
|
background-image: url("../../images/landing-page/arrow.png");
|
2020-05-24 22:56:55 +02:00
|
|
|
background-size: 100%;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.silver {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2020-05-24 22:46:51 +02:00
|
|
|
}
|
|
|
|
|
2019-03-03 16:59:03 +01:00
|
|
|
span a:hover,
|
2017-10-26 20:13:11 +02:00
|
|
|
p a:hover,
|
|
|
|
ul a:hover,
|
|
|
|
ol a:hover {
|
2017-08-30 20:58:31 +02:00
|
|
|
text-decoration: underline;
|
2017-06-08 21:25:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.flex {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2020-05-24 23:02:25 +02:00
|
|
|
.float {
|
|
|
|
&.left {
|
|
|
|
float: left;
|
|
|
|
}
|
2017-06-08 21:25:19 +02:00
|
|
|
|
2020-05-24 23:02:25 +02:00
|
|
|
&.right {
|
|
|
|
float: right;
|
|
|
|
}
|
2017-06-08 21:25:19 +02:00
|
|
|
|
2020-05-24 23:02:25 +02:00
|
|
|
&.clear {
|
|
|
|
clear: both;
|
|
|
|
}
|
2017-06-08 21:25:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.small {
|
|
|
|
font-size: 0.8em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.box-shadow {
|
2023-03-20 22:08:47 +01:00
|
|
|
box-shadow: 0 0 80px hsl(0deg 0% 0% / 12%);
|
2017-06-08 21:25:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.grey {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 60%);
|
2017-06-08 21:25:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.dark-grey {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 40%);
|
2017-06-08 21:25:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.bold {
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
.padded-content {
|
2023-05-12 20:23:09 +02:00
|
|
|
padding: var(--padded-content-padding);
|
2017-06-08 21:25:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.clear-float {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
2017-02-28 01:45:25 +01:00
|
|
|
*::selection {
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(31deg 84% 60% / 30%);
|
2017-02-28 01:45:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.center {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* -- component styling -- */
|
2019-06-17 06:01:45 +02:00
|
|
|
.button,
|
2017-02-28 01:45:25 +01:00
|
|
|
button {
|
|
|
|
padding: 5px 12px;
|
|
|
|
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: 0.7em;
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 0% 100%);
|
|
|
|
color: hsl(0deg 0% 27%);
|
2017-02-28 01:45:25 +01:00
|
|
|
|
2019-06-17 06:01:45 +02:00
|
|
|
line-height: 20px;
|
2017-02-28 01:45:25 +01:00
|
|
|
border-radius: 4px;
|
2023-03-20 22:08:47 +01:00
|
|
|
border: 1px solid hsl(0deg 0% 80%);
|
2017-02-28 01:45:25 +01:00
|
|
|
outline: none;
|
2018-08-15 18:05:07 +02:00
|
|
|
|
2019-06-17 06:01:45 +02:00
|
|
|
&:active {
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 0% 98%);
|
|
|
|
border-color: hsl(0deg 0% 73%);
|
2019-06-17 06:01:45 +02:00
|
|
|
}
|
|
|
|
|
2019-06-19 11:12:14 +02:00
|
|
|
&.green {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 100%);
|
|
|
|
background-color: hsl(170deg 47% 53%);
|
|
|
|
border-color: hsl(169deg 45% 43%);
|
2019-06-19 11:12:14 +02:00
|
|
|
|
|
|
|
&:hover {
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(170deg 47% 58%);
|
2019-06-19 11:12:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(170deg 47% 48%);
|
2019-06-19 11:12:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-24 22:55:05 +01:00
|
|
|
&.black-current-value {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 20%);
|
2019-06-19 11:12:14 +02:00
|
|
|
background-color: transparent;
|
2023-03-20 22:08:47 +01:00
|
|
|
border-color: hsl(0deg 0% 53%);
|
2019-06-19 11:12:14 +02:00
|
|
|
}
|
2019-06-18 06:31:01 +02:00
|
|
|
}
|
|
|
|
|
2020-05-24 23:30:13 +02:00
|
|
|
.silver {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 100%) !important;
|
2020-05-24 23:30:13 +02:00
|
|
|
opacity: 0.8;
|
|
|
|
|
2020-05-24 23:31:19 +02:00
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2020-05-24 23:30:13 +02:00
|
|
|
|
2020-05-24 23:31:19 +02:00
|
|
|
&.bold {
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
2020-05-24 23:30:13 +02:00
|
|
|
}
|
|
|
|
|
2017-02-28 01:45:25 +01:00
|
|
|
/* -- main panel styling -- */
|
|
|
|
.main {
|
|
|
|
width: calc(100% - 200px - 20px);
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* -- modify portico.css -- */
|
|
|
|
.app-main {
|
|
|
|
max-width: none;
|
|
|
|
min-width: 0;
|
|
|
|
padding: 0 !important;
|
|
|
|
}
|
|
|
|
|
2022-06-09 07:54:55 +02:00
|
|
|
.header {
|
2017-02-28 01:45:25 +01:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2020-06-14 16:32:56 +02:00
|
|
|
.portico-landing {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
padding-top: 120px;
|
|
|
|
|
|
|
|
z-index: 1;
|
|
|
|
|
2020-06-14 16:38:14 +02:00
|
|
|
&.show {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2023-05-10 21:02:23 +02:00
|
|
|
|
|
|
|
&.why-page,
|
|
|
|
&.case-studies-page {
|
2023-05-12 20:23:09 +02:00
|
|
|
/* Move top padding to inner-content for better scroll positions on URL fragments. */
|
2023-05-10 21:02:23 +02:00
|
|
|
.padded-content {
|
2023-05-12 20:23:09 +02:00
|
|
|
padding-top: 0;
|
2023-05-10 21:02:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.inner-content {
|
2023-05-12 20:23:09 +02:00
|
|
|
padding-top: var(--padded-content-padding);
|
2023-05-10 21:02:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
:target {
|
|
|
|
/* Keep elements targeted by URL fragments visible below the
|
|
|
|
floating top menu; coordinate the value here with the menu's height. */
|
|
|
|
scroll-margin-top: 60px;
|
|
|
|
}
|
2020-06-14 16:32:56 +02:00
|
|
|
}
|
|
|
|
|
2017-04-20 20:44:49 +02:00
|
|
|
/* -- hello page -- */
|
|
|
|
.portico-landing.hello {
|
2017-06-08 21:25:19 +02:00
|
|
|
background-color: transparent;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(219deg 23% 33%);
|
2021-07-28 19:48:46 +02:00
|
|
|
|
|
|
|
.hero-buttons {
|
|
|
|
margin-top: 40px;
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .hero {
|
|
|
|
position: relative;
|
2021-11-05 03:33:16 +01:00
|
|
|
padding: 60px 50px 30px;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 100%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
|
|
|
overflow: hidden;
|
2017-06-08 19:53:10 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
.content {
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
text-align: center;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& p {
|
2020-06-20 15:08:06 +02:00
|
|
|
font-weight: 400;
|
|
|
|
opacity: 0.85;
|
|
|
|
}
|
2020-06-20 14:04:40 +02:00
|
|
|
}
|
2017-06-08 19:53:10 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& header {
|
2020-06-20 15:08:06 +02:00
|
|
|
width: 850px;
|
|
|
|
display: inline-block;
|
|
|
|
text-align: left;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& h1 {
|
2020-06-20 15:08:06 +02:00
|
|
|
font-size: 3em;
|
|
|
|
font-weight: 400;
|
2017-06-08 19:53:10 +02:00
|
|
|
|
2023-03-20 22:08:47 +01:00
|
|
|
text-shadow: 0 0 20px hsl(0deg 0% 100% / 20%);
|
2020-06-20 15:08:06 +02:00
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& p {
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 30px 0;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
font-size: 1.5em;
|
|
|
|
font-weight: 300;
|
|
|
|
line-height: 1.4;
|
2023-07-21 23:08:07 +02:00
|
|
|
text-shadow:
|
|
|
|
0 0 5px hsl(164deg 74% 15% / 30%),
|
2023-03-20 22:08:47 +01:00
|
|
|
0 0 20px hsl(0deg 0% 100% / 20%);
|
2020-06-20 15:08:06 +02:00
|
|
|
}
|
2017-06-08 19:53:10 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& a {
|
2020-06-20 15:08:06 +02:00
|
|
|
display: block;
|
2021-11-05 03:33:16 +01:00
|
|
|
margin: 20px auto 0;
|
2020-06-20 15:08:06 +02:00
|
|
|
text-align: center;
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& button {
|
2020-08-06 02:42:07 +02:00
|
|
|
margin-top: 0;
|
2020-06-20 15:08:06 +02:00
|
|
|
padding: 12px 20px;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 0% 100%);
|
|
|
|
border: 2px solid hsl(0deg 0% 100%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
font-size: 1.2em;
|
2023-03-27 09:01:23 +02:00
|
|
|
font-weight: 400;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(148deg 23% 51%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2023-03-20 22:08:47 +01:00
|
|
|
box-shadow: 0 3px 10px hsl(0deg 0% 0% / 20%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
transition: all 0.2s ease;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
&:hover {
|
2023-03-20 22:08:47 +01:00
|
|
|
box-shadow: 0 3px 10px hsl(0deg 0% 100% / 20%);
|
2020-06-20 15:08:06 +02:00
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
&:active {
|
2023-03-20 22:08:47 +01:00
|
|
|
box-shadow: 0 3px 20px hsl(0deg 0% 100% / 50%);
|
2020-06-20 15:08:06 +02:00
|
|
|
}
|
2020-06-20 15:03:14 +02:00
|
|
|
}
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
2020-06-20 13:08:24 +02:00
|
|
|
.portico-landing.hello .gradients .gradient {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 1100px;
|
|
|
|
|
2020-06-20 15:12:57 +02:00
|
|
|
&.dark-blue {
|
2020-08-04 23:58:56 +02:00
|
|
|
background: linear-gradient(
|
|
|
|
10deg,
|
2023-03-20 22:08:47 +01:00
|
|
|
hsl(196deg 58% 14% / 0%) 50%,
|
|
|
|
hsl(196deg 58% 14% / 70%)
|
2020-08-04 23:58:56 +02:00
|
|
|
);
|
2020-06-20 15:12:57 +02:00
|
|
|
}
|
2020-06-20 13:08:24 +02:00
|
|
|
|
2020-06-20 15:12:57 +02:00
|
|
|
&.green {
|
2020-08-04 23:58:56 +02:00
|
|
|
background: linear-gradient(
|
|
|
|
-25deg,
|
2023-03-20 22:08:47 +01:00
|
|
|
hsl(156deg 47% 47% / 0%) 40%,
|
|
|
|
hsl(156deg 47% 47%)
|
2020-08-04 23:58:56 +02:00
|
|
|
);
|
2020-06-20 15:12:57 +02:00
|
|
|
}
|
2020-06-20 13:08:24 +02:00
|
|
|
|
2020-06-20 15:12:57 +02:00
|
|
|
&.blue {
|
2020-08-04 23:58:56 +02:00
|
|
|
background: linear-gradient(
|
|
|
|
25deg,
|
2023-03-20 22:08:47 +01:00
|
|
|
hsl(196deg 38% 51% / 0%) 40%,
|
|
|
|
hsl(196deg 38% 51%)
|
2020-08-04 23:58:56 +02:00
|
|
|
);
|
2020-06-20 15:12:57 +02:00
|
|
|
}
|
2020-06-20 13:08:24 +02:00
|
|
|
|
2020-06-20 15:12:57 +02:00
|
|
|
&.sunburst {
|
2020-08-04 23:58:56 +02:00
|
|
|
background: linear-gradient(
|
|
|
|
5deg,
|
2023-03-20 22:08:47 +01:00
|
|
|
hsl(49deg 71% 68% / 0%) 20%,
|
|
|
|
hsl(49deg 71% 68%)
|
2020-08-04 23:58:56 +02:00
|
|
|
);
|
2020-06-20 15:12:57 +02:00
|
|
|
}
|
2020-06-20 13:08:24 +02:00
|
|
|
|
2020-06-20 15:12:57 +02:00
|
|
|
&.white-fade {
|
2020-08-04 23:58:56 +02:00
|
|
|
background: linear-gradient(
|
|
|
|
0deg,
|
2023-03-20 22:08:47 +01:00
|
|
|
hsl(0deg 0% 98%) 0%,
|
|
|
|
hsl(0deg 0% 98% / 0%) 40%
|
2020-08-04 23:58:56 +02:00
|
|
|
);
|
2020-06-20 15:12:57 +02:00
|
|
|
}
|
2020-06-20 13:08:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes waves {
|
|
|
|
0% {
|
|
|
|
transform: rotate(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
50% {
|
|
|
|
transform: rotate(180deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes wavesBackward {
|
|
|
|
0% {
|
|
|
|
transform: rotate(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
50% {
|
|
|
|
transform: rotate(-180deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
transform: rotate(-360deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-13 23:25:10 +02:00
|
|
|
/* -- compare css -- */
|
2021-08-05 08:54:23 +02:00
|
|
|
.compare,
|
|
|
|
.compare-education {
|
2023-03-20 22:08:47 +01:00
|
|
|
background: linear-gradient(
|
|
|
|
198deg,
|
|
|
|
hsl(170deg 34% 47%),
|
|
|
|
hsl(146deg 31% 60%)
|
|
|
|
);
|
|
|
|
color: hsl(0deg 0% 100%);
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2021-08-05 08:54:23 +02:00
|
|
|
.table-container {
|
|
|
|
overflow-x: auto;
|
|
|
|
}
|
|
|
|
|
2021-07-29 15:07:09 +02:00
|
|
|
.gradients .gradient.white-fade {
|
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
.text-header .text-content h1 {
|
2020-08-06 02:42:07 +02:00
|
|
|
margin-top: 0;
|
2020-07-01 21:25:20 +02:00
|
|
|
}
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
.padded-content {
|
2021-08-05 08:54:23 +02:00
|
|
|
max-width: 900px;
|
2020-07-01 21:25:20 +02:00
|
|
|
margin: 0 auto;
|
2021-07-29 15:07:09 +02:00
|
|
|
position: relative; /* To place the content on top of gradients. */
|
|
|
|
z-index: 2;
|
2020-07-01 21:25:20 +02:00
|
|
|
}
|
2017-05-16 07:17:32 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& table {
|
2021-08-05 08:54:23 +02:00
|
|
|
min-width: 550px;
|
2021-07-29 15:07:09 +02:00
|
|
|
padding: 33px;
|
|
|
|
border: 20px solid transparent;
|
2020-07-01 21:25:20 +02:00
|
|
|
width: 100%;
|
|
|
|
text-align: left;
|
|
|
|
border-collapse: collapse;
|
|
|
|
font-weight: 400;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 100% / 80%);
|
2017-05-16 07:17:32 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& thead th {
|
2020-07-01 21:25:20 +02:00
|
|
|
&:last-of-type {
|
|
|
|
width: 120px;
|
|
|
|
}
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
&.uniform {
|
|
|
|
width: 20%;
|
|
|
|
}
|
2020-07-01 20:47:07 +02:00
|
|
|
}
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& td:not(:first-of-type),
|
2020-07-01 21:25:20 +02:00
|
|
|
th:not(:first-of-type) {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2020-07-01 20:47:07 +02:00
|
|
|
}
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& thead {
|
2023-03-20 22:08:47 +01:00
|
|
|
border-bottom: 3px solid hsl(0deg 0% 0% / 10%);
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& th {
|
2020-07-01 21:25:20 +02:00
|
|
|
font-weight: 600;
|
2020-08-06 02:42:07 +02:00
|
|
|
padding: 15px 0;
|
2021-07-29 15:07:09 +02:00
|
|
|
font-size: 18px;
|
2017-05-16 07:17:32 +02:00
|
|
|
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 100%);
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
&.normal {
|
|
|
|
font-weight: normal;
|
|
|
|
color: inherit;
|
|
|
|
}
|
2021-07-29 15:07:09 +02:00
|
|
|
|
|
|
|
&:nth-of-type(1) {
|
|
|
|
width: 28%;
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(222deg 24% 31%);
|
2021-07-29 15:07:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&:nth-of-type(2) {
|
|
|
|
width: 18%;
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(187deg 94% 20%);
|
2021-07-29 15:07:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&:nth-of-type(3),
|
|
|
|
&:nth-of-type(4),
|
2021-08-05 08:54:23 +02:00
|
|
|
&:nth-of-type(5),
|
|
|
|
&:nth-of-type(6) {
|
2021-07-29 15:07:09 +02:00
|
|
|
width: 18%;
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(162deg 67% 25%);
|
2021-07-29 15:07:09 +02:00
|
|
|
}
|
2020-07-01 20:54:36 +02:00
|
|
|
}
|
2020-07-01 20:48:53 +02:00
|
|
|
}
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2021-07-29 15:07:09 +02:00
|
|
|
.gradients {
|
|
|
|
position: static;
|
|
|
|
}
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& tbody tr {
|
2023-03-20 22:08:47 +01:00
|
|
|
border-bottom: 1px solid hsl(360deg 0% 100% / 3%);
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& td {
|
2020-08-06 02:42:07 +02:00
|
|
|
padding: 10px 0;
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2021-07-29 15:07:09 +02:00
|
|
|
&:nth-of-type(1) {
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(222deg 20% 40%);
|
2021-07-29 15:07:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&:nth-of-type(2) {
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(186.9deg 90.3% 28.4%);
|
2021-07-29 15:07:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&:nth-of-type(3),
|
|
|
|
&:nth-of-type(4),
|
2021-08-05 08:54:23 +02:00
|
|
|
&:nth-of-type(5),
|
|
|
|
&:nth-of-type(6) {
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(162deg 44% 38%);
|
2021-07-29 15:07:09 +02:00
|
|
|
}
|
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
&.no {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
&.yes::before {
|
|
|
|
content: " ";
|
|
|
|
display: inline-block;
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
width: 27px;
|
|
|
|
height: 27px;
|
2021-11-05 03:28:57 +01:00
|
|
|
background-image: url("../../images/landing-page/checkmark.png");
|
2020-07-01 21:25:20 +02:00
|
|
|
background-size: 100% auto;
|
|
|
|
}
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
&.no::before {
|
|
|
|
content: "\d7";
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
top: 3px;
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
font-size: 2.5rem;
|
2023-03-27 09:01:23 +02:00
|
|
|
font-weight: 400;
|
2020-07-01 21:25:20 +02:00
|
|
|
line-height: 0.9;
|
2017-05-15 20:42:04 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
opacity: 0.4;
|
|
|
|
}
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& a {
|
2020-07-01 21:25:20 +02:00
|
|
|
font-size: 0.9rem;
|
|
|
|
font-weight: 400;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
2020-07-01 20:56:17 +02:00
|
|
|
}
|
2020-07-01 20:51:11 +02:00
|
|
|
}
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& p {
|
2020-07-01 21:25:20 +02:00
|
|
|
font-weight: 300;
|
|
|
|
}
|
2017-05-13 23:25:10 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
.terms {
|
|
|
|
margin-top: 30px;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 0.7em;
|
2017-05-16 07:17:32 +02:00
|
|
|
|
2020-07-01 21:25:20 +02:00
|
|
|
line-height: 1.2;
|
2017-05-16 07:17:32 +02:00
|
|
|
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 24% 23%);
|
2017-05-16 07:17:32 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& a {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(170deg 47% 73%);
|
2020-07-01 21:25:20 +02:00
|
|
|
}
|
2020-07-01 20:57:21 +02:00
|
|
|
}
|
2017-08-30 21:00:29 +02:00
|
|
|
}
|
|
|
|
|
2021-08-05 08:54:23 +02:00
|
|
|
.compare-education {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 0%);
|
2021-08-05 08:54:23 +02:00
|
|
|
background: none;
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& table {
|
2021-08-05 08:54:23 +02:00
|
|
|
min-width: 650px;
|
|
|
|
|
|
|
|
.number {
|
2023-03-27 08:32:34 +02:00
|
|
|
font-weight: 700;
|
2021-08-05 08:54:23 +02:00
|
|
|
|
|
|
|
&.one {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 100% / 40%);
|
2021-08-05 08:54:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& td:first-of-type {
|
2021-08-05 08:54:23 +02:00
|
|
|
padding: 10px 10px 10px 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-15 20:42:04 +02:00
|
|
|
/* -- faq css -- */
|
|
|
|
.faqs {
|
|
|
|
position: relative;
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 0% 98%);
|
2017-05-15 20:42:04 +02:00
|
|
|
|
2020-07-02 00:19:17 +02:00
|
|
|
.padded-content {
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
2017-05-15 20:42:04 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& header {
|
2020-07-02 00:19:17 +02:00
|
|
|
max-width: 700px;
|
|
|
|
margin: 0 auto;
|
2017-05-15 20:42:04 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& h1 span {
|
2020-07-02 00:19:17 +02:00
|
|
|
vertical-align: top;
|
|
|
|
}
|
2020-07-02 00:16:46 +02:00
|
|
|
}
|
2017-05-15 20:42:04 +02:00
|
|
|
|
2020-07-02 00:19:17 +02:00
|
|
|
.faq {
|
|
|
|
margin: 50px auto;
|
|
|
|
max-width: 700px;
|
|
|
|
font-size: 1.2em;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(223deg 6% 25%);
|
2020-07-02 00:17:57 +02:00
|
|
|
|
2020-07-02 00:19:17 +02:00
|
|
|
.question {
|
|
|
|
font-weight: 600;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(222deg 20% 40%);
|
2020-07-02 00:19:17 +02:00
|
|
|
font-size: 1.1em;
|
|
|
|
}
|
2020-07-02 00:17:57 +02:00
|
|
|
|
2020-07-02 00:19:17 +02:00
|
|
|
.answer {
|
2021-11-05 03:33:16 +01:00
|
|
|
margin: 20px 0 0;
|
2020-07-02 00:19:17 +02:00
|
|
|
font-weight: 400;
|
|
|
|
}
|
2020-07-02 00:17:57 +02:00
|
|
|
}
|
2017-05-15 20:42:04 +02:00
|
|
|
|
2020-07-02 00:19:17 +02:00
|
|
|
/* the last faq in the box shouldn't have an extra 50px of margin. */
|
|
|
|
.faq-box div:last-of-type {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
2021-07-27 08:57:04 +02:00
|
|
|
|
|
|
|
.faq-header-link {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 0%);
|
2021-07-27 08:57:04 +02:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
.screen {
|
|
|
|
.line {
|
|
|
|
width: 100%;
|
|
|
|
height: 6px;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 8px 0;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 0% 93%);
|
2020-07-18 11:04:31 +02:00
|
|
|
border-radius: 3px;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
&.small {
|
|
|
|
width: 60%;
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
&.micro {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
width: 15%;
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
&.nano {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
width: 10%;
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
&.med {
|
|
|
|
width: 80%;
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
&.red {
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(350deg 42% 77%);
|
2020-07-18 11:04:31 +02:00
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
&.blue {
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(193deg 42% 77%);
|
2020-07-18 11:04:31 +02:00
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
&.green {
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(119deg 42% 77%);
|
2020-07-18 11:04:31 +02:00
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
&.orange {
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(30deg 42% 77%);
|
2020-07-18 11:04:31 +02:00
|
|
|
}
|
2020-07-13 03:54:50 +02:00
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
.top {
|
|
|
|
.avatar {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 0% 73%);
|
2020-07-18 11:04:31 +02:00
|
|
|
border-radius: 4px;
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
.top-line {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
width: 50px;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin-top: 0;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 0% 73%);
|
2020-07-18 11:04:31 +02:00
|
|
|
}
|
2020-07-13 03:58:53 +02:00
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
.navbar {
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(170deg 48% 54%);
|
2020-07-18 11:04:31 +02:00
|
|
|
padding: 10px;
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
.center-page {
|
|
|
|
height: 100%;
|
|
|
|
position: relative;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
overflow: hidden;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
.message-feed {
|
|
|
|
height: calc(100% - 20px);
|
|
|
|
margin-top: 20px;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
transition: all 0.1s ease;
|
|
|
|
}
|
2020-07-13 04:00:14 +02:00
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
.message-feed {
|
|
|
|
.message .content {
|
|
|
|
margin-left: 24px;
|
|
|
|
position: relative;
|
|
|
|
top: -15px;
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:04:31 +02:00
|
|
|
.stream {
|
2021-11-05 03:33:16 +01:00
|
|
|
padding: 3px 5px 0;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 0 5px;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 0% 100%);
|
2020-07-18 11:04:31 +02:00
|
|
|
border-radius: 4px;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2023-03-20 22:08:47 +01:00
|
|
|
box-shadow: 0 0 15px hsl(0deg 0% 0% / 1%);
|
2020-07-18 11:04:31 +02:00
|
|
|
}
|
2020-07-13 04:02:03 +02:00
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .screen {
|
|
|
|
position: relative;
|
2021-11-05 03:33:16 +01:00
|
|
|
margin: -300px auto 0;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
|
|
|
width: 600px;
|
|
|
|
height: 350px;
|
|
|
|
|
2021-11-05 03:33:16 +01:00
|
|
|
padding: 10px 30px;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
|
|
|
border-radius: 12px;
|
2023-03-20 22:08:47 +01:00
|
|
|
box-shadow: 0 0 50px hsl(0deg 0% 0% / 20%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 0% 27%);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
|
|
|
z-index: 1;
|
|
|
|
|
2020-07-18 11:12:22 +02:00
|
|
|
&::before {
|
|
|
|
content: " ";
|
|
|
|
position: absolute;
|
|
|
|
top: calc(50% - 5px);
|
|
|
|
left: 20px;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:12:22 +02:00
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
|
|
|
|
border-radius: 5px;
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 0% 13%);
|
2020-07-18 11:12:22 +02:00
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:12:22 +02:00
|
|
|
&::after {
|
|
|
|
content: " ";
|
|
|
|
position: absolute;
|
|
|
|
top: calc(50% - 12.5px);
|
|
|
|
right: 8px;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:12:22 +02:00
|
|
|
width: 25px;
|
|
|
|
height: 25px;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-07-18 11:12:22 +02:00
|
|
|
border-radius: 13px;
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 0% 73%);
|
2020-07-18 11:12:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.main-page {
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
height: calc(100% - 30px);
|
|
|
|
width: calc(100% - 30px);
|
|
|
|
margin: 10px;
|
|
|
|
|
2023-03-20 22:08:47 +01:00
|
|
|
border: 5px solid hsl(0deg 0% 13%);
|
2020-07-18 11:12:22 +02:00
|
|
|
border-radius: 4px;
|
|
|
|
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 0% 98%);
|
2020-07-18 11:12:22 +02:00
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .features {
|
2021-11-05 03:33:16 +01:00
|
|
|
padding: 50px 0 100px;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 0% 100%);
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
2017-08-08 20:14:55 +02:00
|
|
|
.portico-landing.hello .open-source {
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
|
|
|
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(217deg 22% 93%);
|
2017-08-30 23:16:56 +02:00
|
|
|
|
2020-07-18 11:49:17 +02:00
|
|
|
.flex {
|
2020-08-06 02:42:07 +02:00
|
|
|
min-height: 0;
|
|
|
|
padding: 50px 0;
|
2020-07-18 11:49:17 +02:00
|
|
|
}
|
2017-08-08 20:14:55 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& img {
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 0 2%;
|
2020-07-18 11:49:17 +02:00
|
|
|
width: 28%;
|
|
|
|
max-width: 500px;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2017-08-08 20:14:55 +02:00
|
|
|
|
2020-07-18 11:49:17 +02:00
|
|
|
.il-block {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
width: 50%;
|
|
|
|
max-width: 700px;
|
|
|
|
text-align: left;
|
|
|
|
}
|
2017-08-08 20:14:55 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& h2 {
|
2020-07-18 11:49:17 +02:00
|
|
|
font-weight: normal;
|
|
|
|
}
|
2017-08-08 20:14:55 +02:00
|
|
|
}
|
|
|
|
|
2017-04-20 20:44:49 +02:00
|
|
|
.portico-landing.hello .apps {
|
2017-06-08 19:53:10 +02:00
|
|
|
position: relative;
|
2021-11-05 03:33:16 +01:00
|
|
|
padding: 200px 80px 100px;
|
2017-06-08 19:53:10 +02:00
|
|
|
margin-top: -50px;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2023-03-20 22:08:47 +01:00
|
|
|
background: linear-gradient(
|
|
|
|
145deg,
|
|
|
|
hsl(191deg 56% 55%),
|
|
|
|
hsl(169deg 65% 42%)
|
|
|
|
);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 100%);
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
2017-06-08 19:53:10 +02:00
|
|
|
.portico-landing.hello .apps .triangle {
|
|
|
|
position: absolute;
|
2020-08-06 02:42:07 +02:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2017-06-08 19:53:10 +02:00
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 150px 100vw 0 0;
|
2023-03-20 22:08:47 +01:00
|
|
|
border-color: hsl(0deg 0% 98%) transparent transparent transparent;
|
2017-06-08 19:53:10 +02:00
|
|
|
}
|
|
|
|
|
2017-04-20 20:44:49 +02:00
|
|
|
.portico-landing.hello .apps .arrow {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 100%);
|
2017-04-20 20:44:49 +02:00
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .arrow::before {
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 0% 100%);
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .left-side,
|
|
|
|
.portico-landing.hello .apps .right-side {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .left-side {
|
|
|
|
width: calc(60% - 4px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .right-side {
|
|
|
|
width: calc(40% - 4px);
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .left-side .content {
|
|
|
|
width: 650px;
|
2017-06-08 19:53:10 +02:00
|
|
|
margin: 50px auto;
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .left-side .platform-icons {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .left-side .platform-icons .group h2 {
|
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .left-side .platform-icons .group {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 0 30px;
|
2017-04-20 20:44:49 +02:00
|
|
|
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .left-side .platform-icons .group a {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .left-side .platform-icons .group i {
|
|
|
|
display: inline-block;
|
|
|
|
width: 80px;
|
|
|
|
|
|
|
|
font-size: 3.5em;
|
2019-08-20 21:52:12 +02:00
|
|
|
opacity: 0.8;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .left-side .platform-icons .group i:hover {
|
|
|
|
opacity: 1;
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .arrow::after {
|
|
|
|
filter: brightness(4) saturate(0);
|
|
|
|
}
|
|
|
|
|
2017-06-06 22:05:17 +02:00
|
|
|
.portico-landing.hello .integrations {
|
2021-11-05 03:33:16 +01:00
|
|
|
padding: 80px;
|
2017-06-06 22:05:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .integrations .content {
|
|
|
|
margin-left: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .integrations .integration-icons {
|
|
|
|
width: 100%;
|
2018-05-07 20:51:08 +02:00
|
|
|
margin: 20px 0;
|
2017-06-06 22:05:17 +02:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .integrations .integration-icons .group {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
2017-06-13 01:06:47 +02:00
|
|
|
width: 155px;
|
2017-06-06 22:05:17 +02:00
|
|
|
height: 220px;
|
2017-06-13 01:06:47 +02:00
|
|
|
padding: 0 5px;
|
2017-06-06 22:05:17 +02:00
|
|
|
transition: all 0.3s ease;
|
2017-06-13 01:06:47 +02:00
|
|
|
margin: 10px 5px;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(219deg 23% 33%);
|
2017-06-13 01:06:47 +02:00
|
|
|
border-radius: 5px;
|
2023-03-20 22:08:47 +01:00
|
|
|
border: 1px solid hsl(206deg 44% 93%);
|
2017-06-06 22:05:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .integrations .integration-icons .group:hover {
|
2023-03-20 22:08:47 +01:00
|
|
|
border: 1px solid hsl(170deg 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;
|
2021-11-05 03:33:16 +01:00
|
|
|
padding: 50px 100px 0;
|
2021-07-28 19:48:46 +02:00
|
|
|
|
|
|
|
@media (width <= 768px) {
|
|
|
|
padding: 50px 10px 0;
|
|
|
|
}
|
2020-08-06 02:42:07 +02:00
|
|
|
margin-top: 0;
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
2021-08-05 14:02:43 +02:00
|
|
|
.portico-landing.hello .call-to-action-bottom .styled-button {
|
2019-06-17 06:01:45 +02:00
|
|
|
display: table;
|
2021-11-05 03:33:16 +01:00
|
|
|
margin: 20px auto 0;
|
2020-05-27 23:09:14 +02:00
|
|
|
padding: 10px 20px;
|
|
|
|
font-size: 1em;
|
|
|
|
font-weight: 600;
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .call-to-action-bottom h1 {
|
|
|
|
text-align: center;
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .call-to-action-bottom .zulip-octopus {
|
2021-11-05 03:33:16 +01:00
|
|
|
margin: 15px auto 50px;
|
2019-03-14 23:31:10 +01:00
|
|
|
width: 32px;
|
2017-04-20 20:44:49 +02:00
|
|
|
height: 30px;
|
2021-11-05 03:28:57 +01:00
|
|
|
background-image: url("../../images/landing-page/zulip-octopus.png");
|
2017-04-20 20:44:49 +02:00
|
|
|
background-size: cover;
|
2017-08-30 23:23:28 +02:00
|
|
|
|
|
|
|
filter: invert(0.9);
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
2017-03-09 21:18:14 +01:00
|
|
|
/* -- apps page -- */
|
2017-07-08 02:28:18 +02:00
|
|
|
.portico-landing.apps {
|
2020-08-06 02:42:07 +02:00
|
|
|
padding-top: 0;
|
2017-07-08 02:28:18 +02:00
|
|
|
}
|
2017-11-13 17:26:11 +01:00
|
|
|
|
2024-02-12 21:35:19 +01:00
|
|
|
.portico-landing.apps .main {
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 0% 100%);
|
2017-03-09 21:18:14 +01:00
|
|
|
}
|
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
.portico-landing.apps .hero {
|
2017-03-09 21:18:14 +01:00
|
|
|
position: relative;
|
|
|
|
|
2021-11-05 03:33:16 +01:00
|
|
|
padding: 100px 50px 50px;
|
2023-03-20 22:08:47 +01:00
|
|
|
background: linear-gradient(
|
|
|
|
35deg,
|
|
|
|
hsl(197deg 100% 16%),
|
|
|
|
hsl(166deg 45% 49%)
|
|
|
|
);
|
2024-02-20 07:45:01 +01:00
|
|
|
height: 450px;
|
2017-03-09 21:18:14 +01:00
|
|
|
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 100%);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
overflow: hidden;
|
2017-03-09 21:18:14 +01:00
|
|
|
}
|
|
|
|
|
2017-09-27 18:15:12 +02:00
|
|
|
.portico-landing.apps .hero .inner-content {
|
|
|
|
max-width: 1600px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
.portico-landing.apps .hero h1 {
|
2024-01-31 20:47:13 +01:00
|
|
|
text-align: center;
|
2017-07-08 02:28:18 +02:00
|
|
|
font-size: 3em;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin-bottom: 0;
|
|
|
|
margin-top: 0;
|
2017-03-09 21:18:14 +01:00
|
|
|
}
|
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
.portico-landing.apps .hero #waves {
|
2017-03-09 21:18:14 +01:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
|
2022-07-13 09:18:26 +02:00
|
|
|
background-image: url("../../images/landing-page/apps/waves.svg");
|
2017-07-08 02:28:18 +02:00
|
|
|
background-size: cover;
|
|
|
|
background-repeat: no-repeat;
|
2017-03-09 21:18:14 +01:00
|
|
|
}
|
|
|
|
|
2024-01-31 20:22:17 +01:00
|
|
|
.portico-landing.apps .hero .info {
|
2017-07-08 02:28:18 +02:00
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
2024-01-31 20:47:13 +01:00
|
|
|
width: 50%;
|
|
|
|
max-width: 600px;
|
|
|
|
margin: 0 auto;
|
2017-03-09 21:18:14 +01:00
|
|
|
}
|
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
.portico-landing.apps .hero .info .cta {
|
2023-03-20 22:08:47 +01:00
|
|
|
text-shadow: 0 0 60px hsl(0deg 0% 0% / 30%);
|
2024-02-20 07:45:01 +01:00
|
|
|
text-align: center;
|
2017-03-09 21:18:14 +01:00
|
|
|
}
|
|
|
|
|
2024-01-31 20:22:17 +01:00
|
|
|
.portico-landing.apps .hero .info .flex {
|
2024-02-20 07:45:01 +01:00
|
|
|
height: 300px;
|
2020-08-06 02:42:07 +02:00
|
|
|
min-height: 0;
|
2019-03-31 19:18:14 +02:00
|
|
|
}
|
|
|
|
|
2019-06-17 06:01:45 +02:00
|
|
|
.portico-landing.apps .hero .info .button {
|
|
|
|
display: inline-block;
|
2017-07-08 02:28:18 +02:00
|
|
|
padding: 10px 20px;
|
2017-03-09 21:18:14 +01:00
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
font-size: 1em;
|
|
|
|
font-weight: 600;
|
2017-03-09 21:18:14 +01:00
|
|
|
}
|
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
.portico-landing.apps .other-apps {
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 0% 100%);
|
2021-11-05 03:33:16 +01:00
|
|
|
padding: 50px 50px 120px;
|
2017-03-09 21:18:14 +01:00
|
|
|
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
.portico-landing.apps .other-apps h2 {
|
|
|
|
width: 600px;
|
|
|
|
margin: 0 auto;
|
2017-03-09 21:18:14 +01:00
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
text-align: center;
|
2017-03-09 21:18:14 +01:00
|
|
|
}
|
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
.portico-landing.apps .other-apps .apps {
|
|
|
|
display: inline-block;
|
2021-11-05 03:33:16 +01:00
|
|
|
margin: 50px 0 0;
|
2017-03-09 21:18:14 +01:00
|
|
|
}
|
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
.portico-landing.apps .other-apps .apps .icon {
|
|
|
|
vertical-align: top;
|
2017-03-09 21:18:14 +01:00
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
width: 50px;
|
2021-05-10 03:42:13 +02:00
|
|
|
padding: 18px 30px;
|
2017-07-08 02:28:18 +02:00
|
|
|
border-radius: 70px;
|
2017-03-09 21:18:14 +01:00
|
|
|
|
2021-05-12 20:57:11 +02:00
|
|
|
/* Reset color since we don't want default link styling. */
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 27%);
|
2017-03-09 21:18:14 +01:00
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
font-size: 3em;
|
2017-03-09 21:18:14 +01:00
|
|
|
text-align: center;
|
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
transition: all 0.2s ease;
|
2017-03-09 21:18:14 +01:00
|
|
|
}
|
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
.portico-landing.apps .other-apps .apps .icon:hover {
|
2023-03-20 22:08:47 +01:00
|
|
|
background: linear-gradient(-45deg, hsl(0deg 0% 83%), hsl(0deg 0% 98%));
|
2017-03-09 21:18:14 +01:00
|
|
|
}
|
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
.portico-landing.apps .other-apps .apps .icon.fa-mobile-phone {
|
|
|
|
font-size: 4em;
|
2021-05-10 03:42:13 +02:00
|
|
|
padding: 14px 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.apps .other-apps .apps .icon.fa-terminal {
|
|
|
|
padding: 12px 30px;
|
2017-03-09 21:18:14 +01:00
|
|
|
}
|
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
.portico-landing.apps .other-apps .apps .icon.fa-mobile-phone::after {
|
|
|
|
margin-top: 1px;
|
2017-03-09 21:18:14 +01:00
|
|
|
}
|
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
.portico-landing.apps .other-apps .apps .icon::after {
|
|
|
|
content: attr(data-label);
|
2017-03-09 21:18:14 +01:00
|
|
|
display: block;
|
2017-07-08 02:28:18 +02:00
|
|
|
|
|
|
|
font-size: 0.8rem;
|
|
|
|
font-weight: 600;
|
2023-03-27 09:01:23 +02:00
|
|
|
font-family: "Source Sans 3 VF", sans-serif;
|
2017-07-08 02:28:18 +02:00
|
|
|
margin-top: 10px;
|
2017-03-09 21:18:14 +01:00
|
|
|
}
|
|
|
|
|
2020-03-02 04:10:02 +01:00
|
|
|
.download-from-google-play-store img {
|
|
|
|
height: 42px;
|
2021-11-05 03:33:16 +01:00
|
|
|
padding: 15px 0;
|
2020-03-02 04:10:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.download-from-apple-app-store img {
|
|
|
|
height: 42px;
|
2021-11-05 03:33:16 +01:00
|
|
|
padding: 15px 0;
|
2020-03-02 04:10:02 +01:00
|
|
|
}
|
|
|
|
|
2017-07-20 22:00:23 +02:00
|
|
|
/* -- /for/open-source/ -- */
|
|
|
|
.portico-landing.why-page {
|
2020-08-06 02:42:07 +02:00
|
|
|
padding-top: 0;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(223deg 6% 25%);
|
2017-07-20 22:00:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.why-page .main {
|
2018-05-08 23:28:32 +02:00
|
|
|
max-width: 800px;
|
2017-07-20 22:00:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.why-page .hero {
|
2021-11-05 03:33:16 +01:00
|
|
|
padding: 200px 50px 100px;
|
2017-07-20 22:00:23 +02:00
|
|
|
|
2021-07-28 19:48:46 +02:00
|
|
|
@media (width < 900px) {
|
|
|
|
padding: 200px 0 100px;
|
|
|
|
}
|
|
|
|
|
2021-07-09 22:03:43 +02:00
|
|
|
&.empty-hero {
|
2021-11-05 03:33:16 +01:00
|
|
|
padding: 50px 50px 70px;
|
2021-07-09 22:03:43 +02:00
|
|
|
}
|
|
|
|
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(153deg 32% 55%);
|
|
|
|
color: hsl(0deg 0% 100%);
|
2017-07-20 22:00:23 +02:00
|
|
|
}
|
|
|
|
|
2017-10-04 01:25:43 +02:00
|
|
|
.portico-landing.why-page .hero.small-hero {
|
2021-11-05 03:33:16 +01:00
|
|
|
padding: 120px 50px 30px;
|
2017-10-04 01:25:43 +02:00
|
|
|
}
|
|
|
|
|
2017-07-20 22:00:23 +02:00
|
|
|
.portico-landing.why-page .hero h1 {
|
2021-07-20 20:33:48 +02:00
|
|
|
position: relative;
|
2021-11-05 03:33:16 +01:00
|
|
|
margin: 0 0 20px;
|
2017-07-20 22:00:23 +02:00
|
|
|
|
|
|
|
font-size: 3.5em;
|
|
|
|
font-weight: 300;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.why-page .hero p {
|
|
|
|
width: 70%;
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
|
|
font-size: 1.3em;
|
|
|
|
text-align: center;
|
|
|
|
|
2022-02-05 10:33:00 +01:00
|
|
|
opacity: 0.9;
|
2017-07-20 22:00:23 +02:00
|
|
|
}
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2019-07-24 10:13:43 +02:00
|
|
|
.portico-landing.why-page .markdown {
|
|
|
|
font-size: 1.1rem;
|
|
|
|
}
|
2017-07-20 22:00:23 +02:00
|
|
|
|
2018-06-04 23:00:25 +02:00
|
|
|
.portico-landing.why-page .main blockquote {
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 0% 100%);
|
2023-07-04 19:18:32 +02:00
|
|
|
border-left: 5px solid hsl(168deg 24% 51%);
|
2018-06-06 22:51:09 +02:00
|
|
|
padding: 20px 30px;
|
2023-07-04 19:18:32 +02:00
|
|
|
margin: 20px 0;
|
2018-06-06 22:51:09 +02:00
|
|
|
font-size: 1.05em;
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& p {
|
2018-06-06 22:51:09 +02:00
|
|
|
line-height: 1.5;
|
|
|
|
margin: 0;
|
|
|
|
font-weight: 400;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(220deg 23% 33%);
|
2018-06-06 22:51:09 +02:00
|
|
|
}
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& p:last-child {
|
2018-06-06 22:51:09 +02:00
|
|
|
margin-top: 10px;
|
|
|
|
}
|
2018-06-04 23:00:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.why-page .main img {
|
|
|
|
display: block;
|
|
|
|
margin: 0 auto;
|
|
|
|
max-width: 100%;
|
2019-07-22 19:25:32 +02:00
|
|
|
box-shadow: none;
|
|
|
|
border: none;
|
2018-06-04 23:00:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.why-page .main .slack-image {
|
|
|
|
width: 500px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.why-page .main .zulip-topics-image {
|
|
|
|
width: 300px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.why-page .main .zulip-reply-later-image {
|
|
|
|
width: 600px;
|
|
|
|
}
|
|
|
|
|
2017-08-17 23:45:30 +02:00
|
|
|
.portico-landing.why-page .photo-description {
|
|
|
|
position: relative;
|
2023-05-10 21:02:23 +02:00
|
|
|
top: 10px; /* Place in padding gap below photo */
|
2017-08-17 23:45:30 +02:00
|
|
|
height: 0;
|
|
|
|
|
|
|
|
font-size: 0.8em;
|
|
|
|
font-weight: normal;
|
2019-09-17 20:41:37 +02:00
|
|
|
line-height: 100%;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 53%);
|
2017-08-17 23:45:30 +02:00
|
|
|
}
|
|
|
|
|
2017-10-31 19:03:08 +01:00
|
|
|
.portico-landing.why-page .team h2 {
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
|
2021-07-22 13:59:28 +02:00
|
|
|
.portico-landing.why-page .bg-events {
|
|
|
|
position: relative;
|
|
|
|
|
2022-07-13 08:50:07 +02:00
|
|
|
background-image: url("../../images/landing-page/events/for-events.jpg");
|
2021-07-22 13:59:28 +02:00
|
|
|
background-size: cover;
|
|
|
|
background-position: center;
|
|
|
|
}
|
|
|
|
|
2021-07-20 20:33:48 +02:00
|
|
|
.portico-landing.why-page .bg-education {
|
|
|
|
position: relative;
|
|
|
|
|
2021-11-05 03:28:57 +01:00
|
|
|
background-image: url("../../images/landing-page/education/for-education-cover.jpg");
|
2021-07-20 20:33:48 +02:00
|
|
|
background-size: cover;
|
|
|
|
background-position: center;
|
|
|
|
}
|
|
|
|
|
2021-07-27 09:05:26 +02:00
|
|
|
.portico-landing.why-page .bg-companies {
|
|
|
|
position: relative;
|
|
|
|
|
2021-11-05 03:28:57 +01:00
|
|
|
background-image: url("../../images/landing-page/education/companies-laptop.jpg");
|
2021-07-27 09:05:26 +02:00
|
|
|
background-size: cover;
|
|
|
|
background-position: center;
|
|
|
|
|
|
|
|
.bg-dimmer {
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(224deg 52% 12% / 75%);
|
2021-07-27 09:05:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-17 23:45:30 +02:00
|
|
|
.portico-landing.why-page .bg-pycon {
|
|
|
|
position: relative;
|
|
|
|
|
2021-11-05 03:28:57 +01:00
|
|
|
background-image: url("../../images/landing-page/pycon.jpg");
|
2017-08-17 23:45:30 +02:00
|
|
|
background-size: cover;
|
|
|
|
background-position: center;
|
|
|
|
}
|
|
|
|
|
2017-10-31 19:03:08 +01:00
|
|
|
.portico-landing.why-page .bg-pycon.drone {
|
2021-11-05 03:28:57 +01:00
|
|
|
background-image: url("../../images/landing-page/pycon-drone.jpg");
|
2017-10-31 19:03:08 +01:00
|
|
|
}
|
|
|
|
|
2017-11-29 20:38:41 +01:00
|
|
|
.portico-landing.why-page .bg-pycon.mit {
|
2021-11-05 03:28:57 +01:00
|
|
|
background-image: url("../../images/landing-page/mit-lobby-7.jpg");
|
2017-11-29 20:38:41 +01:00
|
|
|
}
|
|
|
|
|
2018-11-01 00:50:57 +01:00
|
|
|
.portico-landing.why-page .bg-pycon.security {
|
2021-11-05 03:28:57 +01:00
|
|
|
background-image: url("../../images/landing-page/security.jpg");
|
2018-11-01 00:50:57 +01:00
|
|
|
}
|
|
|
|
|
2018-11-01 08:05:40 +01:00
|
|
|
.portico-landing.why-page .bg-pycon.why-zulip {
|
2022-07-13 08:35:35 +02:00
|
|
|
background-image: url("../../images/landing-page/why-zulip/why-zulip-threads.jpg");
|
2018-11-01 08:05:40 +01:00
|
|
|
}
|
|
|
|
|
2021-07-20 20:33:48 +02:00
|
|
|
.portico-landing.why-page .bg-dimmer {
|
2017-08-17 23:45:30 +02:00
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(224deg 52% 12% / 70%);
|
2017-08-17 23:45:30 +02:00
|
|
|
|
|
|
|
z-index: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.why-page .bg-pycon .content {
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
/* -- hello page styling -- */
|
2017-04-20 20:44:49 +02:00
|
|
|
.portico-landing.hello .apps .screen {
|
|
|
|
display: inline-block;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 0 10px;
|
2017-04-20 20:44:49 +02:00
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .screen.ios {
|
|
|
|
width: 200px;
|
|
|
|
height: 350px;
|
2020-08-06 02:42:07 +02:00
|
|
|
padding: 30px 0;
|
2017-04-20 20:44:49 +02:00
|
|
|
border-radius: 20px;
|
|
|
|
|
2019-08-30 03:49:42 +02:00
|
|
|
transform: translateY(50px);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 0% 100%);
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .screen.android {
|
|
|
|
width: 200px;
|
|
|
|
height: 370px;
|
2021-11-05 03:33:16 +01:00
|
|
|
padding: 10px 0 30px;
|
2017-04-20 20:44:49 +02:00
|
|
|
border-radius: 20px;
|
|
|
|
|
2019-08-30 03:49:42 +02:00
|
|
|
transform: translateY(-110px);
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-08-04 23:58:56 +02:00
|
|
|
background: linear-gradient(
|
|
|
|
90deg,
|
2023-03-20 22:08:47 +01:00
|
|
|
hsl(0deg 0% 27%) 0%,
|
|
|
|
hsl(0deg 0% 33%) 8%,
|
|
|
|
hsl(0deg 0% 33%) 92%,
|
|
|
|
hsl(0deg 0% 27%) 100%
|
2020-08-04 23:58:56 +02:00
|
|
|
);
|
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;
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 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);
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 0% 80%);
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .screen.android::before {
|
|
|
|
content: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .screen.android::after {
|
|
|
|
top: auto;
|
|
|
|
bottom: 10px;
|
|
|
|
left: calc(50% - 17.5px);
|
|
|
|
|
|
|
|
border-radius: 8px;
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 0% 13%);
|
2017-04-20 20:44:49 +02:00
|
|
|
width: 35px;
|
|
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .screen.ios .main-page {
|
2023-03-20 22:08:47 +01:00
|
|
|
border-color: hsl(0deg 0% 87%);
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .screen.android .main-page {
|
2023-03-20 22:08:47 +01:00
|
|
|
border-color: hsl(0deg 0% 13%);
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
2017-06-08 21:25:19 +02:00
|
|
|
/* -- gradients -- */
|
|
|
|
.gradients {
|
|
|
|
width: 100%;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gradients .gradient {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 1100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gradients .gradient.dark-blue {
|
2020-08-04 23:58:56 +02:00
|
|
|
background: linear-gradient(
|
|
|
|
10deg,
|
2023-03-20 22:08:47 +01:00
|
|
|
hsl(196deg 58% 14% / 0%) 50%,
|
|
|
|
hsl(196deg 58% 14% / 70%)
|
2020-08-04 23:58:56 +02:00
|
|
|
);
|
2017-06-08 21:25:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.gradients .gradient.green {
|
2020-08-04 23:58:56 +02:00
|
|
|
background: linear-gradient(
|
|
|
|
-25deg,
|
2023-03-20 22:08:47 +01:00
|
|
|
hsl(156deg 47% 47% / 0%) 40%,
|
|
|
|
hsl(156deg 47% 47%)
|
2020-08-04 23:58:56 +02:00
|
|
|
);
|
2017-06-08 21:25:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.gradients .gradient.blue {
|
2020-08-04 23:58:56 +02:00
|
|
|
background: linear-gradient(
|
|
|
|
25deg,
|
2023-03-20 22:08:47 +01:00
|
|
|
hsl(196deg 38% 51% / 0%) 40%,
|
|
|
|
hsl(196deg 38% 51%)
|
2020-08-04 23:58:56 +02:00
|
|
|
);
|
2017-06-08 21:25:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.gradients .gradient.sunburst {
|
2020-08-04 23:58:56 +02:00
|
|
|
background: linear-gradient(
|
|
|
|
5deg,
|
2023-03-20 22:08:47 +01:00
|
|
|
hsl(49deg 71% 68% / 0%) 20%,
|
|
|
|
hsl(49deg 71% 68%)
|
2020-08-04 23:58:56 +02:00
|
|
|
);
|
2017-06-08 21:25:19 +02:00
|
|
|
}
|
2017-06-13 01:06:47 +02:00
|
|
|
|
2017-06-08 21:25:19 +02:00
|
|
|
.gradients .gradient.white-fade {
|
2020-08-04 23:58:56 +02:00
|
|
|
background: linear-gradient(
|
|
|
|
0deg,
|
2023-03-20 22:08:47 +01:00
|
|
|
hsl(0deg 0% 100%) 0%,
|
|
|
|
hsl(0deg 0% 98% / 0%) 40%
|
2020-08-04 23:58:56 +02:00
|
|
|
);
|
2017-06-08 21:25:19 +02:00
|
|
|
}
|
2017-06-13 01:06:47 +02:00
|
|
|
|
2017-05-15 20:42:04 +02:00
|
|
|
/* -- pricing css -- */
|
|
|
|
.portico-landing.plans .main {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.plans .main .padded-content > h1 {
|
|
|
|
text-align: center;
|
|
|
|
font-size: 2.5em;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 0;
|
2017-05-15 20:42:04 +02:00
|
|
|
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 100%);
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.plans .main .padded-content > h2 {
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
font-size: 1.5em;
|
|
|
|
|
|
|
|
margin-bottom: 50px;
|
|
|
|
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 100%);
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
|
2023-12-04 21:34:28 +01:00
|
|
|
.for-education-pricing-model .pricing-container {
|
2017-05-15 20:42:04 +02:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2023-12-04 21:34:28 +01:00
|
|
|
.for-education-pricing-model .pricing-container .block {
|
2017-05-15 20:42:04 +02:00
|
|
|
display: inline-block;
|
2021-11-05 03:33:16 +01:00
|
|
|
margin: 40px 20px 20px;
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
|
2023-12-04 21:34:28 +01:00
|
|
|
.for-education-pricing-model .pricing-container .block .plan-title {
|
2017-05-15 20:42:04 +02:00
|
|
|
padding: 10px;
|
|
|
|
margin-bottom: 3px;
|
|
|
|
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 100%);
|
2017-05-15 20:42:04 +02:00
|
|
|
|
|
|
|
font-size: 2em;
|
|
|
|
font-weight: 300;
|
|
|
|
}
|
|
|
|
|
2023-12-04 21:34:28 +01:00
|
|
|
.for-education-pricing-model .pricing-container .text-content {
|
2021-07-24 06:18:50 +02:00
|
|
|
margin: 18px;
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
|
2023-12-04 21:34:28 +01:00
|
|
|
.for-education-pricing-model .padded-content .text-header .text-content h1 {
|
2020-08-06 02:42:07 +02:00
|
|
|
margin-top: 0;
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
|
2023-12-04 21:34:28 +01:00
|
|
|
.for-education-pricing-model .pricing-container .text-content h2 {
|
2017-05-15 20:42:04 +02:00
|
|
|
font-size: 1.5em;
|
|
|
|
font-weight: 400;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin-bottom: 0;
|
2017-05-15 20:42:04 +02:00
|
|
|
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2023-12-04 21:34:28 +01:00
|
|
|
.for-education-pricing-model .pricing-container hr {
|
2017-05-15 20:42:04 +02:00
|
|
|
border: none;
|
2023-03-20 22:08:47 +01:00
|
|
|
border-bottom: 2px solid hsl(170deg 47% 53%);
|
2021-11-05 03:33:16 +01:00
|
|
|
margin: 15px 0;
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
|
2023-12-04 21:34:28 +01:00
|
|
|
.for-education-pricing-model .pricing-container .text-content .description {
|
2017-05-15 20:42:04 +02:00
|
|
|
font-size: 0.9em;
|
|
|
|
font-weight: 400;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 53%);
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
|
2023-12-04 21:34:28 +01:00
|
|
|
.for-education-pricing-model .pricing-container ul.feature-list {
|
2017-05-15 20:42:04 +02:00
|
|
|
list-style: none;
|
2020-08-06 02:42:07 +02:00
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
|
2023-12-04 21:34:28 +01:00
|
|
|
.for-education-pricing-model .pricing-container ul.feature-list li {
|
2017-05-15 20:42:04 +02:00
|
|
|
position: relative;
|
2020-08-06 02:42:07 +02:00
|
|
|
padding: 10px 0 10px 25px;
|
2017-05-15 20:42:04 +02:00
|
|
|
|
|
|
|
font-size: 0.9em;
|
2023-03-27 09:01:23 +02:00
|
|
|
font-weight: 400;
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
|
2023-12-04 21:34:28 +01:00
|
|
|
.for-education-pricing-model .pricing-container ul.feature-list li::before {
|
2017-05-15 20:42:04 +02:00
|
|
|
content: " ";
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
|
|
|
left: 0;
|
|
|
|
width: 20px;
|
|
|
|
height: 18px;
|
|
|
|
|
2021-11-05 03:28:57 +01:00
|
|
|
background-image: url("../../images/checkbox-green.svg");
|
2017-10-02 20:38:51 +02:00
|
|
|
background-size: contain;
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
2017-05-15 20:42:04 +02:00
|
|
|
|
2019-08-30 03:49:42 +02:00
|
|
|
filter: invert(0.3);
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
|
2023-12-04 21:34:28 +01:00
|
|
|
.for-education-pricing-model .pricing-container .bottom {
|
2017-05-15 20:42:04 +02:00
|
|
|
position: absolute;
|
2020-08-06 02:42:07 +02:00
|
|
|
bottom: 0;
|
2017-05-15 20:42:04 +02:00
|
|
|
width: 100%;
|
|
|
|
height: 150px;
|
|
|
|
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(0deg 0% 93%);
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
|
2023-12-04 21:34:28 +01:00
|
|
|
.for-education-pricing-model .pricing-container .text-content .price::before {
|
2017-05-15 20:42:04 +02:00
|
|
|
content: "$";
|
|
|
|
position: relative;
|
|
|
|
vertical-align: top;
|
2021-07-24 06:18:50 +02:00
|
|
|
top: 7px;
|
2017-05-15 20:42:04 +02:00
|
|
|
left: -3px;
|
|
|
|
|
|
|
|
font-size: 2rem;
|
|
|
|
font-weight: 300;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 53%);
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
|
2023-12-04 21:34:28 +01:00
|
|
|
.for-education-pricing-model .pricing-container .text-content .price {
|
2017-05-15 20:42:04 +02:00
|
|
|
display: inline-block;
|
2017-12-01 08:42:34 +01:00
|
|
|
margin-right: 2px;
|
2017-05-15 20:42:04 +02:00
|
|
|
|
|
|
|
font-size: 3.5em;
|
|
|
|
font-weight: 600;
|
|
|
|
line-height: 0.8;
|
2021-07-24 06:18:50 +02:00
|
|
|
margin-top: 4px;
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
|
2023-12-04 21:34:28 +01:00
|
|
|
.for-education-pricing-model .pricing-container .bottom .details {
|
2017-05-15 20:42:04 +02:00
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
2021-07-24 06:18:50 +02:00
|
|
|
margin-left: 8px;
|
2017-05-15 20:42:04 +02:00
|
|
|
margin-top: 4px;
|
|
|
|
|
|
|
|
font-size: 0.9em;
|
|
|
|
font-weight: 400;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 53%);
|
2017-05-15 20:42:04 +02:00
|
|
|
|
|
|
|
text-align: left;
|
2021-10-08 19:51:24 +02:00
|
|
|
white-space: nowrap;
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
|
2023-12-04 21:34:28 +01:00
|
|
|
.for-education-pricing-model .pricing-container .bottom .button {
|
2021-07-24 06:18:50 +02:00
|
|
|
margin-top: 24px;
|
2019-06-17 06:01:45 +02:00
|
|
|
display: block;
|
|
|
|
text-align: center;
|
2017-05-15 20:42:04 +02:00
|
|
|
|
|
|
|
font-size: 0.9em;
|
|
|
|
|
2017-09-01 01:32:33 +02:00
|
|
|
transition: all 0.3s ease;
|
|
|
|
}
|
2017-05-15 20:42:04 +02:00
|
|
|
|
2023-12-04 21:34:28 +01:00
|
|
|
.for-education-pricing-model .pricing-container .price-box:focus {
|
2017-05-15 20:42:04 +02:00
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
2023-12-04 21:34:28 +01:00
|
|
|
.for-education-pricing-model .pricing-container .price-box:focus .button {
|
2023-03-20 22:08:47 +01:00
|
|
|
box-shadow: 0 0 25px hsl(169deg 48% 60%);
|
2017-05-15 20:42:04 +02:00
|
|
|
animation: box-shadow-pulse 2s infinite;
|
|
|
|
}
|
|
|
|
|
2023-12-04 21:34:28 +01:00
|
|
|
.for-education-pricing-model
|
|
|
|
.pricing-container
|
|
|
|
.text-content
|
|
|
|
.standard-price-box {
|
2018-05-11 03:15:17 +02:00
|
|
|
display: flex;
|
2020-02-24 22:55:05 +01:00
|
|
|
height: 55px;
|
2021-07-24 06:18:50 +02:00
|
|
|
|
|
|
|
.pricing-period {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 27%);
|
2021-07-24 06:18:50 +02:00
|
|
|
}
|
2018-05-11 03:15:17 +02:00
|
|
|
}
|
|
|
|
|
2023-12-04 21:34:28 +01:00
|
|
|
.for-education-pricing-model
|
|
|
|
.pricing-container
|
|
|
|
.text-content
|
|
|
|
.price
|
|
|
|
.price-cents {
|
2020-08-04 23:58:56 +02:00
|
|
|
font-size: 0.4em;
|
2018-05-11 03:15:17 +02:00
|
|
|
vertical-align: top;
|
|
|
|
position: relative;
|
|
|
|
top: 6px;
|
|
|
|
}
|
|
|
|
|
2022-07-15 12:12:27 +02:00
|
|
|
.plans_faq_questions {
|
|
|
|
background: transparent;
|
|
|
|
padding: 20px 0;
|
|
|
|
margin: auto;
|
|
|
|
|
|
|
|
&.plans_top_faq {
|
|
|
|
font-size: 17px;
|
|
|
|
font-weight: 400;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 53%);
|
2022-07-15 12:12:27 +02:00
|
|
|
padding-top: 0;
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& p {
|
2022-07-15 12:12:27 +02:00
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& p:first-child {
|
2022-07-15 12:12:27 +02:00
|
|
|
margin-top: -20px;
|
|
|
|
}
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& p:last-child {
|
2022-07-15 12:12:27 +02:00
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& p {
|
2022-07-15 12:12:27 +02:00
|
|
|
width: 80%;
|
|
|
|
margin: auto;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
@media (width <= 1100px) {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-15 20:42:04 +02:00
|
|
|
.text-content .pricing-details {
|
2021-11-05 03:33:16 +01:00
|
|
|
padding: 15px 0;
|
2018-05-07 22:50:57 +02:00
|
|
|
height: 25px;
|
2017-05-15 20:42:04 +02:00
|
|
|
|
|
|
|
font-weight: 400;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 53%);
|
2017-05-15 20:42:04 +02:00
|
|
|
font-style: italic;
|
|
|
|
text-align: center;
|
2021-07-22 02:42:14 +02:00
|
|
|
|
|
|
|
&.multi-line {
|
2021-11-05 03:33:16 +01:00
|
|
|
padding: 5px 0 25px;
|
2021-07-22 02:42:14 +02:00
|
|
|
}
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
|
2018-11-08 22:43:55 +01:00
|
|
|
.portico-landing.jobs h2 {
|
|
|
|
line-height: 1.4;
|
2021-11-05 03:33:16 +01:00
|
|
|
margin: 20px 0 5px;
|
2018-11-08 22:43:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.jobs h3 {
|
|
|
|
line-height: 1.4;
|
2021-11-05 03:33:16 +01:00
|
|
|
margin: 20px 0 7px;
|
2018-11-08 22:43:55 +01:00
|
|
|
}
|
|
|
|
|
2023-05-12 17:30:31 +02:00
|
|
|
.portico-landing.jobs .how-we-work {
|
2018-11-08 22:43:55 +01:00
|
|
|
padding-top: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.jobs .what-were-building {
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(217deg 22% 93%);
|
2018-11-08 22:43:55 +01:00
|
|
|
}
|
|
|
|
|
2017-05-15 20:42:04 +02:00
|
|
|
@keyframes box-shadow-pulse {
|
|
|
|
0% {
|
2023-03-20 22:08:47 +01:00
|
|
|
box-shadow: 0 0 0 hsl(170deg 47% 60%);
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
2017-11-13 17:26:11 +01:00
|
|
|
|
2017-05-15 20:42:04 +02:00
|
|
|
50% {
|
2023-03-20 22:08:47 +01:00
|
|
|
box-shadow: 0 0 25px hsl(170deg 47% 60% / 80%);
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
2017-11-13 17:26:11 +01:00
|
|
|
|
2017-05-15 20:42:04 +02:00
|
|
|
100% {
|
2023-03-20 22:08:47 +01:00
|
|
|
box-shadow: 0 0 0 hsl(170deg 47% 60%);
|
2017-05-15 20:42:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-28 01:45:25 +01:00
|
|
|
/* -- media queries -- */
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 1426px) {
|
2017-06-06 22:05:17 +02:00
|
|
|
.portico-landing.hello .integrations .integration-icons .hide-1 {
|
|
|
|
display: none;
|
|
|
|
}
|
2017-06-13 01:06:47 +02:00
|
|
|
|
|
|
|
.portico-landing.integrations .integration-categories-sidebar {
|
|
|
|
padding-left: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.integrations .integration-lozenge {
|
|
|
|
width: 135px;
|
|
|
|
}
|
2017-06-06 22:05:17 +02:00
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 1390px) {
|
2020-08-04 23:58:56 +02:00
|
|
|
.portico-landing.plans
|
|
|
|
.pricing-container
|
|
|
|
.block:not(:first-child)
|
|
|
|
.responsive-title {
|
2017-08-30 20:39:38 +02:00
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 1376px) {
|
2023-12-04 21:34:28 +01:00
|
|
|
.portico-landing.plans .for-education-pricing-model .price-box {
|
2017-05-15 20:42:04 +02:00
|
|
|
margin: 20px;
|
|
|
|
}
|
2017-03-09 21:18:14 +01:00
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 1295px) {
|
2017-04-20 20:44:49 +02:00
|
|
|
.portico-landing.hello .apps .right-side {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .left-side {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2017-06-06 22:05:17 +02:00
|
|
|
|
|
|
|
.portico-landing.hello .integrations .content {
|
|
|
|
max-width: 750px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .integrations .integration-icons {
|
|
|
|
max-width: 600px;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 0 auto;
|
2017-06-08 19:53:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .left-side .content {
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 0 auto 50px;
|
2017-06-06 22:05:17 +02:00
|
|
|
}
|
2018-05-09 20:08:44 +02:00
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 1024px) {
|
2018-06-01 19:58:31 +02:00
|
|
|
.portico-landing.hello .gradients .gradient {
|
|
|
|
height: 1400px;
|
|
|
|
}
|
|
|
|
|
2017-06-08 21:25:19 +02:00
|
|
|
.portico-landing {
|
|
|
|
padding-top: 170px;
|
2017-02-28 01:45:25 +01:00
|
|
|
}
|
|
|
|
|
2017-08-30 20:38:54 +02:00
|
|
|
.portico-landing.plans .compare .padded-content {
|
|
|
|
width: auto;
|
|
|
|
}
|
2017-02-28 01:45:25 +01:00
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 985px) {
|
2017-03-09 21:18:14 +01:00
|
|
|
.portico-landing.apps .main {
|
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
|
|
|
.screen .message-feed .message .content {
|
|
|
|
top: -12px;
|
|
|
|
}
|
|
|
|
|
2017-06-06 22:05:17 +02:00
|
|
|
.portico-landing.hello .apps,
|
|
|
|
.portico-landing.hello .integrations {
|
2021-11-05 03:33:16 +01:00
|
|
|
padding: 200px 50px 80px;
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .left-side .content {
|
|
|
|
width: 100%;
|
2017-06-08 21:25:19 +02:00
|
|
|
text-align: center;
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
2017-06-06 22:05:17 +02:00
|
|
|
.portico-landing.hello .integrations {
|
|
|
|
width: 100%;
|
|
|
|
padding: 80px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .integrations .content {
|
|
|
|
padding: 0 50px;
|
|
|
|
}
|
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
.portico-landing.hello .hero {
|
2023-03-17 22:10:10 +01:00
|
|
|
& header {
|
2020-06-20 15:08:06 +02:00
|
|
|
width: calc(100% - 50px);
|
|
|
|
}
|
2018-11-03 16:52:36 +01:00
|
|
|
}
|
2017-03-09 21:18:14 +01:00
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 830px) {
|
2018-05-07 21:14:51 +02:00
|
|
|
.portico-landing.hello .apps .left-side .platform-icons .group {
|
2018-07-25 21:24:36 +02:00
|
|
|
margin: 50px 30px;
|
|
|
|
display: block;
|
2018-05-07 21:14:51 +02:00
|
|
|
}
|
2017-06-13 01:06:47 +02:00
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 768px) {
|
2020-07-18 11:49:17 +02:00
|
|
|
.portico-landing.hello .open-source {
|
|
|
|
.flex {
|
|
|
|
display: block;
|
|
|
|
}
|
2018-05-07 21:26:47 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& img {
|
2020-07-18 11:49:17 +02:00
|
|
|
display: block;
|
|
|
|
width: 300px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
2018-05-07 21:26:47 +02:00
|
|
|
|
2020-07-18 11:49:17 +02:00
|
|
|
.il-block {
|
|
|
|
width: 75%;
|
|
|
|
}
|
2018-05-07 21:26:47 +02:00
|
|
|
}
|
|
|
|
|
2017-02-28 01:45:25 +01:00
|
|
|
.main {
|
2017-08-30 21:17:08 +02:00
|
|
|
width: auto;
|
2017-02-28 01:45:25 +01:00
|
|
|
}
|
|
|
|
|
2017-07-20 22:00:23 +02:00
|
|
|
.portico-landing.why-page .main {
|
|
|
|
width: auto;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 0;
|
2017-07-20 22:00:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.why-page .hero {
|
|
|
|
padding-left: 20px;
|
|
|
|
padding-right: 20px;
|
|
|
|
font-size: 0.6em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.why-page .hero p {
|
|
|
|
font-size: 2em;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2023-12-04 21:34:28 +01:00
|
|
|
.portico-landing.why-page .padded-content,
|
|
|
|
.portico-landing.why-page .for-education-pricing-model .padded-content {
|
2017-07-20 22:00:23 +02:00
|
|
|
padding: 50px 20px;
|
|
|
|
}
|
|
|
|
|
2017-03-09 21:18:14 +01:00
|
|
|
.platform.image {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.platform.description {
|
|
|
|
width: 100% !important;
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
.portico-landing.hello .hero {
|
2023-03-17 22:10:10 +01:00
|
|
|
& header {
|
2020-06-20 15:08:06 +02:00
|
|
|
width: 600px;
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .apps .left-side .content {
|
|
|
|
width: auto;
|
|
|
|
}
|
2017-02-28 01:45:25 +01:00
|
|
|
}
|
|
|
|
|
2021-08-05 00:54:37 +02:00
|
|
|
@media (width <= 1024px) {
|
2017-06-08 21:25:19 +02:00
|
|
|
.portico-landing {
|
|
|
|
padding-top: 120px;
|
|
|
|
}
|
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
.portico-landing.apps .hero {
|
|
|
|
height: 350px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.apps .hero h1 {
|
|
|
|
font-size: 1.9em;
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
2017-09-27 18:15:12 +02:00
|
|
|
.portico-landing.apps .hero .info .flex,
|
|
|
|
.portico-landing.apps .hero .image .flex {
|
2020-03-07 15:05:37 +01:00
|
|
|
height: 200px;
|
2020-08-06 02:42:07 +02:00
|
|
|
min-height: 0;
|
2019-03-31 19:18:14 +02:00
|
|
|
width: 100%;
|
2017-09-27 18:15:12 +02:00
|
|
|
}
|
|
|
|
|
2017-07-08 02:28:18 +02:00
|
|
|
.portico-landing.apps .other-apps {
|
2021-11-05 03:33:16 +01:00
|
|
|
padding: 50px 5px 120px;
|
2017-07-08 02:28:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.apps .other-apps h2 {
|
|
|
|
font-size: 1.5em;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.apps .other-apps .apps .icon {
|
2020-08-06 02:42:07 +02:00
|
|
|
padding: 0 14px;
|
2017-07-08 02:28:18 +02:00
|
|
|
width: 30px;
|
|
|
|
padding-top: 8px;
|
2020-08-06 02:42:07 +02:00
|
|
|
padding-bottom: 0;
|
2017-07-08 02:28:18 +02:00
|
|
|
font-size: 2.3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.apps .other-apps .apps .icon.fa-mobile-phone {
|
2021-11-05 03:33:16 +01:00
|
|
|
padding: 7px 10px 5px;
|
2017-07-08 02:28:18 +02:00
|
|
|
width: 35px;
|
|
|
|
font-size: 2.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.apps .other-apps .apps .icon.fa-windows {
|
|
|
|
font-size: 2em;
|
2021-11-05 03:33:16 +01:00
|
|
|
padding: 10px 13px 2px !important;
|
2017-07-08 02:28:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.apps .other-apps .apps .icon::after {
|
|
|
|
content: "";
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.apps .hero .image {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.apps .hero .info {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2017-02-28 01:45:25 +01:00
|
|
|
.main {
|
|
|
|
width: calc(100% - 50px);
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
2017-04-20 20:44:49 +02:00
|
|
|
.portico-landing.hello .hero {
|
|
|
|
padding-bottom: 100px;
|
|
|
|
|
2020-06-20 15:08:06 +02:00
|
|
|
.waves {
|
|
|
|
height: 450px;
|
|
|
|
}
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& header {
|
2020-06-20 15:08:06 +02:00
|
|
|
width: auto;
|
|
|
|
}
|
2017-04-20 20:44:49 +02:00
|
|
|
}
|
|
|
|
|
2020-05-26 22:13:35 +02:00
|
|
|
.portico-header .content > ul::before {
|
|
|
|
content: "Zulip";
|
|
|
|
display: block;
|
2021-06-23 23:00:05 +02:00
|
|
|
margin-top: 25px;
|
2020-05-26 22:13:35 +02:00
|
|
|
padding-top: 5px;
|
|
|
|
margin-left: 10px;
|
|
|
|
|
|
|
|
width: 100px;
|
|
|
|
height: 40px;
|
|
|
|
|
|
|
|
font-size: 1.5rem;
|
|
|
|
line-height: 30px;
|
|
|
|
text-align: right;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 27%);
|
2020-05-26 22:13:35 +02:00
|
|
|
|
|
|
|
background-size: 40px auto;
|
2021-11-05 03:28:57 +01:00
|
|
|
background-image: url("../../images/zulip-logo.svg");
|
2020-05-26 22:13:35 +02:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-header .dropdown ul {
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
2021-11-05 03:33:16 +01:00
|
|
|
margin: 42px 0 0;
|
2020-05-26 22:13:35 +02:00
|
|
|
font-size: 0.8em;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
2017-02-28 01:45:25 +01:00
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 640px) {
|
2017-06-06 22:05:17 +02:00
|
|
|
.portico-landing.hello .integrations .integration-icons .group {
|
2021-11-05 03:33:16 +01:00
|
|
|
margin: 10px 16px 0;
|
2017-06-06 22:05:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 550px) {
|
2018-07-25 21:24:36 +02:00
|
|
|
.billing-upgrade-page {
|
2018-07-03 16:42:53 +02:00
|
|
|
.payment-schedule {
|
|
|
|
.box {
|
|
|
|
width: 100px;
|
|
|
|
height: 80px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-06-13 01:06:47 +02:00
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 450px) {
|
2023-12-04 21:34:28 +01:00
|
|
|
.portico-landing.plans .for-education-pricing-model .price-box {
|
2018-04-03 04:46:17 +02:00
|
|
|
display: inline-flex;
|
|
|
|
flex-direction: column;
|
|
|
|
min-height: 500px;
|
|
|
|
height: auto;
|
|
|
|
max-width: 300px;
|
|
|
|
width: auto;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 10px 0;
|
2018-04-03 04:46:17 +02:00
|
|
|
}
|
|
|
|
|
2023-12-04 21:34:28 +01:00
|
|
|
.for-education-pricing-model .pricing-container .text-content {
|
2018-04-03 04:46:17 +02:00
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
2023-12-04 21:34:28 +01:00
|
|
|
.for-education-pricing-model .pricing-container .bottom {
|
2018-04-03 04:46:17 +02:00
|
|
|
position: static;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
2018-06-01 19:58:31 +02:00
|
|
|
.portico-landing.hello .hero {
|
2021-11-05 03:33:16 +01:00
|
|
|
padding: 60px 5px 40px;
|
2018-06-01 19:58:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello header {
|
2021-11-05 03:33:16 +01:00
|
|
|
padding: 0 45px;
|
2018-06-01 19:58:31 +02:00
|
|
|
}
|
|
|
|
|
2018-12-04 19:54:41 +01:00
|
|
|
.portico-landing.hello .integrations .content header {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2017-06-06 22:05:17 +02:00
|
|
|
.portico-landing.hello .integrations .integration-icons .group {
|
2018-05-07 22:03:51 +02:00
|
|
|
margin: 4px 2px;
|
2017-06-06 22:05:17 +02:00
|
|
|
}
|
|
|
|
|
2019-06-10 14:39:32 +02:00
|
|
|
.main {
|
2017-02-28 01:45:55 +01:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2017-08-30 20:38:54 +02:00
|
|
|
.portico-landing.plans .compare .padded-content {
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.plans .pricing-container .block {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2017-02-28 01:45:55 +01:00
|
|
|
.main .padded-content {
|
2017-02-28 01:45:25 +01:00
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
|
2017-09-02 03:10:56 +02:00
|
|
|
/* the gradients leave the bottom of the text and the button white so we
|
|
|
|
want to have the gradients stay darker for longer.
|
|
|
|
*/
|
|
|
|
.gradients .gradient.green {
|
2020-08-04 23:58:56 +02:00
|
|
|
background: linear-gradient(
|
|
|
|
-25deg,
|
2023-03-20 22:08:47 +01:00
|
|
|
hsl(156deg 47% 47% / 0%) 10%,
|
|
|
|
hsl(156deg 47% 47%) 80%
|
2020-08-04 23:58:56 +02:00
|
|
|
);
|
2017-09-02 03:10:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.gradients .gradient.blue {
|
2020-08-04 23:58:56 +02:00
|
|
|
background: linear-gradient(
|
|
|
|
25deg,
|
2023-03-20 22:08:47 +01:00
|
|
|
hsl(196deg 38% 51% / 0%) 10%,
|
|
|
|
hsl(196deg 38% 51%) 80%
|
2020-08-04 23:58:56 +02:00
|
|
|
);
|
2017-09-02 03:10:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.gradients .gradient.sunburst {
|
2020-08-04 23:58:56 +02:00
|
|
|
background: linear-gradient(
|
|
|
|
5deg,
|
2023-03-20 22:08:47 +01:00
|
|
|
hsl(49deg 71% 68% / 0%) 20%,
|
|
|
|
hsl(49deg 71% 68%) 80%
|
2020-08-04 23:58:56 +02:00
|
|
|
);
|
2017-09-02 03:10:56 +02:00
|
|
|
}
|
2017-02-28 01:45:25 +01:00
|
|
|
}
|
2017-06-06 22:05:17 +02:00
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 375px) {
|
2017-06-06 22:05:17 +02:00
|
|
|
.portico-landing.hello .integrations .integration-icons .group {
|
|
|
|
width: 130px;
|
|
|
|
height: 215px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.hello .integrations .integration-icons .integration-logo {
|
|
|
|
width: 60px;
|
|
|
|
}
|
2017-06-13 01:06:47 +02:00
|
|
|
|
2018-06-28 16:46:11 +02:00
|
|
|
.portico-landing.integrations .integration-categories-dropdown {
|
|
|
|
width: 323px;
|
|
|
|
}
|
2017-06-13 01:06:47 +02:00
|
|
|
}
|
|
|
|
|
2023-05-31 01:08:23 +02:00
|
|
|
#download-from-microsoft-store,
|
2021-05-06 00:39:52 +02:00
|
|
|
#download-android-apk,
|
|
|
|
#download-mac-arm64 {
|
2024-02-20 07:45:01 +01:00
|
|
|
display: block;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 100%);
|
2019-03-03 16:59:03 +01:00
|
|
|
font-size: 13px;
|
|
|
|
padding-left: 10px;
|
2024-02-20 07:45:01 +01:00
|
|
|
|
|
|
|
& a {
|
|
|
|
color: hsl(0deg 0% 100%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#download-from-microsoft-store,
|
|
|
|
#download-mac-arm64 {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.download-instructions {
|
|
|
|
margin-top: 30px;
|
2019-03-03 16:59:03 +01:00
|
|
|
}
|
2021-07-20 20:33:48 +02:00
|
|
|
|
|
|
|
.feature-container {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 50px 4vw 10px;
|
|
|
|
|
|
|
|
.feature-half {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.md-hide {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.md-display {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (width <= 768px) {
|
|
|
|
.feature-text {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (width >= 768px) {
|
|
|
|
display: grid;
|
|
|
|
grid-column-gap: 5%;
|
|
|
|
grid-template-columns: 43% auto;
|
|
|
|
max-width: 1300px;
|
2023-11-09 00:35:32 +01:00
|
|
|
place-items: center;
|
2021-07-20 20:33:48 +02:00
|
|
|
margin: auto;
|
|
|
|
|
|
|
|
.alternate-grid& {
|
|
|
|
grid-template-columns: auto 43%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.feature-half {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.md-display {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.feature-text {
|
2023-03-17 22:10:10 +01:00
|
|
|
& h1 {
|
2021-07-20 20:33:48 +02:00
|
|
|
font-size: 30px;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& ul {
|
2021-07-20 20:33:48 +02:00
|
|
|
list-style: none;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& ul li {
|
2021-07-20 20:33:48 +02:00
|
|
|
margin-bottom: 15px;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
float: left;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
content: "";
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
margin-right: 5px;
|
2021-10-06 00:58:21 +02:00
|
|
|
margin-top: 4px;
|
2021-07-20 20:33:48 +02:00
|
|
|
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16px" height="16px" viewBox="0 0 24 24"><path d="M12 0c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm-1.25 17.292l-4.5-4.364 1.857-1.858 2.643 2.506 5.643-5.784 1.857 1.857-7.5 7.643z"/></svg>');
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-content {
|
|
|
|
margin-left: 22px;
|
2021-10-06 00:58:21 +02:00
|
|
|
line-height: 1.6;
|
2021-10-09 11:14:04 +02:00
|
|
|
font-size: 18px;
|
2021-07-20 20:33:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.feature-image {
|
2023-03-17 22:10:10 +01:00
|
|
|
& img,
|
2021-07-20 20:33:48 +02:00
|
|
|
div.quote {
|
|
|
|
width: 400px;
|
|
|
|
}
|
2021-11-06 04:31:08 +01:00
|
|
|
|
|
|
|
@media (width < 1024px) {
|
2023-03-17 22:10:10 +01:00
|
|
|
& div.quote {
|
2021-11-06 04:31:08 +01:00
|
|
|
width: 300px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (width < 768px) {
|
2023-03-17 22:10:10 +01:00
|
|
|
& div.quote {
|
2021-11-06 04:31:08 +01:00
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
}
|
2021-07-20 20:33:48 +02:00
|
|
|
}
|
|
|
|
|
2021-10-16 01:12:43 +02:00
|
|
|
.feature-icon {
|
2023-03-17 22:10:10 +01:00
|
|
|
& img,
|
2021-10-16 01:12:43 +02:00
|
|
|
div.quote {
|
|
|
|
width: 100px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-22 00:46:29 +02:00
|
|
|
.topics-image {
|
2023-03-20 22:08:47 +01:00
|
|
|
border: solid 2px hsl(0deg 0% 60%);
|
2021-07-22 00:46:29 +02:00
|
|
|
}
|
2021-07-20 20:33:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.discounts-section {
|
|
|
|
text-align: center;
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& header {
|
|
|
|
& b {
|
2021-07-20 20:33:48 +02:00
|
|
|
font-weight: 600;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(169deg 45% 43%);
|
2021-07-20 20:33:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.register-buttons {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row wrap;
|
|
|
|
justify-content: center;
|
|
|
|
margin: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Common button styles */
|
2021-07-20 20:51:09 +02:00
|
|
|
.register-now,
|
|
|
|
.register-now:visited {
|
2021-07-22 14:22:08 +02:00
|
|
|
text-align: center;
|
2021-07-20 20:51:09 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
2021-07-20 20:33:48 +02:00
|
|
|
font-size: 15px;
|
|
|
|
margin: 10px 20px;
|
|
|
|
float: left;
|
|
|
|
width: 200px;
|
|
|
|
border: 2px solid;
|
|
|
|
border-radius: 4px;
|
|
|
|
background: none;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(169deg 45% 43%);
|
2021-07-20 20:33:48 +02:00
|
|
|
vertical-align: middle;
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
|
|
|
backface-visibility: hidden;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
letter-spacing: 2px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
overflow: hidden;
|
2023-07-21 23:08:07 +02:00
|
|
|
transition:
|
|
|
|
border-color 0.3s,
|
|
|
|
background-color 0.3s;
|
2021-07-20 20:33:48 +02:00
|
|
|
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
|
2023-03-27 08:32:34 +02:00
|
|
|
font-weight: 700;
|
2021-07-20 20:33:48 +02:00
|
|
|
padding: 15px 5px;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& p {
|
2021-07-20 20:33:48 +02:00
|
|
|
font-weight: 600;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
2023-03-20 22:08:47 +01:00
|
|
|
border-color: hsl(169deg 45% 43%);
|
|
|
|
background-color: hsl(170deg 47% 53%);
|
|
|
|
color: hsl(0deg 0% 100%);
|
2021-07-20 20:33:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.quote {
|
2023-03-20 22:08:47 +01:00
|
|
|
background: hsl(218deg 46% 43%);
|
2021-07-20 20:33:48 +02:00
|
|
|
padding: 1em;
|
|
|
|
border-radius: 1em;
|
|
|
|
font-weight: 400;
|
|
|
|
margin: 40px 5px;
|
2022-02-05 10:36:39 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-07-20 20:33:48 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& a {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 100%);
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2021-07-20 20:33:48 +02:00
|
|
|
&.case-study-link {
|
|
|
|
margin-left: 20px;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.author,
|
|
|
|
blockquote {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 100%);
|
2021-07-20 20:33:48 +02:00
|
|
|
margin: 5px 20px 20px;
|
|
|
|
}
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& blockquote {
|
2021-07-20 20:33:48 +02:00
|
|
|
font-size: 18px;
|
2023-07-04 17:50:48 +02:00
|
|
|
padding: 0 0 0 15px;
|
|
|
|
border-left: 5px solid hsl(0deg 0% 93%);
|
2021-07-20 20:33:48 +02:00
|
|
|
}
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& blockquote::before {
|
2021-07-20 20:33:48 +02:00
|
|
|
font-size: 20px;
|
2023-03-27 08:32:34 +02:00
|
|
|
font-weight: 700;
|
2023-07-04 17:50:48 +02:00
|
|
|
content: "";
|
2021-07-20 20:33:48 +02:00
|
|
|
}
|
2022-11-21 02:56:15 +01:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& cite {
|
2022-11-21 02:56:15 +01:00
|
|
|
font-style: normal;
|
|
|
|
}
|
2021-07-20 20:33:48 +02:00
|
|
|
}
|
|
|
|
|
2021-08-03 08:06:46 +02:00
|
|
|
.intro_quote {
|
2023-03-17 22:10:10 +01:00
|
|
|
& blockquote {
|
2021-08-03 08:06:46 +02:00
|
|
|
font-size: 17px;
|
|
|
|
font-weight: 400;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(223deg 6% 25%);
|
|
|
|
border-left: 6px solid hsl(218deg 46% 43%);
|
2021-08-03 08:06:46 +02:00
|
|
|
position: relative;
|
2023-03-20 22:08:47 +01:00
|
|
|
background: hsl(0deg 0% 93%);
|
2021-08-03 08:06:46 +02:00
|
|
|
padding: 20px;
|
2023-07-04 17:50:48 +02:00
|
|
|
margin: 0 0 20px;
|
2021-08-03 08:06:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.author {
|
|
|
|
padding-top: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-30 21:36:30 +01:00
|
|
|
.quote-in-feature-text blockquote {
|
|
|
|
background: transparent;
|
|
|
|
padding: 10px 20px;
|
|
|
|
margin: 20px 0;
|
|
|
|
font-style: italic;
|
|
|
|
border-left: 6px solid hsl(168.1deg 49.15% 46.27%);
|
|
|
|
}
|
|
|
|
|
2022-02-05 10:37:49 +01:00
|
|
|
.case-study-page,
|
2021-07-20 20:33:48 +02:00
|
|
|
.solutions-page {
|
2023-03-08 19:14:05 +01:00
|
|
|
.bottom-register-buttons.extra_margin_before_footer {
|
|
|
|
margin-bottom: 60px;
|
|
|
|
}
|
|
|
|
|
2021-07-20 20:33:48 +02:00
|
|
|
.hero-text {
|
|
|
|
position: relative;
|
|
|
|
width: 80%;
|
|
|
|
max-width: 700px;
|
|
|
|
margin: 40px auto;
|
|
|
|
font-size: 20px;
|
|
|
|
text-align: center;
|
2023-03-27 12:45:28 +02:00
|
|
|
font-weight: 400;
|
2021-07-20 20:33:48 +02:00
|
|
|
opacity: 0.9;
|
2021-07-23 06:13:28 +02:00
|
|
|
}
|
2021-07-20 20:33:48 +02:00
|
|
|
|
2021-07-23 06:13:28 +02:00
|
|
|
.hero {
|
2023-03-17 22:10:10 +01:00
|
|
|
& a {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(170deg 76% 64%);
|
2021-07-20 20:33:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.hero-buttons {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row wrap;
|
|
|
|
justify-content: center;
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& a {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(170deg 47% 33%);
|
2021-07-20 20:33:48 +02:00
|
|
|
font-weight: 600;
|
|
|
|
font-size: 15px;
|
|
|
|
margin: 10px;
|
|
|
|
|
|
|
|
&:hover {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 100%);
|
|
|
|
background-color: hsl(170deg 47% 33%);
|
|
|
|
border-color: hsl(170deg 47% 33%);
|
2021-07-20 20:33:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.feature-end {
|
|
|
|
@media (width >= 768px) {
|
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& h1 {
|
2021-07-20 20:33:48 +02:00
|
|
|
margin-top: 20px;
|
|
|
|
text-align: center;
|
|
|
|
font-weight: 600;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& ul {
|
2021-07-20 20:33:48 +02:00
|
|
|
margin: auto;
|
|
|
|
max-width: 800px;
|
|
|
|
padding: 30px;
|
|
|
|
}
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& p {
|
2021-07-20 20:33:48 +02:00
|
|
|
margin: auto;
|
|
|
|
max-width: 800px;
|
|
|
|
padding: 30px;
|
|
|
|
}
|
2021-07-21 12:20:15 +02:00
|
|
|
}
|
2021-07-20 20:33:48 +02:00
|
|
|
|
2021-07-21 12:20:15 +02:00
|
|
|
.price-asterisk {
|
|
|
|
text-align: center;
|
|
|
|
margin-top: 0 !important;
|
|
|
|
padding-top: 0 !important;
|
|
|
|
font-size: 15px;
|
|
|
|
opacity: 0.8;
|
2021-07-22 02:42:14 +02:00
|
|
|
max-width: 560px !important;
|
2021-07-20 20:33:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottom-register-buttons {
|
|
|
|
max-width: 800px;
|
|
|
|
margin: auto;
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& h1 {
|
2021-07-20 20:33:48 +02:00
|
|
|
text-align: center;
|
|
|
|
font-weight: 600;
|
|
|
|
margin-bottom: 0;
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hero-buttons {
|
|
|
|
margin: 20px;
|
|
|
|
}
|
|
|
|
}
|
2021-07-21 12:20:15 +02:00
|
|
|
|
2023-12-04 21:34:28 +01:00
|
|
|
.solutions-page .for-education-pricing-model {
|
2021-07-21 12:20:15 +02:00
|
|
|
.padded-content {
|
|
|
|
padding-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pricing-container {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row wrap;
|
|
|
|
justify-content: center;
|
2021-10-16 01:12:43 +02:00
|
|
|
}
|
2021-07-21 12:20:15 +02:00
|
|
|
|
2021-10-16 01:12:43 +02:00
|
|
|
.price-box {
|
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
}
|
2021-07-21 12:20:15 +02:00
|
|
|
|
2023-12-04 21:34:28 +01:00
|
|
|
.for-education-pricing-model {
|
2021-10-16 01:12:43 +02:00
|
|
|
.pricing-details {
|
|
|
|
color: inherit;
|
|
|
|
font-style: inherit;
|
|
|
|
}
|
2021-07-21 12:20:15 +02:00
|
|
|
|
2021-10-16 01:12:43 +02:00
|
|
|
.price-box {
|
2023-12-04 21:34:28 +01:00
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: bottom;
|
|
|
|
margin: 0;
|
|
|
|
width: 300px;
|
2021-10-16 01:12:43 +02:00
|
|
|
height: 625px;
|
2021-07-21 12:20:15 +02:00
|
|
|
|
2023-12-04 21:34:28 +01:00
|
|
|
box-shadow: 0 0 10px hsl(0deg 0% 0% / 10%);
|
|
|
|
|
|
|
|
text-align: left;
|
|
|
|
background-color: hsl(0deg 0% 100%);
|
|
|
|
|
|
|
|
transition-property: all;
|
|
|
|
transition-duration: 0.3s;
|
|
|
|
transition-timing-function: ease;
|
|
|
|
|
2021-10-16 01:12:43 +02:00
|
|
|
.bottom {
|
|
|
|
height: 275px;
|
2021-07-21 12:20:15 +02:00
|
|
|
|
2021-10-16 01:12:43 +02:00
|
|
|
.standard-register-button {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
2021-07-21 12:20:15 +02:00
|
|
|
|
2021-10-16 01:12:43 +02:00
|
|
|
.free-text {
|
|
|
|
margin-top: 90px;
|
2021-07-21 12:20:15 +02:00
|
|
|
|
2021-10-16 01:12:43 +02:00
|
|
|
.pricing-details {
|
|
|
|
font-size: 34px;
|
|
|
|
}
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& a {
|
2021-10-16 01:12:43 +02:00
|
|
|
margin-top: 76px;
|
2021-07-21 12:20:15 +02:00
|
|
|
}
|
2021-10-16 01:12:43 +02:00
|
|
|
}
|
2021-07-21 12:20:15 +02:00
|
|
|
|
2021-10-16 01:12:43 +02:00
|
|
|
.standard-price-box {
|
|
|
|
flex-flow: row wrap;
|
|
|
|
height: 90px;
|
|
|
|
font-size: 15px;
|
2021-07-21 12:20:15 +02:00
|
|
|
|
2021-10-16 01:12:43 +02:00
|
|
|
&:first-child {
|
|
|
|
padding-bottom: 10px;
|
|
|
|
}
|
2021-07-21 12:20:15 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& p {
|
2021-10-16 01:12:43 +02:00
|
|
|
padding: 0;
|
|
|
|
margin: 0 0 -10px;
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
2023-03-27 08:43:07 +02:00
|
|
|
font-weight: 600;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(169deg 46% 33%);
|
2021-07-21 12:20:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-07-22 14:22:08 +02:00
|
|
|
|
|
|
|
.portico-landing.why-page.case-study-page {
|
|
|
|
.bg-dimmer {
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(224deg 52% 12% / 86%);
|
2021-07-22 14:22:08 +02:00
|
|
|
}
|
|
|
|
}
|
2021-07-23 06:13:28 +02:00
|
|
|
|
|
|
|
.feature-intro {
|
|
|
|
max-width: 800px;
|
|
|
|
margin: 50px auto 0;
|
2021-11-05 03:33:16 +01:00
|
|
|
padding: 0 4vw;
|
2021-07-23 06:13:28 +02:00
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& h1 {
|
2021-07-23 06:13:28 +02:00
|
|
|
font-size: 36px;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
}
|
2021-08-03 08:06:46 +02:00
|
|
|
|
|
|
|
.for-companies {
|
|
|
|
.feature-end {
|
|
|
|
margin-top: 50px;
|
|
|
|
|
2021-08-04 14:38:39 +02:00
|
|
|
.description {
|
2021-11-05 03:33:16 +01:00
|
|
|
margin: 0 10px;
|
2021-08-04 14:38:39 +02:00
|
|
|
}
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& p {
|
2021-08-03 08:06:46 +02:00
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.intro_quote {
|
|
|
|
margin: 20px auto 0;
|
|
|
|
max-width: 800px;
|
|
|
|
}
|
|
|
|
|
2023-12-04 21:34:28 +01:00
|
|
|
.for-education-pricing-model {
|
2021-08-04 14:39:39 +02:00
|
|
|
@media (width >= 768px) {
|
|
|
|
.price-box {
|
|
|
|
margin: 10px;
|
|
|
|
}
|
2021-08-03 08:06:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.padded-content {
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.plan-title {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 0%);
|
2021-08-03 08:06:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-08-04 14:49:37 +02:00
|
|
|
|
|
|
|
.mirror-image {
|
|
|
|
transform: scaleX(-1);
|
|
|
|
}
|
2021-07-28 19:48:46 +02:00
|
|
|
|
|
|
|
.why-zulip {
|
|
|
|
.discounts-section {
|
|
|
|
margin: 30px;
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& h1 {
|
2021-07-28 19:48:46 +02:00
|
|
|
font-weight: 700 !important;
|
|
|
|
font-size: 26px !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.portico-landing.why-page .hero.why-zulip {
|
|
|
|
padding-bottom: 120px;
|
|
|
|
|
|
|
|
.bg-dimmer {
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(224deg 52% 12% / 85%);
|
2021-07-28 19:48:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.padded-content {
|
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (width <= 768px) {
|
|
|
|
.register-buttons {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.discounts-section .register-buttons a {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(169deg 71% 64%);
|
2021-07-28 19:48:46 +02:00
|
|
|
|
|
|
|
&:hover {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 100%);
|
2021-07-28 19:48:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.why-zulip,
|
|
|
|
.hello {
|
|
|
|
.register-buttons {
|
|
|
|
max-width: 800px;
|
|
|
|
margin: auto;
|
|
|
|
margin-top: 30px;
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& a {
|
2021-07-28 19:48:46 +02:00
|
|
|
min-height: 40px;
|
|
|
|
padding: 7px 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (width <= 768px) {
|
|
|
|
.register-buttons {
|
2023-03-17 22:10:10 +01:00
|
|
|
& a {
|
2021-07-28 19:48:46 +02:00
|
|
|
margin: 10px calc(5vw - 10px);
|
|
|
|
width: clamp(130px, 40vw, 200px);
|
|
|
|
font-size: 13px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-10-16 01:12:43 +02:00
|
|
|
|
|
|
|
.self-hosting-page {
|
2023-03-17 22:10:10 +01:00
|
|
|
& p {
|
2021-10-16 01:12:43 +02:00
|
|
|
font-size: 18px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hero-buttons {
|
|
|
|
margin-top: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.alternative-features {
|
|
|
|
.feature-container {
|
|
|
|
padding: 30px;
|
|
|
|
|
|
|
|
&:nth-child(even) {
|
2023-03-20 22:08:47 +01:00
|
|
|
background: hsl(171deg 49% 39% / 21%);
|
2021-10-16 01:12:43 +02:00
|
|
|
border-radius: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.feature-icon img {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.triangle {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 150px 100vw 0 0;
|
2023-03-20 22:08:47 +01:00
|
|
|
border-color: hsl(0deg 0% 100%) transparent transparent transparent;
|
2021-10-16 01:12:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.quote {
|
|
|
|
position: relative;
|
|
|
|
margin: 0;
|
|
|
|
margin-top: 50px;
|
|
|
|
padding: 50px;
|
|
|
|
padding-top: 200px;
|
|
|
|
border-radius: 0;
|
|
|
|
background: linear-gradient(
|
|
|
|
145deg,
|
2023-03-20 22:08:47 +01:00
|
|
|
hsl(191deg 56% 55%),
|
|
|
|
hsl(169deg 65% 42%)
|
2021-10-16 01:12:43 +02:00
|
|
|
);
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& blockquote {
|
2021-10-16 01:12:43 +02:00
|
|
|
max-width: 700px;
|
|
|
|
margin: auto;
|
|
|
|
font-size: 24px;
|
|
|
|
|
|
|
|
.author {
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.feature-grid {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
2023-03-20 22:08:47 +01:00
|
|
|
background: hsl(171deg 49% 39% / 21%);
|
2021-10-16 01:12:43 +02:00
|
|
|
padding: 50px 0;
|
|
|
|
|
|
|
|
.feature-row {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
max-width: 1000px;
|
|
|
|
margin: auto;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
gap: 20px;
|
|
|
|
|
|
|
|
.feature-box {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: flex-start;
|
|
|
|
flex-direction: column;
|
|
|
|
width: 40vw;
|
|
|
|
height: 350px;
|
2023-07-21 23:08:07 +02:00
|
|
|
box-shadow:
|
|
|
|
0 1px 1px 0 hsl(193deg 100% 7.1% / 30%),
|
2023-03-20 22:08:47 +01:00
|
|
|
1px 1px 1px 0 hsl(193deg 100% 7.1% / 15%),
|
|
|
|
-1px 1px 1px 0 hsl(193deg 100% 7.1% / 15%);
|
2021-10-16 01:12:43 +02:00
|
|
|
|
2023-03-20 22:08:47 +01:00
|
|
|
background: hsl(0deg 0% 100%);
|
2021-10-16 01:12:43 +02:00
|
|
|
text-align: left;
|
|
|
|
margin: 10px 0;
|
|
|
|
padding: 50px 30px 0;
|
2023-03-20 22:08:47 +01:00
|
|
|
border-top: 5px solid hsl(171deg 49% 39%);
|
2021-10-16 01:12:43 +02:00
|
|
|
|
|
|
|
@media (width < 1000px) {
|
|
|
|
height: 400px;
|
|
|
|
}
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& h1 {
|
2023-03-27 08:43:07 +02:00
|
|
|
font-weight: 600;
|
2021-10-16 01:12:43 +02:00
|
|
|
font-size: clamp(24px, 2.5vw, 32px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.feature-icon {
|
|
|
|
align-self: center;
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& img {
|
2021-10-16 01:12:43 +02:00
|
|
|
max-width: 100px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (width < 768px) {
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
.feature-box {
|
|
|
|
width: 75vw !important;
|
|
|
|
height: calc(600px - 35vw);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-04 21:34:28 +01:00
|
|
|
.for-education-pricing-model .pricing-container .price-box {
|
2021-10-16 01:12:43 +02:00
|
|
|
height: 525px;
|
|
|
|
|
|
|
|
.bottom {
|
|
|
|
height: 150px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.feature-end {
|
|
|
|
margin: 0;
|
|
|
|
|
|
|
|
.feature-pricing {
|
|
|
|
padding: 50px;
|
|
|
|
background: linear-gradient(
|
|
|
|
180deg,
|
2023-03-20 22:08:47 +01:00
|
|
|
hsl(191deg 56% 55%),
|
|
|
|
hsl(169deg 65% 42%)
|
2021-10-16 01:12:43 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
@media (width <= 540px) {
|
|
|
|
padding: 50px 0;
|
|
|
|
|
|
|
|
.price-box {
|
|
|
|
padding-bottom: 50px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-17 22:10:10 +01:00
|
|
|
& h1 {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 100%);
|
2021-10-16 01:12:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-03-07 00:09:24 +01:00
|
|
|
|
|
|
|
.try-zulip-now-page {
|
|
|
|
.bottom-register-buttons {
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.try-now-button {
|
|
|
|
padding: 11px 25px;
|
|
|
|
font-size: 1.2rem;
|
|
|
|
font-weight: 400;
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 100%);
|
2023-03-07 00:09:24 +01:00
|
|
|
background: linear-gradient(
|
|
|
|
145deg,
|
2023-03-20 22:08:47 +01:00
|
|
|
hsl(191deg 56% 55%),
|
|
|
|
hsl(169deg 65% 42%)
|
2023-03-07 00:09:24 +01:00
|
|
|
);
|
2023-03-20 22:08:47 +01:00
|
|
|
box-shadow: 0 3px 10px hsl(0deg 0% 0% / 20%);
|
2023-03-07 00:09:24 +01:00
|
|
|
border: 0;
|
|
|
|
width: 200px;
|
|
|
|
height: 50px;
|
|
|
|
outline: none;
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
|
|
&:visited {
|
2023-03-20 22:08:47 +01:00
|
|
|
color: hsl(0deg 0% 100%);
|
2023-03-07 00:09:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
2023-03-20 22:08:47 +01:00
|
|
|
background-color: hsl(169deg 65% 42%);
|
|
|
|
box-shadow: 0 3px 10px hsl(0deg 0% 0% / 30%);
|
2023-03-07 00:09:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-02-20 07:45:01 +01:00
|
|
|
|
|
|
|
.apps .apps-page-link {
|
|
|
|
text-decoration: underline;
|
|
|
|
color: hsl(0deg 0% 100%);
|
|
|
|
}
|