Skip to content

Commit

Permalink
Added opacity-75 and opacity-50 classes
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohammad Ali Shahbazi authored and mdo committed Aug 3, 2020
1 parent 76ad4aa commit 5be7fe0
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions site/content/docs/5.0/utilities/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ $utilities: (
values: (
0: 0,
25: .25,
50: .5,
75: .75,
100: 1,
)
Expand All @@ -46,6 +47,9 @@ Output:
.opacity-25 {
opacity: .25;
}
.opacity-50 {
opacity: .5;
}
.opacity-75 {
opacity: .75;
}
Expand All @@ -67,6 +71,7 @@ $utilities: (
values: (
0: 0,
25: .25,
50: .5,
75: .75,
100: 1,
)
Expand All @@ -83,6 +88,9 @@ Output:
.o-25 {
opacity: .25;
}
.o-50 {
opacity: .5;
}
.o-75 {
opacity: .75;
}
Expand All @@ -103,6 +111,7 @@ $utilities: (
values: (
0: 0,
25: .25,
50: .5,
75: .75,
100: 1,
)
Expand All @@ -119,6 +128,9 @@ Output:
.opacity-25 {
opacity: .25;
}
.opacity-50 {
opacity: .5;
}
.opacity-75 {
opacity: .75;
}
Expand All @@ -132,6 +144,9 @@ Output:
.opacity-sm-25 {
opacity: .25;
}
.opacity-sm-50 {
opacity: .5;
}
.opacity-sm-75 {
opacity: .75;
}
Expand All @@ -146,6 +161,9 @@ Output:
.opacity-md-25 {
opacity: .25;
}
.opacity-md-50 {
opacity: .5;
}
.opacity-md-75 {
opacity: .75;
}
Expand All @@ -160,6 +178,9 @@ Output:
.opacity-lg-25 {
opacity: .25;
}
.opacity-lg-50 {
opacity: .5;
}
.opacity-lg-75 {
opacity: .75;
}
Expand All @@ -174,6 +195,9 @@ Output:
.opacity-xl-25 {
opacity: .25;
}
.opacity-xl-50 {
opacity: .5;
}
.opacity-xl-75 {
opacity: .75;
}
Expand Down Expand Up @@ -212,6 +236,7 @@ $utilities: (
values: (
0: 0,
25: .25,
50: .5,
75: .75,
100: 1,
)
Expand All @@ -228,6 +253,9 @@ Output:
.o-25 {
opacity: .25;
}
.o-50 {
opacity: .5;
}
.o-75 {
opacity: .75;
}
Expand All @@ -242,6 +270,9 @@ Output:
.o-print-25 {
opacity: .25;
}
.o-print-50 {
opacity: .5;
}
.o-print-75 {
opacity: .75;
}
Expand Down

0 comments on commit 5be7fe0

Please sign in to comment.