2019-08-15 23:00:56 +02:00
|
|
|
$light-blue-border: hsl(208, 46%, 93%);
|
|
|
|
$border-green: hsl(170, 47%, 53%);
|
|
|
|
$hover-green: hsl(170, 65%, 85%);
|
|
|
|
$text-green: hsl(170, 72%, 32%);
|
|
|
|
$category-text: hsl(219, 23%, 33%);
|
|
|
|
|
2019-06-10 14:39:32 +02:00
|
|
|
.portico-landing.integrations {
|
|
|
|
color: hsl(0, 0%, 27%);
|
|
|
|
font-weight: normal;
|
|
|
|
|
2019-08-15 22:18:41 +02:00
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3 {
|
|
|
|
&:hover::after {
|
|
|
|
content: none;
|
|
|
|
}
|
2019-06-10 14:39:32 +02:00
|
|
|
}
|
|
|
|
|
2019-08-15 22:18:41 +02:00
|
|
|
.markdown {
|
|
|
|
font-size: 1.1rem;
|
2019-06-10 14:39:32 +02:00
|
|
|
}
|
|
|
|
|
2019-08-15 22:18:41 +02:00
|
|
|
.main {
|
|
|
|
width: calc(100% - 100px);
|
|
|
|
max-width: 1170px;
|
|
|
|
margin: 0 auto;
|
2019-06-10 14:39:32 +02:00
|
|
|
|
2019-08-15 22:18:41 +02:00
|
|
|
background-color: hsl(0, 0%, 100%);
|
2020-08-06 02:42:07 +02:00
|
|
|
box-shadow: 0 0 80px hsla(0, 0%, 0%, 0.12);
|
2019-06-10 14:39:32 +02:00
|
|
|
|
2019-08-15 22:18:41 +02:00
|
|
|
visibility: hidden;
|
2019-06-10 14:39:32 +02:00
|
|
|
|
2019-08-15 22:18:41 +02:00
|
|
|
img {
|
|
|
|
box-shadow: none;
|
|
|
|
border: none;
|
|
|
|
}
|
2019-06-10 14:39:32 +02:00
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 768px) {
|
2019-08-15 22:18:41 +02:00
|
|
|
width: auto;
|
|
|
|
}
|
2019-06-10 14:39:32 +02:00
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 686px) {
|
2019-08-15 22:18:41 +02:00
|
|
|
width: calc(100% - 50px);
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
2019-06-10 14:39:32 +02:00
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 450px) {
|
2019-08-15 22:18:41 +02:00
|
|
|
width: 100%;
|
|
|
|
}
|
2019-06-10 14:39:32 +02:00
|
|
|
}
|
|
|
|
|
2019-08-15 22:18:41 +02:00
|
|
|
.padded-content {
|
|
|
|
padding: 50px 0;
|
2019-06-10 14:39:32 +02:00
|
|
|
|
2019-08-15 22:18:41 +02:00
|
|
|
.inner-content {
|
|
|
|
min-height: 870px;
|
2019-06-10 14:39:32 +02:00
|
|
|
|
2019-08-15 22:18:41 +02:00
|
|
|
.show {
|
|
|
|
opacity: 1;
|
|
|
|
pointer-events: all;
|
|
|
|
}
|
2019-06-10 14:39:32 +02:00
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 500px) {
|
2019-08-15 22:18:41 +02:00
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
}
|
2019-06-10 14:39:32 +02:00
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 450px) {
|
2019-08-15 22:18:41 +02:00
|
|
|
padding: 40px 0;
|
|
|
|
}
|
2019-06-10 14:39:32 +02:00
|
|
|
}
|
|
|
|
|
2019-08-15 22:18:41 +02:00
|
|
|
ol li {
|
|
|
|
list-style: none;
|
2019-06-10 14:39:32 +02:00
|
|
|
}
|
|
|
|
|
2019-08-15 22:18:41 +02:00
|
|
|
ul li {
|
|
|
|
list-style: circle;
|
2019-06-10 14:39:32 +02:00
|
|
|
}
|
|
|
|
|
2019-08-15 22:18:41 +02:00
|
|
|
code {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
max-width: 100%;
|
|
|
|
overflow: auto;
|
2019-06-10 14:39:32 +02:00
|
|
|
|
2021-04-03 04:01:40 +02:00
|
|
|
font-family: "Source Code Pro", monospace;
|
2019-08-15 22:18:41 +02:00
|
|
|
font-size: 0.85em;
|
2019-06-10 14:39:32 +02:00
|
|
|
}
|
|
|
|
|
2019-08-15 22:18:41 +02:00
|
|
|
#integration-main-text {
|
|
|
|
padding: 0 15px;
|
2019-06-10 14:39:32 +02:00
|
|
|
}
|
|
|
|
|
2019-08-15 22:18:41 +02:00
|
|
|
.portico-page-heading {
|
|
|
|
font-size: 2.5em;
|
|
|
|
font-weight: 300;
|
|
|
|
line-height: 1.2;
|
|
|
|
text-align: center;
|
|
|
|
border-bottom: none;
|
2019-06-10 14:39:32 +02:00
|
|
|
|
2019-08-15 22:18:41 +02:00
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
}
|
2019-06-10 14:39:32 +02:00
|
|
|
}
|
|
|
|
|
2019-08-15 22:18:41 +02:00
|
|
|
.portico-page-subheading {
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 1.1em;
|
|
|
|
color: hsl(0, 0%, 67%);
|
|
|
|
line-height: 1.2;
|
|
|
|
text-align: center;
|
2019-06-10 14:39:32 +02:00
|
|
|
}
|
|
|
|
|
2019-08-15 22:18:41 +02:00
|
|
|
#integration-search {
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
|
|
|
.searchbar {
|
|
|
|
width: calc(100% - 40px);
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
margin: 30px auto 0;
|
|
|
|
|
|
|
|
.searchbar-reset {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
input {
|
2020-08-06 02:42:07 +02:00
|
|
|
box-shadow: 0 0 7px 2px hsla(0, 0%, 0%, 0.03);
|
2019-08-15 22:18:41 +02:00
|
|
|
|
|
|
|
font-size: 1em;
|
|
|
|
font-family: inherit;
|
|
|
|
|
|
|
|
width: 500px;
|
|
|
|
height: 45px;
|
2020-08-06 02:42:07 +02:00
|
|
|
padding: 0 20px 0 50px;
|
2019-08-15 22:18:41 +02:00
|
|
|
border-radius: 40px;
|
2019-08-15 23:00:56 +02:00
|
|
|
border: 1px solid $light-blue-border;
|
2019-08-15 22:18:41 +02:00
|
|
|
display: block;
|
|
|
|
|
|
|
|
&:focus {
|
2019-08-15 23:00:56 +02:00
|
|
|
border: 1px solid $border-green;
|
2019-08-15 22:18:41 +02:00
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 768px) {
|
2019-08-15 22:18:41 +02:00
|
|
|
width: 375px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 550px) {
|
2019-08-15 22:18:41 +02:00
|
|
|
width: calc(100% - 80px);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
i.fa-search {
|
|
|
|
position: absolute;
|
|
|
|
left: 20px;
|
|
|
|
top: 13px;
|
|
|
|
font-size: 19px;
|
2019-08-15 23:00:56 +02:00
|
|
|
color: $border-green;
|
2019-08-15 22:18:41 +02:00
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 768px) {
|
2019-08-15 22:18:41 +02:00
|
|
|
width: 445px;
|
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 550px) {
|
2019-08-15 22:18:41 +02:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.catalog {
|
|
|
|
margin-top: 20px;
|
|
|
|
padding: 0 30px;
|
|
|
|
min-height: 500px;
|
|
|
|
|
|
|
|
.integration-categories-sidebar {
|
|
|
|
float: left;
|
|
|
|
width: 200px;
|
2020-08-06 02:42:07 +02:00
|
|
|
padding: 0 30px 0 0;
|
2019-08-15 22:18:41 +02:00
|
|
|
margin: 0;
|
|
|
|
|
|
|
|
&.sticky {
|
|
|
|
position: sticky;
|
|
|
|
top: 40px;
|
|
|
|
margin: auto;
|
|
|
|
height: 490px;
|
|
|
|
z-index: 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 1.1em;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 0;
|
2019-08-15 22:18:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
font-weight: 400;
|
2020-08-04 23:58:56 +02:00
|
|
|
font-size: 0.95em;
|
2019-08-15 22:18:41 +02:00
|
|
|
padding: 6px 10px 3px;
|
|
|
|
margin: 3px 0;
|
|
|
|
border-radius: 5px;
|
|
|
|
transition: all 0.3s ease;
|
2019-08-15 23:00:56 +02:00
|
|
|
color: $category-text;
|
2019-08-15 22:18:41 +02:00
|
|
|
|
|
|
|
&.selected,
|
|
|
|
&:hover {
|
2019-08-15 23:00:56 +02:00
|
|
|
background-color: $hover-green;
|
|
|
|
color: $text-green;
|
2019-08-15 22:18:41 +02:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 906px) {
|
2019-08-15 22:18:41 +02:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.integration-categories-dropdown {
|
|
|
|
margin: 30px auto;
|
2019-06-10 14:39:32 +02:00
|
|
|
display: none;
|
|
|
|
|
2019-08-15 22:18:41 +02:00
|
|
|
.heading {
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 906px) {
|
2019-08-15 22:18:41 +02:00
|
|
|
display: block;
|
|
|
|
width: 670px;
|
|
|
|
|
|
|
|
h3,
|
|
|
|
h4 {
|
|
|
|
font-weight: 400;
|
|
|
|
margin: 0;
|
|
|
|
padding: 12px 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-toggle {
|
|
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
|
|
|
position: relative;
|
|
|
|
padding: 0;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
margin-left: 25px;
|
|
|
|
margin-right: 25px;
|
2019-08-15 23:00:56 +02:00
|
|
|
border: 1px solid $light-blue-border;
|
2019-08-15 22:18:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
i {
|
|
|
|
margin-right: 10px;
|
|
|
|
font-size: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-list {
|
|
|
|
display: none;
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 0;
|
|
|
|
margin-left: 25px;
|
|
|
|
margin-right: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
font-size: 1em;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
2019-08-15 23:00:56 +02:00
|
|
|
border-left: 1px solid $light-blue-border;
|
|
|
|
border-right: 1px solid $light-blue-border;
|
|
|
|
border-bottom: 1px solid $light-blue-border;
|
2019-08-15 22:18:41 +02:00
|
|
|
transition: all 0.3s ease;
|
2020-08-04 23:58:56 +02:00
|
|
|
font-size: 0.9em;
|
2019-08-15 22:18:41 +02:00
|
|
|
|
|
|
|
&.selected,
|
|
|
|
&:hover {
|
2019-08-15 23:00:56 +02:00
|
|
|
background-color: $hover-green;
|
|
|
|
color: $text-green;
|
2019-08-15 22:18:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 830px) {
|
2019-08-15 22:18:41 +02:00
|
|
|
width: 666px;
|
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 786px) {
|
2019-08-15 22:18:41 +02:00
|
|
|
width: 509px;
|
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 768px) {
|
2019-08-15 22:18:41 +02:00
|
|
|
width: 666px;
|
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 686px) {
|
2019-08-15 22:18:41 +02:00
|
|
|
width: 509px;
|
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 578px) {
|
2019-08-15 22:18:41 +02:00
|
|
|
width: 351px;
|
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 357px) {
|
2019-08-15 22:18:41 +02:00
|
|
|
width: 299px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.integration-lozenges {
|
|
|
|
overflow: hidden;
|
|
|
|
text-align: left;
|
2019-06-10 14:39:32 +02:00
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 906px) {
|
2019-08-15 22:18:41 +02:00
|
|
|
text-align: center;
|
|
|
|
}
|
2019-06-10 14:39:32 +02:00
|
|
|
}
|
|
|
|
|
2019-08-15 22:18:41 +02:00
|
|
|
.integration-lozenge {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
width: 153px;
|
|
|
|
height: 200px;
|
|
|
|
padding: 0 4px;
|
|
|
|
margin: 7px 5px;
|
|
|
|
border-radius: 5px;
|
2019-08-15 23:00:56 +02:00
|
|
|
border: 1px solid $light-blue-border;
|
|
|
|
color: $category-text;
|
2019-08-15 22:18:41 +02:00
|
|
|
text-align: center;
|
|
|
|
transition: all 0.3s ease;
|
2019-06-10 14:39:32 +02:00
|
|
|
|
2019-08-15 22:18:41 +02:00
|
|
|
&:hover {
|
2019-08-15 23:00:56 +02:00
|
|
|
border: 1px solid $border-green;
|
2019-08-15 22:18:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&.legacy {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.integration-secondary-line-text {
|
|
|
|
margin: 0;
|
|
|
|
line-height: 10px;
|
2020-08-04 23:58:56 +02:00
|
|
|
font-size: 0.65em;
|
2019-08-15 22:18:41 +02:00
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
|
|
|
.integration-category {
|
2020-08-04 23:58:56 +02:00
|
|
|
font-size: 0.85em;
|
2019-08-15 22:18:41 +02:00
|
|
|
margin-top: 5px;
|
|
|
|
font-weight: 400;
|
|
|
|
color: hsla(216, 23%, 13%, 0.5);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.without-category {
|
|
|
|
height: 180px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.integration-logo {
|
|
|
|
margin: 34px auto 20px;
|
|
|
|
height: 60px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fa-plus {
|
|
|
|
font-size: 59px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.integration-name {
|
|
|
|
font-size: 1.2em;
|
|
|
|
font-weight: 400;
|
2021-11-05 03:33:16 +01:00
|
|
|
margin: 10px 4px 0;
|
2019-08-15 22:18:41 +02:00
|
|
|
|
|
|
|
&.create-your-own {
|
|
|
|
margin-top: 27px;
|
|
|
|
font-size: 1.1em !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.with-secondary {
|
|
|
|
font-size: 1.1em;
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 830px) {
|
2019-08-15 22:18:41 +02:00
|
|
|
width: 134px;
|
|
|
|
height: 180px;
|
|
|
|
|
|
|
|
.integration-logo {
|
|
|
|
margin: 34px auto 15px;
|
|
|
|
height: 45px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fa-plus {
|
|
|
|
font-size: 45px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.integration-name {
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.integration-name.create-your-own {
|
|
|
|
font-size: 0.95em !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.integration-category {
|
2020-08-04 23:58:56 +02:00
|
|
|
font-size: 0.8em;
|
2019-08-15 22:18:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 375px) {
|
2019-08-15 22:18:41 +02:00
|
|
|
width: 120px;
|
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 357px) {
|
2019-08-15 22:18:41 +02:00
|
|
|
width: 108px;
|
|
|
|
height: 160px;
|
|
|
|
|
|
|
|
&.without-category {
|
|
|
|
height: 140px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.integration-logo {
|
|
|
|
margin: 28px auto 10px;
|
|
|
|
height: 45px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.integration-name {
|
2020-08-04 23:58:56 +02:00
|
|
|
font-size: 0.9em;
|
2019-08-15 22:18:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.integration-category {
|
2020-08-04 23:58:56 +02:00
|
|
|
font-size: 0.77em;
|
2019-08-15 22:18:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-09 00:49:42 +02:00
|
|
|
.integration-request {
|
|
|
|
font-size: 1em;
|
|
|
|
padding: 10px 0;
|
|
|
|
|
|
|
|
p {
|
|
|
|
padding-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
2021-11-05 03:33:16 +01:00
|
|
|
padding: 11px 25px;
|
2021-03-17 13:57:29 +01:00
|
|
|
margin: 5px;
|
|
|
|
font-size: 0.9em;
|
2020-04-09 00:49:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-17 13:57:29 +01:00
|
|
|
.integration-divider {
|
2021-11-05 03:33:16 +01:00
|
|
|
padding: 11px 15px 0;
|
2021-03-17 13:57:29 +01:00
|
|
|
}
|
|
|
|
|
2019-08-15 22:18:41 +02:00
|
|
|
/* -- integration instructions -- */
|
|
|
|
|
|
|
|
#integration-instructions-group {
|
|
|
|
padding: 0 50px;
|
|
|
|
display: none;
|
2019-06-10 14:39:32 +02:00
|
|
|
|
2019-08-15 22:18:41 +02:00
|
|
|
.integration-instruction-block {
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
.integration-lozenge {
|
|
|
|
width: 125px;
|
2022-02-17 17:00:47 +01:00
|
|
|
height: auto;
|
|
|
|
padding: 0 5px 20px;
|
2019-08-15 22:18:41 +02:00
|
|
|
margin: 0 21px 20px;
|
|
|
|
order: 1;
|
|
|
|
|
|
|
|
.integration-category {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 768px) {
|
2019-08-15 22:18:41 +02:00
|
|
|
border: none;
|
|
|
|
|
|
|
|
display: flex !important;
|
|
|
|
justify-content: space-between;
|
|
|
|
height: auto;
|
|
|
|
width: auto;
|
|
|
|
margin: unset;
|
|
|
|
padding: unset;
|
|
|
|
|
|
|
|
.integration-logo {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.integration-name {
|
|
|
|
font-size: 1.2em !important;
|
|
|
|
margin-left: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.name {
|
|
|
|
display: none;
|
|
|
|
font-size: 1.4em;
|
|
|
|
font-weight: 400;
|
|
|
|
margin: 0;
|
|
|
|
padding-bottom: 35px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.categories {
|
|
|
|
order: 2;
|
2021-10-16 21:57:26 +02:00
|
|
|
|
2019-08-15 22:18:41 +02:00
|
|
|
.integration-category {
|
2020-08-04 23:58:56 +02:00
|
|
|
font-size: 0.9em;
|
2019-08-15 22:18:41 +02:00
|
|
|
font-weight: 400;
|
2019-08-15 22:41:26 +02:00
|
|
|
padding: 6px 3px;
|
|
|
|
margin: 7px 0;
|
2019-08-15 22:18:41 +02:00
|
|
|
width: 165px;
|
|
|
|
text-align: center;
|
|
|
|
border-radius: 5px;
|
|
|
|
transition: all 0.3s ease;
|
2019-08-15 23:00:56 +02:00
|
|
|
background-color: $light-blue-border;
|
|
|
|
color: $category-text;
|
2019-08-15 22:18:41 +02:00
|
|
|
|
|
|
|
&:hover {
|
2019-08-15 23:00:56 +02:00
|
|
|
background-color: $hover-green;
|
|
|
|
color: $text-green;
|
2019-08-15 22:18:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#integration-list-link {
|
|
|
|
margin-left: 30px;
|
|
|
|
order: 3;
|
|
|
|
|
|
|
|
span {
|
|
|
|
display: inline-block;
|
|
|
|
margin-left: 5px;
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width >= 768px) {
|
2019-08-15 22:18:41 +02:00
|
|
|
margin-top: 15px;
|
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 768px) {
|
2019-08-15 22:18:41 +02:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 768px) {
|
2019-08-15 22:18:41 +02:00
|
|
|
font-size: 22px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 768px) {
|
2019-08-15 22:18:41 +02:00
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
padding-bottom: 20px;
|
2019-08-15 23:00:56 +02:00
|
|
|
border-bottom: 1px solid $light-blue-border;
|
2019-08-15 22:18:41 +02:00
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 768px) {
|
2019-08-15 22:18:41 +02:00
|
|
|
.name {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.categories {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.integration-instructions {
|
|
|
|
.help-content h3 {
|
|
|
|
margin: 20px 0;
|
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width >= 768px) {
|
2019-08-15 22:18:41 +02:00
|
|
|
width: calc(100% - 200px);
|
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 768px) {
|
2019-08-15 22:18:41 +02:00
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 768px) {
|
2019-08-15 22:18:41 +02:00
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width <= 450px) {
|
2019-08-15 22:18:41 +02:00
|
|
|
padding: 0 25px;
|
|
|
|
}
|
2019-06-10 14:39:32 +02:00
|
|
|
}
|
|
|
|
}
|