34 lines
648 B
CSS
34 lines
648 B
CSS
/*
|
|
.card {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
overflow: hidden;
|
|
/* position: relative; *//*
|
|
z-index: 1;
|
|
background-image: url(../img/planeta.jpg);
|
|
left: 0px;
|
|
top: 0px;
|
|
background-size: 100%;
|
|
background-position: 0% 0%;
|
|
opacity: 0.6;
|
|
position: absolute;
|
|
/* animation: pan-image 15s linear infinite; *//*
|
|
}
|
|
*/
|
|
/*
|
|
.card > .card-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
gap: 4rem;
|
|
position: relative;
|
|
z-index: 10;
|
|
margin: 0rem;
|
|
padding-bottom: 6rem;
|
|
border-radius: 0.6rem;
|
|
flex-grow: 1;
|
|
}
|
|
|