CSS Battles #53 – Pastel Logo #905
Narigo
started this conversation in
CSS Battles
Replies: 1 comment 1 reply
-
Ok, this isolation thing is weird. Code Source – 608.27 {407}<div>
<div id=c></div>
<div id=r></div>
</div>
<style>
body {
display: grid;
place-items: center;
background: #19191A;
}
#c {
isolation: isolate;
background: conic-gradient(#4F77FF 50%, #9AD5FF 0 75%, #4F77FF 0);
width: 150px;
height: 150px;
border-radius: 50%;
}
#r {
margin-top: -75px;
width: 75px;
height: 125px;
background: #F9E492;
}
</style> |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Link to battle:
Let's battle! ⚔️
Copy the code block below to format your comment on the discussion thread:
What others will see:
This will result in a nice hidden bit like so:
Code Source – score {character count}
Beta Was this translation helpful? Give feedback.
All reactions