Skip to content

Commit d7f66e3

Browse files
committed
update to v1
1 parent 839aa88 commit d7f66e3

36 files changed

+5844
-4792
lines changed

astro.config.mjs

Lines changed: 48 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ export default defineConfig({
3030
themes: ['github-light'],
3131
useStarlightDarkModeSwitch: false
3232
},
33-
title: 'Orbit CSS Radial Framework',
34-
description: 'Get started building an amazing cool radial UI with Orbit CSS Radial Framework',
33+
title: 'Orbit CSS radial UI composer',
34+
description: 'Get started building an amazing cool radial UI with Orbit CSS composer',
3535

3636
disable404Route: true,
3737
logo: {
@@ -63,7 +63,7 @@ export default defineConfig({
6363
}, {
6464
label: 'Guide',
6565
items: [{
66-
label: 'How does Orbit work?',
66+
label: 'Steps to create a knob',
6767
link: '/guide/'
6868
}]
6969
}, {
@@ -99,7 +99,8 @@ export default defineConfig({
9999
}, {
100100
label: 'capsule',
101101
link: '/elements/capsule/'
102-
}]
102+
},
103+
]
103104
},{
104105
label: 'Tools',
105106
items: [{
@@ -109,11 +110,51 @@ export default defineConfig({
109110
},{
110111
label: 'Auto resize',
111112
link: '/tools/orbit-resize/',
112-
113-
}]
113+
},{
114+
label: 'Colors',
115+
link: '/tools/colors/'
116+
}
117+
]
114118
}, {
115119
label: 'Examples',
116-
link: '/examples/',
120+
items: [{
121+
label: 'Progress bars',
122+
link: '/examples/progress/',
123+
124+
},{
125+
label: 'Charts',
126+
link: '/examples/charts/',
127+
},{
128+
label: 'Gauges',
129+
link: '/examples/gauges/'
130+
},{
131+
label: 'Knobs',
132+
link: '/examples/knobs/'
133+
},{
134+
label: 'Pie menues',
135+
link: '/examples/piemenu/'
136+
},{
137+
label: 'Watch faces',
138+
link: '/examples/watches/'
139+
},{
140+
label: 'Scifi',
141+
link: '/examples/scifi/'
142+
},{
143+
label: 'Chemical structures',
144+
link: '/examples/chemical_structures/'
145+
},{
146+
label: 'Calendars & time planners',
147+
link: '/examples/calendar/'
148+
},{
149+
label: 'Mandalas',
150+
link: '/examples/mandalas/'
151+
},{
152+
label: 'Dashboards',
153+
link: '/examples/dashboard/'
154+
},{
155+
label: 'Abstract orbital map',
156+
link: '/examples/abstract_map/'
157+
}]
117158

118159
}]
119160
}),

src/assets/knob.css

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
[class*=orbit] {
2+
border:none
3+
}
4+
.gradient-1 {
5+
box-shadow: inset 0px 0px 3px 2px #00000082;
6+
background: linear-gradient(0deg, rgb(158 155 155) 0%, rgb(236 236 236) 98%);
7+
}
8+
.gradient-2 {
9+
background: linear-gradient(180deg, rgb(161 161 161) 0%, rgb(255 255 255) 100%);
10+
}
11+
.indicator {
12+
height: 5px;
13+
border: none;
14+
background: var(--o-cyan);
15+
box-shadow: inset 0px 0px 0px 1px var(--o-gray-dark);
16+
}
17+
.led-off {
18+
border: none;
19+
box-shadow: inset 0px 0px 0px 1px #00000075;
20+
}
21+
.led-on {
22+
border: none;
23+
background: radial-gradient(circle, rgba(246,246,246,1) 4%, rgba(52,228,249,1) 28%, rgba(0,0,0,1) 82%, rgba(0,0,0,1) 96%);
24+
box-shadow: inset 0px 0px 0px 1px var(--o-gray-dark);
25+
}

0 commit comments

Comments
 (0)