website/sass/css/clients.scss

68 lines
902 B
SCSS
Raw Permalink Normal View History

2023-03-22 23:15:56 +00:00
@import "defs";
.client_box-text {
text-align: left;
font-size: 110%;
line-height: 130%;
}
.client_box-text::before {
font-size: 96px;
content: "";
color: #888;
position: relative;
left: -16px;
top: 40px;
}
2023-03-26 17:08:30 +00:00
2023-04-09 20:50:40 +00:00
@media screen and (width > 599px) {
2023-03-26 17:08:30 +00:00
.client_box {
display: flex;
}
.client_box-right {
flex: 62%;
}
.client_box-left {
flex: 38%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.client_box-left-row {
width: 100%;
display: flex;
flex-direction: row;
justify-content: flex-end;
}
.client_box-img {
margin: 32px;
}
.client_box-text {
max-width: 800px;
margin: 32px;
}
}
2023-04-09 20:50:40 +00:00
@media screen and (width < 600px) {
2023-03-26 17:08:30 +00:00
.client_box-text {
margin: 0 16px 32px 16px;
}
}
.client_box-sign {
color: $grey1;
2023-04-25 14:03:16 +00:00
float: right;
}
2023-04-26 16:58:04 +00:00
@media (prefers-color-scheme: dark) {
.client_box-sign {
color: $grey2;
}
}