Spaces:
Runtime error
Runtime error
File size: 980 Bytes
c10e2f9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
.kpi{
text-align: center;
border-style: solid;
border-width: 1px;
border-radius: 5px;
border-color: inherit;
}
.kpi:hover {
transform: scale(1.1);
}
.central_text{
text-align: center;
top: 50%;
}
.clause{
text-align: center;
border-style: solid;
border-width: 1px;
border-radius: 5px;
border-color: #1B7735;
box-shadow: 0px 5px #1B7735;
color: white;
margin-left: 10%;
margin-right: 10%;
padding-top: 2%;
padding-bottom: 2%;
background-color: #3C9E58;
z-index: 5;
display: block;
position: relative;
}
.clause:hover {
transform: scale(1.1);
}
.clause_text{
font-weight: bold;
}
.clause_meta{
text-align: center;
border-style: solid;
border-width: 1px;
border-radius: 5px;
border-color: #0c0c0e;
margin-left: 10%;
margin-right: 10%;
padding-top: 2%;
padding-bottom: 2%;
z-index: 3;
display: block;
position: relative;
}
|