Fixed major sync issues with cloud <-> onprem codebase

This commit is contained in:
Frikky
2024-03-14 09:54:59 +01:00
parent 625d681fe5
commit b5d04bef13
4 changed files with 1840 additions and 0 deletions
+60
View File
@@ -0,0 +1,60 @@
@import url('https://fonts.googleapis.com/css?family=Nunito+Sans');
body {
margin: 0;
padding: 0;
font-family: "Nunito Sans", sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace;
}
.partner_container {
height: 200px;
position: relative;
}
.imggrow {
padding: 60px auto 50px auto;
height: 100px;
width: auto !important;
margin-right: 1rem;
width: 100%;
transition: transform .2s;
border-radius: 10px;
float: center !important;
text-align: center !important;
justify-content: "center" !important;
background-color: #ffffff;
color: black;
position: relative;
overflow: hidden;
z-index: 1;
}
.imggrow:hover{
height: 230px;
transform: transform(1.5);
cursor: pointer;
border-color: #3585f9;
display: block;
box-shadow: 0 4px 8px #FC7305;
}
.bad-marker {
position: absolute;
background-color: #7b322e;
color: white !important;
opacity: 1;
}
.good-marker {
position: absolute;
background-color: #5ea36a;
color: white !important;
opacity: 0.6;
}