File tree Expand file tree Collapse file tree 1 file changed +74
-0
lines changed Expand file tree Collapse file tree 1 file changed +74
-0
lines changed Original file line number Diff line number Diff line change 1
1
# CSSORAMA - The Next Generation CSS Framework
2
+ ## Documentation
3
+ ### Classes
4
+ #### sr-only
5
+ position: absolute;
6
+ width: 1px;
7
+ height: 1px;
8
+ padding: 0;
9
+ margin: -1px;
10
+ overflow: hidden;
11
+ clip: rect(0, 0, 0, 0);
12
+ white-space: nowrap;
13
+ border-width: 0;
14
+ #### not-sr-only
15
+ position: static;
16
+ width: auto;
17
+ height: auto;
18
+ padding: 0;
19
+ margin: 0;
20
+ overflow: visible;
21
+ clip: auto;
22
+ white-space: normal;
23
+ #### focus-within
24
+ position: absolute;
25
+ width: 1px;
26
+ height: 1px;
27
+ padding: 0;
28
+ margin: -1px;
29
+ overflow: hidden;
30
+ clip: rect(0, 0, 0, 0);
31
+ white-space: nowrap;
32
+ border-width: 0;
33
+ #### focus
34
+ position: absolute;
35
+ width: 1px;
36
+ height: 1px;
37
+ padding: 0;
38
+ margin: -1px;
39
+ overflow: hidden;
40
+ clip: rect(0, 0, 0, 0);
41
+ white-space: nowrap;
42
+ border-width: 0;
43
+ #### pointer-events-none
44
+ pointer-events: none;
45
+ #### pointer-events-auto
46
+ pointer-events: auto;
47
+ #### visible
48
+ visibility: visible;
49
+ #### invisible
50
+ visibility: hidden;
51
+ #### static
52
+ position: static;
53
+ #### fixed
54
+ position: fixed;
55
+ #### absolute
56
+ position: absolute;
57
+ #### relative
58
+ position: relative
59
+ #### sticky
60
+ position: sticky
61
+ #### inset-0
62
+ top: 0;
63
+ right: 0;
64
+ bottom: 0;
65
+ left: 0
66
+ #### inset-1
67
+ top: .25rem;
68
+ right: .25rem;
69
+ bottom: .25rem;
70
+ left: .25rem
71
+ #### inset-2
72
+ top: .5rem;
73
+ right: .5rem;
74
+ bottom: .5rem;
75
+ left: .5rem
You can’t perform that action at this time.
0 commit comments