Version: 1.1.0 Beta
gunesCSS is a modular CSS library featuring utility classes, customizable components, and lightweight animations. It's ideal for rapid frontend prototyping or as a foundation for your own CSS framework.
- Colors (
colors.css
):--blue
,--green-light
,--white-smoke
- Spacing (
spacing.css
):.m10
,.p50
,.mx
,px
- Positions (
positions.css
):.top
,.center
,.below
,...
.fade-in
,.fade-out
.bounce
,.bounceInf
.float1
,.float2
.rainbow
.float
.BTN3d
,.BTNglow
,.BTNglass
,.BTNpulse
- Includes hover and active effects
- Consistent styling for:
- Text (sizes, colors, outline)
- Links
- Inputs
<!-- Base styles -->
<link rel="stylesheet" href="./css/main.css">
<!-- Utilities -->
<link rel="stylesheet" href="./utilities/colors.css" />
<link rel="stylesheet" href="./utilities/spacing.css" />
<link rel="stylesheet" href="./utilities/positions.css" />
<!-- Components -->
<link rel="stylesheet" href="./components/button.css" />
<!-- Animations -->
<link rel="stylesheet" href="./animations/fade.css" />
<link rel="stylesheet" href="./animations/bounce.css" />
<link rel="stylesheet" href="./animations/float.css" />
<link rel="stylesheet" href="./animations/rainbow.css" />
OR
@import url('../animations/fade.css');
@import url('../folder/data.css');