Sleep Twitch
Sleep Twitch
KPCKevin Powell - Community
Created by smackalpha on 10/15/2024 in #front-end
How to make bottom shadow in text in css.
I see you used box-shadow, but you need text-shadow if you want to apply it to text.
16 replies
KPCKevin Powell - Community
Created by smackalpha on 10/15/2024 in #front-end
How to make bottom shadow in text in css.
No description
16 replies
KPCKevin Powell - Community
Created by smackalpha on 10/15/2024 in #front-end
How to make bottom shadow in text in css.
I used this: #demotext { text-shadow: 0px 2px 0px #000000; -webkit-text-stroke: 2px black; color: #FFFFFF; background: #FFFB03; }
16 replies
KPCKevin Powell - Community
Created by smackalpha on 10/15/2024 in #front-end
How to make bottom shadow in text in css.
You can use this website to easily try stuff: https://html-css-js.com/css/generator/text-shadow/
16 replies
KPCKevin Powell - Community
Created by smackalpha on 10/15/2024 in #front-end
How to make bottom shadow in text in css.
The important thing is the 0 blur and 100% black color.
16 replies
KPCKevin Powell - Community
Created by smackalpha on 10/15/2024 in #front-end
How to make bottom shadow in text in css.
Export to SVG and you are done
16 replies
KPCKevin Powell - Community
Created by smackalpha on 10/15/2024 in #front-end
How to make bottom shadow in text in css.
No description
16 replies
KPCKevin Powell - Community
Created by smackalpha on 10/15/2024 in #front-end
How to make bottom shadow in text in css.
No description
16 replies
KPCKevin Powell - Community
Created by Ze Golly Gosh on 10/5/2024 in #back-end
How would you store the data for a blog posts with .NET and Entity Framework?
If it is just you that will be making posts, using an Astro blog template would be a very easy way. If it is also other users, you could use DecapCms. Easier and cheaper (free) to set up than running a server with .net and sql.
6 replies
KPCKevin Powell - Community
Created by Ze Golly Gosh on 10/5/2024 in #back-end
How would you store the data for a blog posts with .NET and Entity Framework?
If it is only a blog, why did you choose a .NET + angular + SQL stack?
6 replies
KPCKevin Powell - Community
Created by Καλημερας on 10/10/2024 in #front-end
Backdrop-filter doesn`t work
Can you show that example?
108 replies
KPCKevin Powell - Community
Created by AYMAN on 10/10/2024 in #front-end
exportimg images with mask
If you do it with css and you want to change the image, you do not need to do anything but replacing the image
2 replies
KPCKevin Powell - Community
Created by Καλημερας on 10/10/2024 in #front-end
Backdrop-filter doesn`t work
That's what I was trying to say.. you have 1 solid color, that's the problem. A blur of a solid color looks exactly the same as the solid color, if the area you try to blur is inside that solid color. You will only see blur on the edges.
108 replies
KPCKevin Powell - Community
Created by Καλημερας on 10/10/2024 in #front-end
Backdrop-filter doesn`t work
Another problem is that this: background: linear-gradient(rgba(255, 255, 255, 0.1)); isn't a valid background I think. You have a gradient with just 1 color?
108 replies
KPCKevin Powell - Community
Created by Καλημερας on 10/10/2024 in #front-end
Backdrop-filter doesn`t work
The problem is your background is just 1 solid color, so the blurred version of that looks exactly the same as the non blurred version.
108 replies
KPCKevin Powell - Community
Created by iiHiki LN25 on 10/5/2024 in #front-end
How to Enable Responsive Horizontal Scrolling for Flex Items in CSS?
I see, yes
11 replies
KPCKevin Powell - Community
Created by iiHiki LN25 on 10/5/2024 in #front-end
How to Enable Responsive Horizontal Scrolling for Flex Items in CSS?
Why so many nested divs though? Can't you combine parent-container, package-container, package-wrapper all in 1 div instead of 3 nested ones?
11 replies
KPCKevin Powell - Community
Created by Philosoph on 10/1/2024 in #front-end
modern Layout
Maybe it's better not to make the nav elements buttons at all. Buttons are for actions.. also.. what is that thing next to the 100+ plants element?
3 replies
KPCKevin Powell - Community
Created by i_lost_to_loba_kreygasm on 10/1/2024 in #front-end
How to make a background image darker ?
You could use background blend mode: background: rgba(0, 0, 0, .65) url('<your url>'); background-blend-mode: darken;
7 replies
KPCKevin Powell - Community
Created by hackett_hkd on 9/24/2024 in #front-end
Why my margin does not work?
I guess it's always best practice to only put css properties in your css that you put in intentionally and it fixes something that wasn't resulting in what you wanted. Don't put in something without knowing what it fixes.
13 replies