- Use semantic HTML5 elements (
header
,nav
,main
,section
,article
,footer
) - Maintain proper heading hierarchy (h1-h6)
- Use descriptive
alt
attributes for images - Implement ARIA labels where necessary
- Use 2-space indentation
- Use double quotes for attributes
- Order attributes consistently: id, class, data-*
- Keep markup clean and minimal
assets/
└── scss/
├── abstracts/
│ ├── _variables.scss // Global variables
│ ├── _functions.scss // Custom functions
│ ├── _mixins.scss // Reusable mixins
│ └── _helpers.scss // Utility classes
├── base/
│ ├── _reset.scss // CSS reset
│ ├── _typography.scss // Typography rules
│ └── _base.scss // Base styles
├── components/
│ ├── _buttons.scss
│ ├── _cards.scss
│ └── _navigation.scss
├── layouts/
│ ├── _grid.scss
│ ├── _header.scss
│ └── _footer.scss
└── main.scss // Main entry file
// Brand Colors
$color-primary: #000000;
$color-secondary: #FFFFFF;
$color-accent: #007AFF;
// Semantic Colors
$color-text: #333333;
$color-text-light: #666666;
$color-background: #FFFFFF;
$color-border: #EEEEEE;
// Status Colors
$color-success: #28A745;
$color-error: #DC3545;
$color-warning: #FFC107;
$color-info: #17A2B8;
// Font Families
$font-primary: 'Inter', sans-serif;
$font-secondary: 'Arial', sans-serif;
// Font Sizes
$font-size-base: 16px;
$font-size-scale: 1.250;
$font-size-xs: 0.75rem; // 12px
$font-size-sm: 0.875rem; // 14px
$font-size-md: 1rem; // 16px
$font-size-lg: 1.25rem; // 20px
$font-size-xl: 1.5rem; // 24px
$font-size-2xl: 2rem; // 32px
// Font Weights
$font-weight-light: 300;
$font-weight-regular: 400;
$font-weight-medium: 500;
$font-weight-bold: 700;
$spacing-unit: 8px;
$spacing-xs: $spacing-unit; // 8px
$spacing-sm: $spacing-unit * 2; // 16px
$spacing-md: $spacing-unit * 3; // 24px
$spacing-lg: $spacing-unit * 4; // 32px
$spacing-xl: $spacing-unit * 5; // 40px
$breakpoints: (
'sm': 576px,
'md': 768px,
'lg': 992px,
'xl': 1200px,
'2xl': 1400px
);
// Margin
.m-0 { margin: 0; }
.m-1 { margin: $spacing-xs; }
.m-2 { margin: $spacing-sm; }
.m-3 { margin: $spacing-md; }
.m-4 { margin: $spacing-lg; }
.m-5 { margin: $spacing-xl; }
// Padding (similar pattern)
.p-0 { padding: 0; }
.p-1 { padding: $spacing-xs; }
// ... etc
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-primary { color: $color-primary; }
.text-secondary { color: $color-secondary; }
.text-accent { color: $color-accent; }
.d-flex { display: flex; }
.d-grid { display: grid; }
.d-none { display: none; }
.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }
.hidden { display: none !important; }
.visible { display: block !important; }
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
}
Standard button variants:
.btn {
display: inline-block;
padding: $spacing-sm $spacing-md;
border-radius: 4px;
font-weight: $font-weight-medium;
text-align: center;
cursor: pointer;
transition: all 0.3s ease;
&--primary {
background-color: $color-primary;
color: white;
}
&--secondary {
background-color: $color-secondary;
color: $color-primary;
border: 1px solid $color-primary;
}
&--accent {
background-color: $color-accent;
color: white;
}
}
Using CSS Grid:
.grid {
display: grid;
gap: $spacing-md;
&--2-cols { grid-template-columns: repeat(2, 1fr); }
&--3-cols { grid-template-columns: repeat(3, 1fr); }
&--4-cols { grid-template-columns: repeat(4, 1fr); }
}
-
Follow BEM naming convention
- Block:
.block
- Element:
.block__element
- Modifier:
.block--modifier
or.block__element--modifier
- Block:
-
Use mobile-first approach
.element { // Mobile styles first @include media-breakpoint-up(md) { // Tablet styles } @include media-breakpoint-up(lg) { // Desktop styles } }
-
Keep specificity low
- Avoid deep nesting (max 3 levels)
- Use classes instead of IDs for styling
- Avoid !important unless absolutely necessary
-
Optimize performance
- Use CSS custom properties for dynamic values
- Minimize redundant code
- Group related properties
- Use shorthand properties where appropriate
-
Maintain consistency
- Use the defined variables
- Follow the established patterns
- Document any exceptions or special cases