website/sass/css/square_box.scss

24 lines
355 B
SCSS
Raw Normal View History

2023-05-04 10:31:51 +00:00
@import "defs";
2023-04-28 22:28:54 +00:00
.square_boxes {
display: flex;
flex: 62%;
text-align: center;
font-family: LunaSans;
gap: 32px;
align-items: center;
justify-content: center;
2023-05-04 10:31:51 +00:00
flex-wrap: wrap;
2023-04-28 22:28:54 +00:00
}
.square_box {
2023-05-04 10:31:51 +00:00
width: 256px;
height: 256px;
background: linear-gradient(-0.125turn, $blue, $violet);
}
.square_box-title {
font-family: Neucha;
font-size: 175%;
2023-04-28 22:28:54 +00:00
}