1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
From: =?utf-8?q?David_Pr=C3=A9vot?= <taffit@debian.org>
Date: Sat, 12 Apr 2014 13:01:28 -0400
Subject: Do not fetch external CSS in example
---
www/test/css/reset-min.css | 8 ++++++++
www/test/css_whitespace.html | 2 +-
2 files changed, 9 insertions(+), 1 deletion(-)
create mode 100644 www/test/css/reset-min.css
diff --git a/www/test/css/reset-min.css b/www/test/css/reset-min.css
new file mode 100644
index 0000000..00c3892
--- /dev/null
+++ b/www/test/css/reset-min.css
@@ -0,0 +1,8 @@
+/*
+Copyright (c) 2010, Yahoo! Inc. All rights reserved.
+Code licensed under the BSD License:
+http://developer.yahoo.com/yui/license.html
+version: 3.3.0
+build: 3167
+*/
+html{color:#000;background:#FFF;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;font-variant:normal;}sup{vertical-align:text-top;}sub{vertical-align:text-bottom;}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}input,textarea,select{*font-size:100%;}legend{color:#000;}
\ No newline at end of file
diff --git a/www/test/css_whitespace.html b/www/test/css_whitespace.html
index 5d9ef88..2fd7806 100644
--- a/www/test/css_whitespace.html
+++ b/www/test/css_whitespace.html
@@ -4,7 +4,7 @@
<html>
<head>
<title>CSS white-space property</title>
- <link rel="Stylesheet" href="http://yui.yahooapis.com/3.3.0/build/cssreset/reset-min.css">
+ <link rel="Stylesheet" href="css/reset-min.css">
<style>
#wrap { margin:30px auto; width:600px; font-family:sans-serif; color:#444; cursor:default; }
h1 { font-size:40px; text-align:center; font-weight:bold; margin-bottom:30px; text-shadow:0 0 3px #ddd; }
|