Last active
February 9, 2024 13:44
-
-
Save rdeak/375b22ed7b5e97659c696ecfaa7379a9 to your computer and use it in GitHub Desktop.
CSS snippets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Backgrounds */ | |
.full-background-whithout-wrapper { | |
border-image: conic-gradient(pink 0 0) fill 0//0 100vw; | |
} | |
/* Overlay */ | |
.overlay { | |
border-image: fill 0 linear-gradient(#0003,#000); | |
} | |
/* Underline text */ | |
.underline_text{ | |
border-image: linear-gradient(0deg,#c32e2e 5px,#0000 0) fill 0//0 0 0 100vw; | |
width: fit-content; | |
} | |
/* Image default */ | |
img { | |
max-width: 100%; | |
height: auto; | |
vertical-align: middle; | |
font-style: italic; | |
/* use with image-background as image placeholder */ | |
background-repeat: no-repeat; | |
background-size: cover; | |
/* space between image and surranding text */ | |
shape-margin: 0.75rem; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment