Files
old-v2-frontend/src/styles/general.css

80 lines
1.2 KiB
CSS
Raw Normal View History

2018-07-10 11:47:58 +02:00
html {
overflow: hidden;
height: 100%;
}
body {
overflow: scroll;
height: 100%;
}
.bg-saburly-indigo {
background: rgb(69, 76, 183);
background: linear-gradient(
90deg,
rgba(69, 76, 183, 1) 0%,
rgba(157, 163, 255, 1) 100%
);
}
2018-07-10 11:47:58 +02:00
.bg-saburly-light {
background: linear-gradient(
90deg,
rgba(255, 255, 255, 1) 1%,
rgba(250, 249, 252, 1) 49%,
rgba(237, 233, 245, 1) 100%
);
}
.bg-saburly-fadeout {
background: rgb(255, 255, 255);
background: linear-gradient(
180deg,
rgba(255, 255, 255, 1) 0%,
rgba(237, 233, 245, 1) 100%
);
}
.bg-saburly svg {
-moz-transform: scaleX(-1);
-o-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
filter: FlipH;
-ms-filter: 'FlipH';
}
.bg-saburly-dark {
background-color: #210b44;
2018-07-10 11:47:58 +02:00
}
.bg-saburly svg,
2018-07-10 11:47:58 +02:00
.bg-saburly-light svg,
.bg-saburly-indigo svg {
2018-07-03 10:52:51 +02:00
position: absolute;
bottom: 0;
}
.bg-saburly-indigolight svg {
position: absolute;
top: 0;
transform: rotate(180deg);
}
.bg-saburly-indigolight {
background-color: #edf3ff;
}
.btn-saburly-green {
background: rgb(0, 255, 252);
background: linear-gradient(
150deg,
rgba(0, 255, 252, 1) 0%,
rgba(0, 177, 186, 1) 55%
);
}
2018-07-04 20:49:13 +02:00
.client-logo {
2018-07-05 12:59:28 +02:00
max-height: 3rem;
2018-07-04 20:49:13 +02:00
}