Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

I have added a new pattern "Diamond Ground" to it (: #22

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,33 @@ <h1>CSS3 Patterns Gallery</h1>
<li style="background-color: gray;
background-image: linear-gradient(transparent 50%, rgba(255,255,255,.5) 50%);
background-size: 50px 50px;" title="Horizontal stripes"></li>

<li style=" background:
/*shape*/
linear-gradient(115deg, transparent 89%, #e8ddcb 0) -128px -96px,
linear-gradient(-115deg, transparent 89%, #cdb380 0) 22px -96px,
linear-gradient(-115deg, #036564 11%, transparent 0) -128px 54px,
linear-gradient(115deg, #033649 11%, transparent 0) 22px 54px,

/*shape*/
linear-gradient(-25deg, #e8ddcb 11%, transparent 0) -128px -22px,
linear-gradient(25deg, transparent 89%, #cdb380 0) -128px 128px,
linear-gradient(25deg, #036564 11%, transparent 0) 22px -22px,
linear-gradient(-25deg, transparent 89%, #033649 0) 22px 128px,
/*shape*/
linear-gradient(-25deg, #e8ddcb 11%, transparent 0) -53px -96px,
linear-gradient(25deg, transparent 89%, #cdb380 0) -53px 54px,
linear-gradient(25deg, #036564 11%, transparent 0) 97px -96px,
linear-gradient(-25deg, transparent 89%, #033649 0) 97px 54px,
/*shape*/
linear-gradient(115deg, transparent 89%, #e8ddcb 0) -53px -21px,
linear-gradient(-115deg, #cdb380 11%, transparent 0) -53px 129px,
linear-gradient(-115deg, transparent 89%, #036564 0) 97px -21px,
linear-gradient(115deg, #033649 11%, transparent 0) 97px 129px;

background-color: #fff;
background-size: 150px 150px;
background-repeat: repeat;" title="Diamond Ground" data-author="Ee Venn Soh" data-author-url="http://be.net/vennsoh"></li>

</ul>

Expand Down