Fixed Background – 1

body.custom-background { background-image: url(https://www.pacificsqr.com/wp-content/uploads/2024/07/PS-Pattern.png); background-position: left top; background-size: auto; background-repeat: repeat; background-attachment: scroll; } to this: body.custom-background { background-image: url(https://www.pacificsqr.com/wp-content/uploads/2024/07/PS-Pattern.png); background-position: left top; background-size: auto; background-repeat: repeat; background-attachment: fixed; }Continue reading

CSS – National Tax Agency

h3 { border-color: transparent transparent brown transparent; border-bottom-style: groove; background-color: #f3ede5; padding: 10px; } h4 { background: #fff; border-bottom: 1px solid #c3c4c7; border-left-width: 4px; padding: 10px; } h5 { background: #efefef; border-bottom: 1px solid #c3c4c7; border-left-width: 4px; border-left-color: greenyellow; padding:…Continue reading

CSS – Formattage de blocs

.nath-bloc-bordure { border-width:4px; border-style:solid; padding:15px; } .nath-bloc-souligner { border-bottom-width:2px; border-bottom-style:solid; } /* Bloc avec une bordure arrondie */ .nath-bloc-bordure-ronde {border-radius:30px;} .nath-bloc-drop-left {border-radius: 10% 30% 50%;} .nath-bloc-drop-right {border-radius: 10% 30% 50%;} /* Epaisseur de bordure */ .nath-4border-thinner {border-width:2px;} /* Couleurs de…Continue reading