You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 17, 2020. It is now read-only.
Only use available and valid CSS properties – available properties listed below
Do this:
background-color: blue;
opacity: 0.5;
box-shadow: 0 10px 20px rgba(0,0,0,.13), 0 4px 7px rgba(0,0,0,.2);
Enter them as if you are already inside your selector
Don't do this:
.my-layer {
background: blue;
opacity: 0.5;
box-shadow: 0 10px 20px rgba(0,0,0,.13),0 4px 7px rgba(0,0,0,.2);
}
but you can just clear anything outside of the {} symbol.
It's easy to do, and give us conveniency when pasting CSS codes
The text was updated successfully, but these errors were encountered:
readme.md said that
but you can just clear anything outside of the {} symbol.
It's easy to do, and give us conveniency when pasting CSS codes
The text was updated successfully, but these errors were encountered: