CSS Battle #133 – Spiral #1425
meg-gutshall
started this conversation in
CSS Battles
Replies: 3 comments 1 reply
-
Code Source – 606.51 {432}<style>
&{
background:
radial-gradient(1q at 170px 50%, #D86F45 10px,#3210 0),
radial-gradient(1q at 90px 50%, #D86F45 10px,#3210 0),
radial-gradient(1q at 180px 0,#F5D6B4 40px,#D86F45 0 60px,#F5D6B4 0 80px,#D86F45 0 100px,#F5D6B4 0) 0 100% / 100% 50% no-repeat,
radial-gradient(1q at 50% 100%,#F5D6B4 20px,#D86F45 0 40px,#F5D6B4 0 60px,#D86F45 0 80px,#F5D6B4 0) 0 0 / 100% 50% no-repeat;
}
</style> |
Beta Was this translation helpful? Give feedback.
0 replies
-
First attempt using
|
Beta Was this translation helpful? Give feedback.
1 reply
-
Code Source – 600.23 {781}<div i></div>
<div f></div>
<div s></div>
<div o></div>
<p></p>
<style>
body {
display: grid;
background: #F5D6B4;
place-items: center;
}
p {
position: absolute;
width: 20;
height: 20;
background: #D86F45;
border-radius: 50%;
translate: -110px;
box-shadow: 80px 0 #D86F45;
}
div {
position: absolute;
border: 20px solid #D86F45;
border-top: none;
border-radius: 0px 0px 100px 100px;
}
[i] {
width: 40;
height: 22;
rotate: 180deg;
translate: 0px -19px;
}
[f] {
width: 80;
height: 40;
translate: -20px 30px;
}
[s] {
width: 120;
height: 60;
rotate: 180deg;
translate: 0 -40px;
}
[o] {
width: 160;
height: 80;
translate: -20px 50px;
}
</style> |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
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 {characters}
Beta Was this translation helpful? Give feedback.
All reactions