33 lines
521 B
SCSS
33 lines
521 B
SCSS
@import "defs";
|
|
|
|
.process_boxes {
|
|
flex: 62%;
|
|
text-align: center;
|
|
font-family: LunaSans;
|
|
}
|
|
|
|
.process_box {
|
|
display: inline-block;
|
|
width: 256px;
|
|
padding-top: 4px;
|
|
vertical-align: top;
|
|
margin: 8px 16px;
|
|
}
|
|
|
|
.process_box-number {
|
|
display: inline-block;
|
|
width: 64px;
|
|
height: 64px;
|
|
font-size: 48px;
|
|
background: linear-gradient(-0.125turn, $blue, $violet);
|
|
color: #fff;
|
|
border-radius: 32px;
|
|
}
|
|
|
|
.process_box-title {
|
|
position: relative;
|
|
top: 8px;
|
|
display: inline-block;
|
|
padding-bottom: 14px;
|
|
font-size: 32px;
|
|
}
|