26 lines
402 B
CSS
26 lines
402 B
CSS
|
|
aside.aside_right .relative_box {
|
|
border-style: none;
|
|
}
|
|
|
|
.rectangle p {
|
|
margin: auto;
|
|
padding: 5px;
|
|
text-align: center;
|
|
}
|
|
.rectangle._big {
|
|
min-width: 250px;
|
|
height: 400px;
|
|
background-color: hsl(var(--hue-1), 80%, 80%);
|
|
}
|
|
.rectangle._little {
|
|
min-width: 150px;
|
|
height: 200px;
|
|
background-color: hsl(var(--hue-4), 70%, 80%);
|
|
}
|
|
.rectangle._little p {
|
|
font-size: 1.7em;
|
|
line-height: 1.4em;
|
|
}
|
|
|