Process boxes

This commit is contained in:
ZettaScript
2022-09-26 16:05:08 +02:00
parent ca7ec37a9c
commit ad8f05c3bc
3 changed files with 68 additions and 1 deletions

View File

@ -44,7 +44,7 @@ header {
}
#header-menu a:hover, #header-menu a:focus {
border-bottom: 2px solid #ac44ff;
text-shadow: 1px 2px 1px #ac44ff;
}
main {
@ -93,6 +93,7 @@ a, a:visited {
display: flex;
align-items: stretch;
justify-content: center;
border-right: 32px solid #ac44ff;
}
.need_box {
@ -139,6 +140,10 @@ a, a:visited {
text-decoration: none;
}
.service_box-link:hover, .service_box-link:focus {
text-shadow: 1px 2px 1px #ac44ff;
}
.service_box-title {
position: relative;
top: 8px;
@ -146,3 +151,41 @@ a, a:visited {
padding-bottom: 14px;
font-size: 24px;
}
.process-title {
font-family: Amatic;
font-size: 42px;
background: linear-gradient(0.25turn, #0294d9, #ac44ff);
color: #fff;
}
.process_boxes {
flex: 62%;
text-align: center;
font-family: LunaSans;
}
.process_box {
display: inline-block;
width: 256px;
padding-top: 4px;
vertical-align: top;
}
.process_box-number {
display: inline-block;
width: 64px;
height: 64px;
font-size: 48px;
background: linear-gradient(-0.125turn, #0294d9, #ac44ff);
color: #fff;
border-radius: 32px;
}
.process_box-title {
position: relative;
top: 8px;
display: inline-block;
padding-bottom: 14px;
font-size: 32px;
}