42 lines
740 B
SCSS
42 lines
740 B
SCSS
/* Path: frontend/src/components/Post/Blockquotes/Homework.module.scss */
|
|
|
|
.homework {
|
|
background-color: #a95eff1a;
|
|
padding: 30px;
|
|
border-radius: 10px;
|
|
position: relative;
|
|
min-height: 100px;
|
|
|
|
picture {
|
|
position: absolute;
|
|
bottom: -10px;
|
|
right: -10px;
|
|
|
|
margin: 0;
|
|
|
|
width: 200px;
|
|
max-width: 30%;
|
|
|
|
transform: rotate(10deg);
|
|
|
|
img {
|
|
width: 100%;
|
|
height: auto;
|
|
box-shadow: none;
|
|
}
|
|
}
|
|
|
|
ul {
|
|
list-style-type: disc;
|
|
padding-left: 20px;
|
|
margin-right: 220px;
|
|
}
|
|
|
|
span {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 30px;
|
|
transform: translateY(-50%);
|
|
}
|
|
}
|