Skip to content

Instantly share code, notes, and snippets.

@gmcusaro
Created December 16, 2021 08:28
Show Gist options
  • Save gmcusaro/5f4082194d849d833ab51ca196880d7b to your computer and use it in GitHub Desktop.
Save gmcusaro/5f4082194d849d833ab51ca196880d7b to your computer and use it in GitHub Desktop.
Shade box
: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