santycss 2.5.0 → 2.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +60 -2
- package/dist/santy-animations.css +4 -1
- package/dist/santy-borders.css +243 -0
- package/dist/santy-colors.css +1569 -0
- package/dist/santy-components.css +229 -0
- package/dist/santy-core.css +30 -0
- package/dist/santy-effects.css +283 -0
- package/dist/santy-flex.css +91 -0
- package/dist/santy-grid.css +56 -0
- package/dist/santy-layout.css +1001 -0
- package/dist/santy-reset.css +42 -0
- package/dist/santy-sizing.css +243 -0
- package/dist/santy-spacing.css +640 -0
- package/dist/santy-start.css +258 -0
- package/dist/santy-typography.css +161 -0
- package/dist/santy.css +38 -0
- package/index.js +40 -19
- package/package.json +11 -1
package/README.md
CHANGED
|
@@ -21,11 +21,69 @@ Class names read like sentences — `add-padding-24` instead of `p-6`. AI tools
|
|
|
21
21
|
|
|
22
22
|
---
|
|
23
23
|
|
|
24
|
+
## What's New in v2.6.1
|
|
25
|
+
|
|
26
|
+
### 🎨 4 New Industry Templates
|
|
27
|
+
|
|
28
|
+
Four production-ready, full-page HTML templates built entirely with SantyCSS — copy, paste, done.
|
|
29
|
+
|
|
30
|
+
- **MERIDIAN Academy** — Full 7-page school website: Home (live ticker, hero, events, notifications preview), About (timeline, facilities), Academics (tabbed grade levels, board result bars), Admissions (fee table, application form, FAQ), Faculty (department filter, hover cards), Events (type-filtered calendar), and a **grade-filtered Notifications hub** — All / Grade 1–2 / 3–5 / 6–8 / 9–10 / 11–12 / Staff — with search, sidebar, and 16 real notices
|
|
31
|
+
- **AURUM Studio** — Luxury dark salon: gold accent, serif typography, animated gold marquee strip, 6 service cards, stylist team with hover overlays, photo gallery, testimonials, booking CTA
|
|
32
|
+
- **OPTIXA Vision Center** — Sci-fi eye clinic: animated SVG iris ring, CSS scanline body overlay, cyan glow, concentric tech animation section, doctor cards, testimonials
|
|
33
|
+
- **IRONFORGE Brewing Co.** — Dark industrial craft brewery: amber/copper palette, ember marquee strip, 6-tap beer list with ABV/IBU stats, 6-step brewing process grid, events list, newsletter CTA
|
|
34
|
+
|
|
35
|
+
All templates use SantyCSS utility classes + Unsplash images. Zero external UI dependencies.
|
|
36
|
+
|
|
37
|
+
→ **[Browse all 13 templates](https://santycss.santy.in/templates.html)**
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## What's New in v2.6.0
|
|
42
|
+
|
|
43
|
+
### ⚡ Granular Module Imports
|
|
44
|
+
|
|
45
|
+
Import only the CSS you need — reduces bundle size significantly.
|
|
46
|
+
|
|
47
|
+
```js
|
|
48
|
+
import 'santycss/css/flex';
|
|
49
|
+
import 'santycss/css/spacing';
|
|
50
|
+
import 'santycss/css/typography';
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
- **10 module files** in `dist/`: reset, layout, flex, grid, spacing, sizing, typography, colors, borders, effects
|
|
54
|
+
- **Package exports map** — all 10 modules as `./css/<name>` subpaths for bundlers & Vite
|
|
55
|
+
- **`index.js` path helpers** — `santy.flex`, `santy.spacing`, `santy.typography`, etc.
|
|
56
|
+
|
|
57
|
+
---
|
|
58
|
+
|
|
59
|
+
## What's New in v2.5.1
|
|
60
|
+
|
|
61
|
+
### ⚡ Code Snippets Page
|
|
62
|
+
|
|
63
|
+
New interactive snippets library at `snippets.html` — browse and copy SantyCSS component code.
|
|
64
|
+
|
|
65
|
+
- **8 categories** in dark sidebar — Flex, Grid, Buttons, Badges, Cards, Typography, Forms, Nav
|
|
66
|
+
- **40+ ready-to-use snippets** built entirely with SantyCSS utility classes (no custom CSS)
|
|
67
|
+
- **Card variants**: Stat, Sponsor, Pricing, Cookie Notice, Image Hover, Blog Post, Feature, Dark Pricing, Free vs Pro, Profile, Ribbon, About Me, Dark Profile, Article+Author, Horizontal
|
|
68
|
+
- **Live preview + code modal** — click any card to open a new tab with full preview and syntax-highlighted code
|
|
69
|
+
- **Copy button** — one-click clipboard copy in the preview tab
|
|
70
|
+
|
|
71
|
+
---
|
|
72
|
+
|
|
24
73
|
## What's New in v2.5.0
|
|
25
74
|
|
|
26
|
-
### 🎨
|
|
75
|
+
### 🎨 Three Portfolio Templates + Framework Fixes
|
|
76
|
+
|
|
77
|
+
Three production-ready portfolio templates built entirely with SantyCSS — no custom CSS.
|
|
27
78
|
|
|
28
|
-
|
|
79
|
+
**New Template 3: `itsme.html` — It's Me Creative Portfolio**
|
|
80
|
+
- **5 sections** — Home (hero + profile ring), Resume (bio, services, timeline, skills, testimonials), Works (filterable grid), Blog, Contact
|
|
81
|
+
- **Sticky horizontal nav** — active highlight on scroll, hamburger mobile menu
|
|
82
|
+
- **Orange accent** (`#f97316`) on clean white background
|
|
83
|
+
- **6 service cards** with hover lift, 2 dual timelines (education + experience), 5+5 animated skill bars
|
|
84
|
+
- **Portfolio filter** — All / Web / Graphic / Motion with instant show/hide
|
|
85
|
+
- **6 blog cards** with category tags (web/graphic/motion), hover scale
|
|
86
|
+
- **Contact form** — 5 fields + success feedback without page reload
|
|
29
87
|
|
|
30
88
|
**New Template 1: `portfolio.html` — Snap-Scroll**
|
|
31
89
|
- **6 sections** — About (with profile image & typewriter), Experience (timeline), Skills (animated progress bars), Projects (card grid), Hobbies, Blogs
|
|
@@ -0,0 +1,243 @@
|
|
|
1
|
+
/* SantyCSS — borders module
|
|
2
|
+
Import individually to reduce bundle size.
|
|
3
|
+
https://santycss.santy.in */
|
|
4
|
+
|
|
5
|
+
/* ── Border Width ── */
|
|
6
|
+
.add-border-0 { border: 0px solid; }
|
|
7
|
+
.add-border-top-0 { border-top: 0px solid; }
|
|
8
|
+
.add-border-bottom-0 { border-bottom: 0px solid; }
|
|
9
|
+
.add-border-left-0 { border-left: 0px solid; }
|
|
10
|
+
.add-border-right-0 { border-right: 0px solid; }
|
|
11
|
+
.add-border-x-0 { border-left: 0px solid; border-right: 0px solid; }
|
|
12
|
+
.add-border-y-0 { border-top: 0px solid; border-bottom: 0px solid; }
|
|
13
|
+
.add-border-1 { border: 1px solid; }
|
|
14
|
+
.add-border-top-1 { border-top: 1px solid; }
|
|
15
|
+
.add-border-bottom-1 { border-bottom: 1px solid; }
|
|
16
|
+
.add-border-left-1 { border-left: 1px solid; }
|
|
17
|
+
.add-border-right-1 { border-right: 1px solid; }
|
|
18
|
+
.add-border-x-1 { border-left: 1px solid; border-right: 1px solid; }
|
|
19
|
+
.add-border-y-1 { border-top: 1px solid; border-bottom: 1px solid; }
|
|
20
|
+
.add-border-2 { border: 2px solid; }
|
|
21
|
+
.add-border-top-2 { border-top: 2px solid; }
|
|
22
|
+
.add-border-bottom-2 { border-bottom: 2px solid; }
|
|
23
|
+
.add-border-left-2 { border-left: 2px solid; }
|
|
24
|
+
.add-border-right-2 { border-right: 2px solid; }
|
|
25
|
+
.add-border-x-2 { border-left: 2px solid; border-right: 2px solid; }
|
|
26
|
+
.add-border-y-2 { border-top: 2px solid; border-bottom: 2px solid; }
|
|
27
|
+
.add-border-3 { border: 3px solid; }
|
|
28
|
+
.add-border-top-3 { border-top: 3px solid; }
|
|
29
|
+
.add-border-bottom-3 { border-bottom: 3px solid; }
|
|
30
|
+
.add-border-left-3 { border-left: 3px solid; }
|
|
31
|
+
.add-border-right-3 { border-right: 3px solid; }
|
|
32
|
+
.add-border-x-3 { border-left: 3px solid; border-right: 3px solid; }
|
|
33
|
+
.add-border-y-3 { border-top: 3px solid; border-bottom: 3px solid; }
|
|
34
|
+
.add-border-4 { border: 4px solid; }
|
|
35
|
+
.add-border-top-4 { border-top: 4px solid; }
|
|
36
|
+
.add-border-bottom-4 { border-bottom: 4px solid; }
|
|
37
|
+
.add-border-left-4 { border-left: 4px solid; }
|
|
38
|
+
.add-border-right-4 { border-right: 4px solid; }
|
|
39
|
+
.add-border-x-4 { border-left: 4px solid; border-right: 4px solid; }
|
|
40
|
+
.add-border-y-4 { border-top: 4px solid; border-bottom: 4px solid; }
|
|
41
|
+
.add-border-5 { border: 5px solid; }
|
|
42
|
+
.add-border-top-5 { border-top: 5px solid; }
|
|
43
|
+
.add-border-bottom-5 { border-bottom: 5px solid; }
|
|
44
|
+
.add-border-left-5 { border-left: 5px solid; }
|
|
45
|
+
.add-border-right-5 { border-right: 5px solid; }
|
|
46
|
+
.add-border-x-5 { border-left: 5px solid; border-right: 5px solid; }
|
|
47
|
+
.add-border-y-5 { border-top: 5px solid; border-bottom: 5px solid; }
|
|
48
|
+
.add-border-6 { border: 6px solid; }
|
|
49
|
+
.add-border-top-6 { border-top: 6px solid; }
|
|
50
|
+
.add-border-bottom-6 { border-bottom: 6px solid; }
|
|
51
|
+
.add-border-left-6 { border-left: 6px solid; }
|
|
52
|
+
.add-border-right-6 { border-right: 6px solid; }
|
|
53
|
+
.add-border-x-6 { border-left: 6px solid; border-right: 6px solid; }
|
|
54
|
+
.add-border-y-6 { border-top: 6px solid; border-bottom: 6px solid; }
|
|
55
|
+
.add-border-8 { border: 8px solid; }
|
|
56
|
+
.add-border-top-8 { border-top: 8px solid; }
|
|
57
|
+
.add-border-bottom-8 { border-bottom: 8px solid; }
|
|
58
|
+
.add-border-left-8 { border-left: 8px solid; }
|
|
59
|
+
.add-border-right-8 { border-right: 8px solid; }
|
|
60
|
+
.add-border-x-8 { border-left: 8px solid; border-right: 8px solid; }
|
|
61
|
+
.add-border-y-8 { border-top: 8px solid; border-bottom: 8px solid; }
|
|
62
|
+
.add-border-10 { border: 10px solid; }
|
|
63
|
+
.add-border-top-10 { border-top: 10px solid; }
|
|
64
|
+
.add-border-bottom-10 { border-bottom: 10px solid; }
|
|
65
|
+
.add-border-left-10 { border-left: 10px solid; }
|
|
66
|
+
.add-border-right-10 { border-right: 10px solid; }
|
|
67
|
+
.add-border-x-10 { border-left: 10px solid; border-right: 10px solid; }
|
|
68
|
+
.add-border-y-10 { border-top: 10px solid; border-bottom: 10px solid; }
|
|
69
|
+
.add-border-12 { border: 12px solid; }
|
|
70
|
+
.add-border-top-12 { border-top: 12px solid; }
|
|
71
|
+
.add-border-bottom-12 { border-bottom: 12px solid; }
|
|
72
|
+
.add-border-left-12 { border-left: 12px solid; }
|
|
73
|
+
.add-border-right-12 { border-right: 12px solid; }
|
|
74
|
+
.add-border-x-12 { border-left: 12px solid; border-right: 12px solid; }
|
|
75
|
+
.add-border-y-12 { border-top: 12px solid; border-bottom: 12px solid; }
|
|
76
|
+
.add-border-16 { border: 16px solid; }
|
|
77
|
+
.add-border-top-16 { border-top: 16px solid; }
|
|
78
|
+
.add-border-bottom-16 { border-bottom: 16px solid; }
|
|
79
|
+
.add-border-left-16 { border-left: 16px solid; }
|
|
80
|
+
.add-border-right-16 { border-right: 16px solid; }
|
|
81
|
+
.add-border-x-16 { border-left: 16px solid; border-right: 16px solid; }
|
|
82
|
+
.add-border-y-16 { border-top: 16px solid; border-bottom: 16px solid; }
|
|
83
|
+
.add-border-20 { border: 20px solid; }
|
|
84
|
+
.add-border-top-20 { border-top: 20px solid; }
|
|
85
|
+
.add-border-bottom-20 { border-bottom: 20px solid; }
|
|
86
|
+
.add-border-left-20 { border-left: 20px solid; }
|
|
87
|
+
.add-border-right-20 { border-right: 20px solid; }
|
|
88
|
+
.add-border-x-20 { border-left: 20px solid; border-right: 20px solid; }
|
|
89
|
+
.add-border-y-20 { border-top: 20px solid; border-bottom: 20px solid; }
|
|
90
|
+
.add-border-24 { border: 24px solid; }
|
|
91
|
+
.add-border-top-24 { border-top: 24px solid; }
|
|
92
|
+
.add-border-bottom-24 { border-bottom: 24px solid; }
|
|
93
|
+
.add-border-left-24 { border-left: 24px solid; }
|
|
94
|
+
.add-border-right-24 { border-right: 24px solid; }
|
|
95
|
+
.add-border-x-24 { border-left: 24px solid; border-right: 24px solid; }
|
|
96
|
+
.add-border-y-24 { border-top: 24px solid; border-bottom: 24px solid; }
|
|
97
|
+
.add-border-28 { border: 28px solid; }
|
|
98
|
+
.add-border-top-28 { border-top: 28px solid; }
|
|
99
|
+
.add-border-bottom-28 { border-bottom: 28px solid; }
|
|
100
|
+
.add-border-left-28 { border-left: 28px solid; }
|
|
101
|
+
.add-border-right-28 { border-right: 28px solid; }
|
|
102
|
+
.add-border-x-28 { border-left: 28px solid; border-right: 28px solid; }
|
|
103
|
+
.add-border-y-28 { border-top: 28px solid; border-bottom: 28px solid; }
|
|
104
|
+
.add-border-32 { border: 32px solid; }
|
|
105
|
+
.add-border-top-32 { border-top: 32px solid; }
|
|
106
|
+
.add-border-bottom-32 { border-bottom: 32px solid; }
|
|
107
|
+
.add-border-left-32 { border-left: 32px solid; }
|
|
108
|
+
.add-border-right-32 { border-right: 32px solid; }
|
|
109
|
+
.add-border-x-32 { border-left: 32px solid; border-right: 32px solid; }
|
|
110
|
+
.add-border-y-32 { border-top: 32px solid; border-bottom: 32px solid; }
|
|
111
|
+
.add-border-40 { border: 40px solid; }
|
|
112
|
+
.add-border-top-40 { border-top: 40px solid; }
|
|
113
|
+
.add-border-bottom-40 { border-bottom: 40px solid; }
|
|
114
|
+
.add-border-left-40 { border-left: 40px solid; }
|
|
115
|
+
.add-border-right-40 { border-right: 40px solid; }
|
|
116
|
+
.add-border-x-40 { border-left: 40px solid; border-right: 40px solid; }
|
|
117
|
+
.add-border-y-40 { border-top: 40px solid; border-bottom: 40px solid; }
|
|
118
|
+
.add-border-48 { border: 48px solid; }
|
|
119
|
+
.add-border-top-48 { border-top: 48px solid; }
|
|
120
|
+
.add-border-bottom-48 { border-bottom: 48px solid; }
|
|
121
|
+
.add-border-left-48 { border-left: 48px solid; }
|
|
122
|
+
.add-border-right-48 { border-right: 48px solid; }
|
|
123
|
+
.add-border-x-48 { border-left: 48px solid; border-right: 48px solid; }
|
|
124
|
+
.add-border-y-48 { border-top: 48px solid; border-bottom: 48px solid; }
|
|
125
|
+
|
|
126
|
+
/* ── Border Style ── */
|
|
127
|
+
.border-solid { border-style: solid; }
|
|
128
|
+
.border-dashed { border-style: dashed; }
|
|
129
|
+
.border-dotted { border-style: dotted; }
|
|
130
|
+
.border-double { border-style: double; }
|
|
131
|
+
.border-hidden { border-style: hidden; }
|
|
132
|
+
.border-none { border-style: none; }
|
|
133
|
+
|
|
134
|
+
/* ── Border Radius ── */
|
|
135
|
+
.round-corners-0 { border-radius: 0px; }
|
|
136
|
+
.round-corners-2 { border-radius: 2px; }
|
|
137
|
+
.round-corners-4 { border-radius: 4px; }
|
|
138
|
+
.round-corners-6 { border-radius: 6px; }
|
|
139
|
+
.round-corners-8 { border-radius: 8px; }
|
|
140
|
+
.round-corners-10 { border-radius: 10px; }
|
|
141
|
+
.round-corners-12 { border-radius: 12px; }
|
|
142
|
+
.round-corners-14 { border-radius: 14px; }
|
|
143
|
+
.round-corners-16 { border-radius: 16px; }
|
|
144
|
+
.round-corners-18 { border-radius: 18px; }
|
|
145
|
+
.round-corners-20 { border-radius: 20px; }
|
|
146
|
+
.round-corners-24 { border-radius: 24px; }
|
|
147
|
+
.round-corners-28 { border-radius: 28px; }
|
|
148
|
+
.round-corners-32 { border-radius: 32px; }
|
|
149
|
+
.round-corners-36 { border-radius: 36px; }
|
|
150
|
+
.round-corners-40 { border-radius: 40px; }
|
|
151
|
+
.round-corners-48 { border-radius: 48px; }
|
|
152
|
+
.round-corners-56 { border-radius: 56px; }
|
|
153
|
+
.round-corners-64 { border-radius: 64px; }
|
|
154
|
+
.round-corners-72 { border-radius: 72px; }
|
|
155
|
+
.round-corners-96 { border-radius: 96px; }
|
|
156
|
+
.round-corners-128 { border-radius: 128px; }
|
|
157
|
+
.make-circle { border-radius: 50%; }
|
|
158
|
+
.make-pill { border-radius: 9999px; }
|
|
159
|
+
.round-top-0 { border-top-left-radius: 0; border-top-right-radius: 0; }
|
|
160
|
+
.round-top-2 { border-top-left-radius: 2px; border-top-right-radius: 2px; }
|
|
161
|
+
.round-bottom-2 { border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; }
|
|
162
|
+
.round-left-2 { border-top-left-radius: 2px; border-bottom-left-radius: 2px; }
|
|
163
|
+
.round-right-2 { border-top-right-radius: 2px; border-bottom-right-radius: 2px; }
|
|
164
|
+
.round-top-4 { border-top-left-radius: 4px; border-top-right-radius: 4px; }
|
|
165
|
+
.round-bottom-4 { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; }
|
|
166
|
+
.round-left-4 { border-top-left-radius: 4px; border-bottom-left-radius: 4px; }
|
|
167
|
+
.round-right-4 { border-top-right-radius: 4px; border-bottom-right-radius: 4px; }
|
|
168
|
+
.round-top-6 { border-top-left-radius: 6px; border-top-right-radius: 6px; }
|
|
169
|
+
.round-bottom-6 { border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; }
|
|
170
|
+
.round-left-6 { border-top-left-radius: 6px; border-bottom-left-radius: 6px; }
|
|
171
|
+
.round-right-6 { border-top-right-radius: 6px; border-bottom-right-radius: 6px; }
|
|
172
|
+
.round-top-8 { border-top-left-radius: 8px; border-top-right-radius: 8px; }
|
|
173
|
+
.round-bottom-8 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; }
|
|
174
|
+
.round-left-8 { border-top-left-radius: 8px; border-bottom-left-radius: 8px; }
|
|
175
|
+
.round-right-8 { border-top-right-radius: 8px; border-bottom-right-radius: 8px; }
|
|
176
|
+
.round-top-10 { border-top-left-radius: 10px; border-top-right-radius: 10px; }
|
|
177
|
+
.round-bottom-10 { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; }
|
|
178
|
+
.round-left-10 { border-top-left-radius: 10px; border-bottom-left-radius: 10px; }
|
|
179
|
+
.round-right-10 { border-top-right-radius: 10px; border-bottom-right-radius: 10px; }
|
|
180
|
+
.round-top-12 { border-top-left-radius: 12px; border-top-right-radius: 12px; }
|
|
181
|
+
.round-bottom-12 { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; }
|
|
182
|
+
.round-left-12 { border-top-left-radius: 12px; border-bottom-left-radius: 12px; }
|
|
183
|
+
.round-right-12 { border-top-right-radius: 12px; border-bottom-right-radius: 12px; }
|
|
184
|
+
.round-top-14 { border-top-left-radius: 14px; border-top-right-radius: 14px; }
|
|
185
|
+
.round-bottom-14 { border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; }
|
|
186
|
+
.round-left-14 { border-top-left-radius: 14px; border-bottom-left-radius: 14px; }
|
|
187
|
+
.round-right-14 { border-top-right-radius: 14px; border-bottom-right-radius: 14px; }
|
|
188
|
+
.round-top-16 { border-top-left-radius: 16px; border-top-right-radius: 16px; }
|
|
189
|
+
.round-bottom-16 { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; }
|
|
190
|
+
.round-left-16 { border-top-left-radius: 16px; border-bottom-left-radius: 16px; }
|
|
191
|
+
.round-right-16 { border-top-right-radius: 16px; border-bottom-right-radius: 16px; }
|
|
192
|
+
.round-top-18 { border-top-left-radius: 18px; border-top-right-radius: 18px; }
|
|
193
|
+
.round-bottom-18 { border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; }
|
|
194
|
+
.round-left-18 { border-top-left-radius: 18px; border-bottom-left-radius: 18px; }
|
|
195
|
+
.round-right-18 { border-top-right-radius: 18px; border-bottom-right-radius: 18px; }
|
|
196
|
+
.round-top-20 { border-top-left-radius: 20px; border-top-right-radius: 20px; }
|
|
197
|
+
.round-bottom-20 { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; }
|
|
198
|
+
.round-left-20 { border-top-left-radius: 20px; border-bottom-left-radius: 20px; }
|
|
199
|
+
.round-right-20 { border-top-right-radius: 20px; border-bottom-right-radius: 20px; }
|
|
200
|
+
.round-top-24 { border-top-left-radius: 24px; border-top-right-radius: 24px; }
|
|
201
|
+
.round-bottom-24 { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; }
|
|
202
|
+
.round-left-24 { border-top-left-radius: 24px; border-bottom-left-radius: 24px; }
|
|
203
|
+
.round-right-24 { border-top-right-radius: 24px; border-bottom-right-radius: 24px; }
|
|
204
|
+
.round-top-28 { border-top-left-radius: 28px; border-top-right-radius: 28px; }
|
|
205
|
+
.round-bottom-28 { border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; }
|
|
206
|
+
.round-left-28 { border-top-left-radius: 28px; border-bottom-left-radius: 28px; }
|
|
207
|
+
.round-right-28 { border-top-right-radius: 28px; border-bottom-right-radius: 28px; }
|
|
208
|
+
.round-top-32 { border-top-left-radius: 32px; border-top-right-radius: 32px; }
|
|
209
|
+
.round-bottom-32 { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; }
|
|
210
|
+
.round-left-32 { border-top-left-radius: 32px; border-bottom-left-radius: 32px; }
|
|
211
|
+
.round-right-32 { border-top-right-radius: 32px; border-bottom-right-radius: 32px; }
|
|
212
|
+
.round-top-36 { border-top-left-radius: 36px; border-top-right-radius: 36px; }
|
|
213
|
+
.round-bottom-36 { border-bottom-left-radius: 36px; border-bottom-right-radius: 36px; }
|
|
214
|
+
.round-left-36 { border-top-left-radius: 36px; border-bottom-left-radius: 36px; }
|
|
215
|
+
.round-right-36 { border-top-right-radius: 36px; border-bottom-right-radius: 36px; }
|
|
216
|
+
.round-top-40 { border-top-left-radius: 40px; border-top-right-radius: 40px; }
|
|
217
|
+
.round-bottom-40 { border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; }
|
|
218
|
+
.round-left-40 { border-top-left-radius: 40px; border-bottom-left-radius: 40px; }
|
|
219
|
+
.round-right-40 { border-top-right-radius: 40px; border-bottom-right-radius: 40px; }
|
|
220
|
+
.round-top-48 { border-top-left-radius: 48px; border-top-right-radius: 48px; }
|
|
221
|
+
.round-bottom-48 { border-bottom-left-radius: 48px; border-bottom-right-radius: 48px; }
|
|
222
|
+
.round-left-48 { border-top-left-radius: 48px; border-bottom-left-radius: 48px; }
|
|
223
|
+
.round-right-48 { border-top-right-radius: 48px; border-bottom-right-radius: 48px; }
|
|
224
|
+
.round-top-56 { border-top-left-radius: 56px; border-top-right-radius: 56px; }
|
|
225
|
+
.round-bottom-56 { border-bottom-left-radius: 56px; border-bottom-right-radius: 56px; }
|
|
226
|
+
.round-left-56 { border-top-left-radius: 56px; border-bottom-left-radius: 56px; }
|
|
227
|
+
.round-right-56 { border-top-right-radius: 56px; border-bottom-right-radius: 56px; }
|
|
228
|
+
.round-top-64 { border-top-left-radius: 64px; border-top-right-radius: 64px; }
|
|
229
|
+
.round-bottom-64 { border-bottom-left-radius: 64px; border-bottom-right-radius: 64px; }
|
|
230
|
+
.round-left-64 { border-top-left-radius: 64px; border-bottom-left-radius: 64px; }
|
|
231
|
+
.round-right-64 { border-top-right-radius: 64px; border-bottom-right-radius: 64px; }
|
|
232
|
+
.round-top-72 { border-top-left-radius: 72px; border-top-right-radius: 72px; }
|
|
233
|
+
.round-bottom-72 { border-bottom-left-radius: 72px; border-bottom-right-radius: 72px; }
|
|
234
|
+
.round-left-72 { border-top-left-radius: 72px; border-bottom-left-radius: 72px; }
|
|
235
|
+
.round-right-72 { border-top-right-radius: 72px; border-bottom-right-radius: 72px; }
|
|
236
|
+
.round-top-96 { border-top-left-radius: 96px; border-top-right-radius: 96px; }
|
|
237
|
+
.round-bottom-96 { border-bottom-left-radius: 96px; border-bottom-right-radius: 96px; }
|
|
238
|
+
.round-left-96 { border-top-left-radius: 96px; border-bottom-left-radius: 96px; }
|
|
239
|
+
.round-right-96 { border-top-right-radius: 96px; border-bottom-right-radius: 96px; }
|
|
240
|
+
.round-top-128 { border-top-left-radius: 128px; border-top-right-radius: 128px; }
|
|
241
|
+
.round-bottom-128 { border-bottom-left-radius: 128px; border-bottom-right-radius: 128px; }
|
|
242
|
+
.round-left-128 { border-top-left-radius: 128px; border-bottom-left-radius: 128px; }
|
|
243
|
+
.round-right-128 { border-top-right-radius: 128px; border-bottom-right-radius: 128px; }
|