35 lines
686 B
CSS
35 lines
686 B
CSS
.FunctionComponent__top {
|
|
display: flex;
|
|
align-items: center;
|
|
position: relative;
|
|
flex-direction: column;
|
|
word-wrap: break-word;
|
|
box-shadow: 0px 0px 6px 6px rgba(0, 0, 0, 0.25);
|
|
border: 1px solid black;
|
|
border-radius: 1rem;
|
|
margin-top: 40px;
|
|
}
|
|
.FunctionComponent__title {
|
|
margin: 0;
|
|
}
|
|
.FunctionComponent__description {
|
|
word-break: break-all;
|
|
margin-bottom: 0;
|
|
}
|
|
.FunctionComponent__slide {
|
|
margin-top: 30px;
|
|
}
|
|
.FunctionComponent__image {
|
|
width: 150px;
|
|
}
|
|
.FunctionComponent__star-favorite {
|
|
color: var(--important);
|
|
width: 2em !important;
|
|
height: 2em !important;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 15px;
|
|
margin-right: 15px;
|
|
cursor: pointer;
|
|
}
|