소스 정보
- 저장소
- ffsshhttiikk/opencode-agents-skills
- 최근 소스 활동
- 2026년 2월 28일 22:49
- 감지된 SKILL.md 언어
- 영어
- 스타
- 2
- 포크
- 2
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/ffsshhttiikk/opencode-agents-skills --skill css-frameworks명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | css-frameworks |
| description | CSS frameworks for rapid UI development |
| category | web-development |
| difficulty | intermediate |
| tags | ["css","styling","responsive","ui"] |
| author | OpenCode Community |
| version | 1 |
| last_updated | 2024-01-15T00:00:00.000Z |
I am CSS Frameworks, a collection of pre-written CSS providing ready-to-use components, typography, and layout systems for building modern web interfaces. I represent standardized styling approaches including utility-first frameworks like Tailwind CSS and component-based libraries like Bootstrap. I enable developers to create responsive, accessible, and visually consistent user interfaces without writing custom CSS from scratch. I provide reset/normalize styles to ensure cross-browser consistency, grid and flexbox layouts, pre-designed components (buttons, forms, navigation), and responsive design utilities. Modern CSS frameworks offer customization through configuration files, CSS variables for theming, and modular imports to reduce bundle sizes. I help teams maintain design consistency across projects while significantly accelerating development velocity.
Utility Classes: Small, single-purpose CSS classes (e.g., flex, p-4, text-center) that combine to build designs without custom CSS.
Component Classes: Pre-designed UI elements (buttons, cards, modals) with consistent styling and behavior.
Responsive Breakpoints: Predefined viewport width thresholds for adaptive layouts (mobile, tablet, desktop).
Grid Systems: Column-based layout structures for organizing content systematically.
CSS Custom Properties: CSS variables for theming, dark mode, and dynamic styling.
Prefixing Conventions: BEM, utility prefixes, or component namespaces to prevent style collisions.
Reset/Normalize: Browser consistency styles removing default margins, padding, and inconsistencies.
<!-- Tailwind CSS - Responsive Card Component -->
<div class="min-h-screen bg-gray-100 py-12 px-4 sm:px-6 lg:px-8">
<div class="max-w-3xl mx-auto">
<div class="bg-white rounded-xl shadow-lg overflow-hidden">
<div class="md:flex">
<div class="md:flex-shrink-0">
<img class="h-48 w-full object-cover md:w-48"
src="/api/placeholder/400/400"
alt="Product image">
</div>
<div class="p-8">
<div class="uppercase tracking-wide text-sm text-indigo-500 font-semibold">
Product
</div>
<h3 class="block mt-1 text-lg leading-tight font-medium text-black">
Premium Wireless Headphones
</h3>
<p class="mt-2 text-gray-500">
Experience crystal-clear audio with our latest noise-canceling technology.
</p>
$299
Add to Cart
Card 1
Responsive grid item
<!-- Bootstrap 5 - Responsive Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
<div class="container">
<a class="navbar-brand" href="#">
<i class="bi bi-cpu me-2"></i>TechApp
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav me-auto">
<li class="nav-item">
<a class="nav-link active" href=>Home
Products
Software
Hardware
Services
Pricing
Search
Card Title
Content here
Learn More
Confirm Action
Are you sure you want to proceed?
Cancel
Confirm
/* Design Tokens - design-tokens.css */
:root {
/* Colors */
--color-primary: #3b82f6;
--color-primary-dark: #2563eb;
--color-primary-light: #60a5fa;
--color-secondary: #10b981;
--color-accent: #f59e0b;
--color-danger: #ef4444;
--color-warning: #f59e0b;
--color-success: #10b981;
/* Typography */
--font-family-base: 'Inter', system-ui, sans-serif;
--font-size-xs: 0.75rem;
--font-size-sm: 0.875rem;
--font-size-base: 1rem;
--font-size-lg: 1.125rem;
--font-size-xl: 1.25rem;
--font-size-2xl: 1.5rem;
--font-size-3xl: 1.875rem;
/* Spacing */
--spacing-1: 0.25rem;
--spacing-2: 0.5rem;
--spacing-3: 0.75rem;
--spacing-4: 1rem;
--spacing-6: 1.5rem;
--spacing-8: 2rem;
/* Border Radius */
--radius-sm: 0.25rem;
: ;
: ;
: ;
: ;
: ( / );
: - ( / );
: - ( / );
}
{
: ;
: ;
: ;
: ;
: ( / );
: - ( / );
}
(: high) {
{
: ;
: ;
: ;
}
}
/* Grid Layout System - grid.css */
.grid-container {
display: grid;
gap: var(--spacing-4);
padding: var(--spacing-4);
/* Responsive grid columns */
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
grid-auto-rows: minmax(200px, auto);
}
.grid-dashboard {
display: grid;
gap: var(--spacing-4);
grid-template-areas:
"header header"
"sidebar main"
"sidebar stats";
grid-template-columns: 250px 1fr;
grid-template-rows: auto 1fr auto;
min-height: 100vh;
}
@media (max-width: 768px) {
.grid-dashboard {
grid-template-areas:
"header"
"sidebar"
"main"
"stats";
grid-template-columns: 1fr;
}
}
.dashboard-header { grid-area: header; }
.dashboard-sidebar { grid-area: sidebar; }
{ : main; }
{ : stats; }
{
: (--color-bg-primary);
: (--radius-lg);
: (--shadow-md);
: (--spacing-);
}
{
: flex;
: space-between;
: center;
: (--spacing-);
: (--spacing-);
: solid (--color-border);
}
{
: ;
}
{
: (--spacing-);
: (--spacing-);
: solid (--color-border);
}
/* Flex Utilities - flex.css */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.justify-evenly { justify-content: space-evenly; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-baseline { align-items: baseline; }
.items-stretch { align-items: stretch; }
.gap-1 { gap: var(--spacing-1); }
.gap-2 { gap: var(--spacing-2); }
.gap-3 { gap: var(--spacing-3); }
.gap-4 { : (--spacing-); }
{ : (--spacing-); }
{ : (--spacing-); }
{ : ; }
{ : auto; }
{ : auto; }
{ : none; }
{ : ; }
{ : ; }
{ : ; }
{ : ; }
{
: ;
: auto;
: (--spacing-);
}
{
: flex;
: center;
: center;
}
{
: flex;
: ;
}
> {
: ;
: ;
}
> {
: ;
: auto;
}