Files
Gainsight/Custom_Templates/customer_templates/Isoplexis Sandbox/styles.css.liquid
2023-02-01 18:11:39 -05:00

43 lines
1.1 KiB
Plaintext

@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');
.isogreen {
color: #12cd9a;
}
.green-gradient-button {
background-image: linear-gradient(45deg, rgb(17, 201, 162) 0%, rgb(4, 170, 205) 40%, rgb(16, 69, 218) 65%, rgb(94, 59, 157) 100%);
color: #fff;
border: none;
border-radius: 5px;
padding: 15px;
font-size: 1.2rem;
font-weight: 600;
text-transform: none;
transition-delay: 0s;
transition-duration: 0.8s;
transition-property: all;
transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1) !important;
background-size: 300% auto !important;
background-position: 0 0;
text-align: center;
}
.green-gradient-button:hover {
background-position: 100% 50%;
}
body {
background: linear-gradient(0deg, #080b20 0%, #0f152c 100%);
font-family: 'Source Sans Pro', sans-serif;
font-weight: 400;
color: #fff;
margin: 0;
background-repeat: no-repeat;
background-attachment: fixed;
}
a {
color: inherit;
text-decoration: none;
}