Base webpack config

This commit is contained in:
Jeff Avallone
2018-02-10 15:58:29 -05:00
parent c67101a209
commit d78f4efd16
10 changed files with 6356 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
<?xml version="1.0" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" width="512px" height="512px" viewBox="0 0 512 512">
<style><![CDATA[
@import url('https://fonts.googleapis.com/css?family=Bangers&text=R');
text {
font-family: 'Bangers';
font-size: 400px;
}
rect {
stroke: #000;
stroke-width: 5px;
}
]]></style>
<defs>
<radialGradient id="shade" cx="0.5" cy="0.5" fx="0.5" fy="0" r="1">
<stop stop-color="#000" stop-opacity="0.0" offset="0%" />
<stop stop-color="#000" stop-opacity="0.4" offset="100%" />
</radialGradient>
</defs>
<rect x="0" y="0" width="512" height="512" fill="#bada55"></rect>
<rect x="0" y="0" width="512" height="512" fill="url(#shade)"></rect>
<text transform="translate(0 353) translate(-103 -212) translate(256 256)">R</text>
</svg>

After

Width:  |  Height:  |  Size: 849 B

+1
View File
@@ -0,0 +1 @@
import '../../style.css';
+10
View File
@@ -0,0 +1,10 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<title>Regexper - 404</title>
</head>
<body>
<h1>404</h1>
</body>
</html>
+1
View File
@@ -0,0 +1 @@
import '../../style.css';
+10
View File
@@ -0,0 +1,10 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<title>Regexper</title>
</head>
<body>
<h1>App Content</h1>
</body>
</html>
+3
View File
@@ -0,0 +1,3 @@
body {
font-family: sans-serif;
}