26 lines
531 B
CSS
26 lines
531 B
CSS
/* PCBA Details page */
|
|
.pcba-banner-image {
|
|
background: url(../images/byod/medical-grade-pcb.jpg);
|
|
background-size: cover;
|
|
background-position: center center;
|
|
position: relative;
|
|
}
|
|
|
|
.pcba-banner-image::before {
|
|
content: "";
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #2831cf26;
|
|
top: 0;
|
|
}
|
|
|
|
.pcba-banner-image h3 {
|
|
max-width: 970px;
|
|
font-size: 45px;
|
|
margin: 0 auto;
|
|
color: var(--Yellow);
|
|
background: #2831cf26;
|
|
padding: 20px;
|
|
border-radius: 11px;
|
|
} |