diff --git a/tests/basic.html b/tests/basic.html new file mode 100644 index 0000000..c40494a --- /dev/null +++ b/tests/basic.html @@ -0,0 +1,187 @@ + + + + + + Basic CSS3 Demos + + + + + + + +
+

border-radius

+
Cherry
+border-radius: 1em; /* Standard */ +-moz-border-radius: 1em; /* Gecko */ +-webkit-border-radius: 1em; /* WebKit */ +
+ +
+

box-shadow

+
Apple
+border-radius: 1em; +-moz-border-radius: 1em; +-webkit-border-radius: 1em; +box-shadow: #999 0 .25em .5em; +-webkit-box-shadow: #999 0 .25em .5em; +-moz-box-shadow: #999 0 .25em .5em; +
+ +
+

linear-gradient

+
Blueberry
+border-radius: 1em; +-moz-border-radius: 1em; +-webkit-border-radius: 1em; +box-shadow: #999 0 .25em .5em; +-webkit-box-shadow: #999 0 .25em .5em; +-moz-box-shadow: #999 0 .25em .5em; +background: #9CF; /* Fallback */ +background: -webkit-gradient(linear, 0 0, 0 100%, from(#9CF), to(#03C)); +background: -moz-linear-gradient(#9CF, #03C); +background: linear-gradient(#9CF, #03C); +
+ +
+

multiple background images

+
Rhubarb
+border-radius: 1em; +-moz-border-radius: 1em; +-webkit-border-radius: 1em; +box-shadow: #999 0 .25em .5em; +-webkit-box-shadow: #999 0 .25em .5em; +-moz-box-shadow: #999 0 .25em .5em; +background: url(icon-ie.png) no-repeat 50% 0 #FFF; /* Fallback */ +background: url(icon-ie.png) no-repeat 50% 0, + url(icon-firefox.png) no-repeat 0 0, + url(icon-chrome.png) no-repeat 100% 0, + url(icon-safari.png) no-repeat 0 100%, + url(icon-opera.png) no-repeat 100% 100% #FFF; +
+ +
+

border-image

+
Pumpkin
+border-radius: 1em; +-moz-border-radius: 1em; +-webkit-border-radius: 1em; +box-shadow: #999 0 .25em .5em; +-webkit-box-shadow: #999 0 .25em .5em; +-moz-box-shadow: #999 0 .25em .5em; +border-image: url(border2.png) 15 fill stretch; +-moz-border-image: url(border2.png) 15 stretch; +-webkit-border-image: url(border2.png) 15 stretch; +border: 15px solid transparent; +
+ + + + \ No newline at end of file diff --git a/tests/border2.png b/tests/border2.png new file mode 100644 index 0000000..847675c Binary files /dev/null and b/tests/border2.png differ diff --git a/tests/icon-chrome.png b/tests/icon-chrome.png new file mode 100644 index 0000000..4561c0f Binary files /dev/null and b/tests/icon-chrome.png differ diff --git a/tests/icon-firefox.png b/tests/icon-firefox.png new file mode 100644 index 0000000..b040a39 Binary files /dev/null and b/tests/icon-firefox.png differ diff --git a/tests/icon-ie.png b/tests/icon-ie.png new file mode 100644 index 0000000..3fbc32a Binary files /dev/null and b/tests/icon-ie.png differ diff --git a/tests/icon-opera.png b/tests/icon-opera.png new file mode 100644 index 0000000..704f9bc Binary files /dev/null and b/tests/icon-opera.png differ diff --git a/tests/icon-safari.png b/tests/icon-safari.png new file mode 100644 index 0000000..a30c293 Binary files /dev/null and b/tests/icon-safari.png differ