Created
December 16, 2021 08:28
-
-
Save gmcusaro/5f4082194d849d833ab51ca196880d7b to your computer and use it in GitHub Desktop.
Shade box
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
:root { | |
--gradient-1:linear-gradient(to bottom right,#1f005c,#5b0060,#870160,#ac255e,#ca485c,#e16b5c,#f39060,#ffb56b); | |
} | |
.box { | |
inline-size: 50vmin; | |
block-size: 50vmin; | |
} | |
html { | |
block-size: 100%; | |
} | |
body { | |
min-block-size: 100%; | |
display: grid; | |
place-content: center; | |
} | |
.gradient-border { | |
border: 2rem solid rebeccapurple; | |
border-image: var(--gradient-1) 1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment