Advertisement · 728 × 90
#
Hashtag
#css
Advertisement · 728 × 90
CSSボックスシャドウ(box-shadow)生成ツール|美しいプリセット付き|WebToolGen 直感的なスライダー操作でCSSのbox-shadowを自動生成する無料ツール。Apple風、マテリアルデザイン、ニューモーフィズムなど、Web制作の現場でそのまま使える美しい影のプリセット(見本帳)をワンクリックでコピーできます。

CSSの影づくり、もう迷いません🙅‍♂️実務向けのプリセットを詰め込んだbox-shadow生成ツールを公開しました!
プレビューを見ながらの微調整にも対応!サンプルから選ぶ→直感的にイジる→即コピペ可能です✨👇
webtoolgen.com/markup/css-b...
#Web制作 #コーディング #CSS

0 0 0 0
Preview
Cascade — Icons for CSS Properties An open-source icon set where every icon represents a CSS property–value pair. Copy as SVG or React component.

#Design #Launches
Cascade Icons · Hand-crafted icons for CSS properties and their values ilo.im/16bmug by Andrew Flett

_____
#CSS #Icons #DesignTools #WebDesign #OpenSource #React #Development #WebDev #Frontend #SVG

1 0 0 0
CSS圧縮・整形(Minify & Beautify)ツール|WebToolGen CSSコードの不要な改行やスペースを削除して軽量化(圧縮)したり、逆に圧縮されて読めないCSSを人間が読みやすいインデントに整形(展開)する無料ツールです。サーバー送信なしのブラウザ完結で安全に処理できます。

引き継いだ案件のCSSが「1行に圧縮」されていて絶望した経験はありませんか?😇
解読不能なCSSを綺麗なインデントに整形(復元)したり、納品前に一瞬で圧縮できる実務特化ツールを作りました。ブラウザ完結で安全です👇
webtoolgen.com/markup/css-f...
#Web制作 #コーディング #CSS

0 0 0 0
Preview
❐AIの要約➡️サイトデザインをBootstrapからTailwindに変更し機能は継続。10年経過のブログを高速化・分離検討中、Laravelで独自管理構築も計画。… ❐AIの要約➡️サイトデザインをBootstrapからTailwindに変更し機能は継続。10年経過のブログを高速化・分離検討中、Laravelで独自管理構築も計画。…

❐AIの要約➡️サイトデザインをBootstrapからTailwindに変更し機能は継続。10年経過のブログを高速化・分離検討中、Laravelで独自管理構築も計画。…

zip358.com/2026/02/02/何の前触れも...
#blog #css #Laravel #オリジナル #お気づき #ここら #サイト #そう

0 0 0 0
Запуск DOOM на CSS? Да, это безумие официально случилось!

Запуск DOOM на CSS? Да, это безумие официально случилось!

Запуск DOOM на CSS? Да, это безумие официально случилось!

Кажется, вечное правило интернета «Если у этого есть экран, на нем запустят DOOM» вышло на новый уровень.

Разработчик Нильс Леенхер доказал: для легендарного шутера не нужен даже JavaScript.

#doomclassic #css #tefidacom

cssdoom.wtf

0 0 0 0
Preview
Dropdowns Inside Scrollable Containers: Why They Break And How To Fix Them Properly — Smashing Magazine Dropdowns often work perfectly until they’re placed inside a scrollable panel, where they can get clipped, and half the menu disappears behind the container’s edge. Godstime Aburu explains why this happens and offers practical solutions to fix it.

Dropdowns Inside Scrollable Containers: Why They Break and How to Fix Them Properly, by @smashingmag@mastodon.social:

www.smashingmagazine.com/2026/03/dropdowns-scroll...

#css #positioning #transforms #scrolling

0 0 0 0
Preview
Off The Hook CSS · Cansei De Ser Sexy · Song · 2006


🇺🇦 #NowPlaying on #KEXP's #VarietyMix

CSS:
🎵 Off the Hook

#CSS

▶️ 🪄 Automagic 🔊 show 📻 playlist on Spotify

▶️ Song on #Spotify:

