website/sass/css/square_box.scss

26 lines
389 B
SCSS
Raw Normal View History

2023-05-04 12:31:51 +02:00
@import "defs";
2023-04-29 00:28:54 +02:00
.square_boxes {
display: flex;
flex: 62%;
text-align: center;
font-family: LunaSans;
gap: 32px;
align-items: center;
justify-content: center;
2023-05-04 12:31:51 +02:00
flex-wrap: wrap;
2023-04-29 00:28:54 +02:00
}
.square_box {
2023-05-18 18:35:28 +02:00
width: 200px;
min-height: 200px;
padding: 8px;
2023-05-04 12:31:51 +02:00
background: linear-gradient(-0.125turn, $blue, $violet);
2023-05-19 12:29:49 +02:00
color: white;
2023-05-04 12:31:51 +02:00
}
.square_box-title {
font-family: Neucha;
font-size: 175%;
2023-04-29 00:28:54 +02:00
}