0 0 0 0
Preview
Using CSS to Add A Reading Progress Bar To My Site The length of my posts can vary dramatically - some (like this one) are very short, whilst others are much, much longer. Although I generally try to indicate how long a post is, once a reader is in, there isn't really a good way to know how much more of the post is left (the days of thick scrollbars are, thankfully, quite some way behind us). So, I decided to add a small visual indicator - a coloured bar which creeps across the top of the page as you progress. Most functionality on my site works without javascript so, ideally, I wanted the new indicator to be CSS only. This post describes how to add a progress bar to a website without using javascript. * * * ### The Mechanism A new experimental property (`animation-timeline`) was added to CSS back in 2023. It allows us to bind animations to specific events (such as scrolling). Essentially, this allows us to have CSS change the state of of an element depending on how far down the page the reader is. * * * ### Implementing I added a couple of `<div>`s to the bottom of my site's template, defining the progress bar and a wrapper for it: <div class="progress-bar-container" aria-hidden="true"> <div class="progress-bar"></div> </div> Although it's presence _shouldn't_ upset screen-readers, I decided to play it safe and add `aria-hidden` to be sure that I wasn't degrading compatibility. I then used CSS to stick the div to the top of the viewport: .progress-bar-container { position: fixed; top: 0px; width: 100%; z-index: 999; background: transparent; } I chose to make the background transparent, but it's also possible to set it to a colour and create a two-tone bar where one colour squashes the other as the reader progresses. For the progress bar, we define height and the colour before binding it to a CSS animation: .progress-bar { height: 3px; background: #00cfff; animation-timeline: scroll(y); animation-name: width; } Finally, we create the animation: @keyframes width { from { width: 0 } to { width: 100% } } The result is a blue bar that creeps across the page as the reader scrolls: * * * #### Advanced Mode I **did** briefly experiment with having Pac-Man work his way across eating dots: <style type="text/css"> .progress-bar-container { position: fixed; top: 0px; width: 100%; z-index: 999; /* Set the background to a dot that Pacman will eat */ background-image: url(/images/Documentation/css-reading-position-indicator/dot.png); /* Repeat all the way across and line them up with his gob */ background-repeat: repeat-x; background-position: center; } /* The progress bar is almost the same as before but we set the background to white to hide the eaten docs */ .progress-bar { height: 30px; background: white; animation-name: width; animation-timeline: scroll(y); } /* Style the pac-man image */ .progress-bar img { height: 20px; width: 20px; /* We want him stuck to the right edge of the div so that he advances as the user scrolls */ display: block; margin-left: auto; } </style> <div class="progress-bar-container"> <div class="progress-bar"> <!-- Include the pacman image --> <img src="/images/Documentation/css-reading-position-indicator/pac-man.gif"> </div> </div> The result looked like this: With a bit of tweaking, I could have got rid of the trailing white bar, but I ultimately decided that the whole thing was too distracting and switched back to a solid colour. * * * #### Dark Mode My site automatically switches if the reader has configured their OS (or, more accurately, their browser) to prefer dark mode. Rather than white and blue, my dark mode uses black and yellow. So, I also added some CSS **after** the definitions above to change the scroll-bar colour accordingly: @media (prefers-color-scheme: dark) { .progress-bar { background: #fc0 } } * * * ### Caveats Being able to do all of this without javascript is great, but there _are_ some gotchas. The progress bar width is based on the full page rather than just the main content: if you've lots of footer content (or a comments section) it's going to count that. There doesn't seem to be a good way to address that in CSS. Despite being a few years old, `animation-timeline` is still marked experimental. Although Firefox now supports it, developer tools will still warn you about it not being supported elsewhere: Other than that, it's quite a simple quality-of-life addition to a website which sometimes features very long posts.

Using CSS to Add A Reading Progress Bar To My Site
Author: Ben Tasker

www.bentasker.co.uk/posts/documentation/gene...

#css #html #webdesign

0 0 0 0
Preview
Code and Carbon:BYTES

I have a feeling there is going to be lots more of these...
#code #python #ai #html #css

nyx85.neocities.org/codeandcarbo...

1 0 0 0
Social Sprites Icons

Social Sprites Icons

Social Sprites Icons

https://code.stylelib.org/?p=19647

#codecanyon #css #facebook #media

0 0 0 0
🎯 CSS Battle Dimanche, 29 Mars 2026 - Costa Pacifica ! 🚢
🎯 CSS Battle Dimanche, 29 Mars 2026 - Costa Pacifica ! 🚢 YouTube video by Olivier Maghe

🎯 CSS Battle Dimanche, 29 Mars 2026 - Costa Pacifica ! 🚢

En direct du pont 4 du Costa Pacifica ! 🚢
youtu.be/2G5Q97PiC_4
#CSSBattleChallenge #CSSBattle #CSS #codingLife #webdev #BoxShadow #CSSLayout #CodeGolfing #WebDevelopment #DailyChallenge #100Percent #cssinfrench

1 0 0 0
Preview
❐AIの要約➡️サイトデザインをBootstrapからTailwindに変更し機能は継続。10年経過のブログを高速化・分離検討中、Laravelで独自管理構築も計画。… ❐AIの要約➡️サイトデザインをBootstrapからTailwindに変更し機能は継続。10年経過のブログを高速化・分離検討中、Laravelで独自管理構築も計画。…

❐AIの要約➡️サイトデザインをBootstrapからTailwindに変更し機能は継続。10年経過のブログを高速化・分離検討中、Laravelで独自管理構築も計画。…

zip358.com/2026/02/02/何の前触れも...
#blog #css #Laravel #オリジナル #お気づき #ここら #サイト #そう

0 0 0 0
Preview
❐AIの要約➡️サイトデザインをBootstrapからTailwindに変更し機能は継続。10年経過のブログを高速化・分離検討中、Laravelで独自管理構築も計画。… ❐AIの要約➡️サイトデザインをBootstrapからTailwindに変更し機能は継続。10年経過のブログを高速化・分離検討中、Laravelで独自管理構築も計画。…

❐AIの要約➡️サイトデザインをBootstrapからTailwindに変更し機能は継続。10年経過のブログを高速化・分離検討中、Laravelで独自管理構築も計画。…

zip358.com/2026/02/02/何の前触れも...
#blog #css #Laravel #オリジナル #お気づき #ここら #サイト #そう

0 0 0 0
Tangerine Ui

Tangerine Ui

Mastodon-Bird-Ui

Mastodon-Bird-Ui

使用的是:github.com/ronilaukkarinen/mastodon...
因为发现使用:github.com/ronilaukkarinen/mastodon... 会有错误

#Css #Theme #Mastodon #Tangerine_Ui #Mastodon_Bird_Ui

0 0 0 0
Preview
❐AIの要約➡️サイトデザインをBootstrapからTailwindに変更し機能は継続。10年経過のブログを高速化・分離検討中、Laravelで独自管理構築も計画。… ❐AIの要約➡️サイトデザインをBootstrapからTailwindに変更し機能は継続。10年経過のブログを高速化・分離検討中、Laravelで独自管理構築も計画。…

❐AIの要約➡️サイトデザインをBootstrapからTailwindに変更し機能は継続。10年経過のブログを高速化・分離検討中、Laravelで独自管理構築も計画。…

zip358.com/2026/02/02/何の前触れも...
#blog #css #Laravel #オリジナル #お気づき #ここら #サイト #そう

0 0 0 0
Preview
❐AIの要約➡️サイトデザインをBootstrapからTailwindに変更し機能は継続。10年経過のブログを高速化・分離検討中、Laravelで独自管理構築も計画。… ❐AIの要約➡️サイトデザインをBootstrapからTailwindに変更し機能は継続。10年経過のブログを高速化・分離検討中、Laravelで独自管理構築も計画。…

❐AIの要約➡️サイトデザインをBootstrapからTailwindに変更し機能は継続。10年経過のブログを高速化・分離検討中、Laravelで独自管理構築も計画。…

zip358.com/2026/02/02/何の前触れも...
#blog #css #Laravel #オリジナル #お気づき #ここら #サイト #そう

0 0 0 0
Preview
❐AIの要約➡️サイトデザインをBootstrapからTailwindに変更し機能は継続。10年経過のブログを高速化・分離検討中、Laravelで独自管理構築も計画。… ❐AIの要約➡️サイトデザインをBootstrapからTailwindに変更し機能は継続。10年経過のブログを高速化・分離検討中、Laravelで独自管理構築も計画。…

❐AIの要約➡️サイトデザインをBootstrapからTailwindに変更し機能は継続。10年経過のブログを高速化・分離検討中、Laravelで独自管理構築も計画。…

zip358.com/2026/02/02/何の前触れも...
#blog #css #Laravel #オリジナル #お気づき #ここら #サイト #そう

0 0 0 0
Preview
Let’s Make Love and Listen to Death From Above, by CSS from the album Nova Tunes 1․6


🇺🇦 #NowPlaying on #KEXP's #VarietyMix

CSS:
🎵 Let’s Make Love and Listen to Death From Above

#CSS

▶️ 🪄 Automagic 🔊 show 📻 playlist on Spotify

▶️ Song/Cover on #Bandcamp:

0 0 0 0
Preview
❐AIの要約➡️サイトデザインをBootstrapからTailwindに変更し機能は継続。10年経過のブログを高速化・分離検討中、Laravelで独自管理構築も計画。… ❐AIの要約➡️サイトデザインをBootstrapからTailwindに変更し機能は継続。10年経過のブログを高速化・分離検討中、Laravelで独自管理構築も計画。…

❐AIの要約➡️サイトデザインをBootstrapからTailwindに変更し機能は継続。10年経過のブログを高速化・分離検討中、Laravelで独自管理構築も計画。…

zip358.com/2026/02/02/何の前触れも...
#blog #css #Laravel #オリジナル #お気づき #ここら #サイト #そう

0 0 0 0
Preview
❐AIの要約➡️サイトデザインをBootstrapからTailwindに変更し機能は継続。10年経過のブログを高速化・分離検討中、Laravelで独自管理構築も計画。… ❐AIの要約➡️サイトデザインをBootstrapからTailwindに変更し機能は継続。10年経過のブログを高速化・分離検討中、Laravelで独自管理構築も計画。…

❐AIの要約➡️サイトデザインをBootstrapからTailwindに変更し機能は継続。10年経過のブログを高速化・分離検討中、Laravelで独自管理構築も計画。…

zip358.com/2026/02/02/何の前触れも...
#blog #css #Laravel #オリジナル #お気づき #ここら #サイト #そう

0 0 0 0
Preview
Chrome Extension Auto-Book date PHP & HTML Projects for ₹12500-37500 INR. I need a lightweight Chrome extension that logs in to a specific website, keeps an eye on appointment availability, and the mome



#API #Integration #CSS #Google #Chrome #HTML #JavaScript #PHP #Software #Architecture #Web

Origin | Interest | Match

0 0 0 0
Preview
GitHub - NielsLeenheer/cssDOOM: A DOOM engine implemented in CSS A DOOM engine implemented in CSS. Contribute to NielsLeenheer/cssDOOM development by creating an account on GitHub.

And it works perfectly on Firefox Android. 🤘🏽🤘🏽🤘🏽

#css #webdev #oss #doom #gaming

https://github.com/NielsLeenheer/cssDOOM

0 1 0 0
Original post on toolsforthought.social

Yo, this is so cool. A recreation of the original DOOM rendered entirely with CSS. This isn't <canvas> or WebGL — every wall, floor, sprite, and effect is a styled DOM element positioned in 3D space via CSS transforms and preserve-3d.

Game logic written in js.

And it works perfectly on Firefox […]

1 2 0 0
Preview
Chrome Extension Auto-Book appointments PHP & HTML Projects for ₹12500-37500 INR. I need a lightweight Chrome extension that logs in to a specific website, keeps an eye on appointment availability, and the mome



#API #Integration #CSS #Google #Chrome #HTML #JavaScript #PHP #Software #Architecture #Web

Origin | Interest | Match

1 0 0 0
Bramus Van Damme - Anchors aweigh! Tethering Elements in Pure CSS with Anchor Positioning.
Bramus Van Damme - Anchors aweigh! Tethering Elements in Pure CSS with Anchor Positioning. YouTube video by London Web Standards

Anchors aweigh! Tethering Elements in Pure #CSS with Anchor Positioning youtu.be/VD_q3x9GnZs

1 0 0 0
Preview
Universal Translator Web Application Development PHP & HTML Projects for min ₹2500 INR / hour. • Need a modern full-stack Universal Translator web application • The app should translate text between 35+ languages • Au



#CSS #HTML #JavaScript #Mobile #App #Development #MySQL #Node.js #PhoneGap #PHP

Origin | Interest | Match

1 0 0 0
Preview
❐AIの要約➡️サイトデザインをBootstrapからTailwindに変更し機能は継続。10年経過のブログを高速化・分離検討中、Laravelで独自管理構築も計画。… ❐AIの要約➡️サイトデザインをBootstrapからTailwindに変更し機能は継続。10年経過のブログを高速化・分離検討中、Laravelで独自管理構築も計画。…

❐AIの要約➡️サイトデザインをBootstrapからTailwindに変更し機能は継続。10年経過のブログを高速化・分離検討中、Laravelで独自管理構築も計画。…

zip358.com/2026/02/02/何の前触れも...
#blog #css #Laravel #オリジナル #お気づき #ここら #サイト #そう

0 0 0 0
Preview
11 Essential Skills Every Modern Frontend Developer Must Master — Noor Mohammad Post by Noor Mohammad

Still using media queries for absolutely everything and relying on endless <div> tags? It might be time to level up your fundamentals. 🚀

Check out the full guide here 👇
buymeacoffee.com/reactbd/11-e...

#frontend #webdev #javascript #css #accessibility #programming

2 0 0 0
Preview
❐AIの要約➡️サイトデザインをBootstrapからTailwindに変更し機能は継続。10年経過のブログを高速化・分離検討中、Laravelで独自管理構築も計画。… ❐AIの要約➡️サイトデザインをBootstrapからTailwindに変更し機能は継続。10年経過のブログを高速化・分離検討中、Laravelで独自管理構築も計画。…

❐AIの要約➡️サイトデザインをBootstrapからTailwindに変更し機能は継続。10年経過のブログを高速化・分離検討中、Laravelで独自管理構築も計画。…

zip358.com/2026/02/02/何の前触れも...
#blog #css #Laravel #オリジナル #お気づき #ここら #サイト #そう

0 0 0 0
Video

Ok, colors finalized and tested, everything is AA passing. Added names for each theme, little IP safe easter eggs. IYKYK.

#css #javascript #localstorage #a11y #modes #themes #warhammer #miniaturepainting #websites

7 0 0 0