This commit is contained in:
Dana Woodman 2017-10-09 18:49:11 -07:00
parent 8d1ba2167e
commit 2317206d2f
7 changed files with 7142 additions and 6 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
node_modules

View File

@ -1,16 +1,39 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Tubb's Fire Information - Santa Rosa, Sonoma County Fire News, Resources and Contacts</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab" rel="stylesheet">
<link rel="stylesheet" href="output.css">
</head>
<body>
<div class="container">
<h1 class="display-1">Tubb's Fire Info</h1>
<p class="lead">Up to date information, resources and news regarding the Tubb's Fire in Sonoma County, California.</p>
<a class="btn btn-danger" href="https://docs.google.com/document/d/e/2PACX-1vRxWfSzFrGbHCLQ7x0ZK8sUMzTEoVMcVrl3YKt8N64j5_MqR5q7stS7kfCvWkd152NZm0reHq9aC80u/pub">Up to Date Information</a>
<div class="hero text-center">
<div class="container">
<h1 class="display-1">Tubb's Fire Info</h1>
<p class="lead">Up-to-date information, resources and news regarding the Tubb's Fire in Sonoma
County, California.</p>
<nav class='mt-5'>
<a href="#donate" class='btn btn-lg btn-success mr-3'>
<i class="fa fa-money mr-2"></i>
Donate
</a>
<a href="#find-help" class='btn btn-lg btn-warning mr-3'>
<i class="fa fa-medkit mr-2"></i>
Find Help
</a>
<a href="#volunteer" class='btn btn-lg btn-info'>
<i class="fa fa-handshake-o mr-2"></i>
Volunteer
</a>
<a class="btn btn-danger" href="https://docs.google.com/document/d/e/2PACX-1vRxWfSzFrGbHCLQ7x0ZK8sUMzTEoVMcVrl3YKt8N64j5_MqR5q7stS7kfCvWkd152NZm0reHq9aC80u/pub">Up to Date Information</a>
</nav>
</div>
</div>
</body>
</html>
</html>

5557
output.css Normal file

File diff suppressed because it is too large Load Diff

1520
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

26
package.json Normal file
View File

@ -0,0 +1,26 @@
{
"name": "tubbsfireinfo.com",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"scripts": {
"build": "node-sass styles.scss output.css",
"dev": "npm run build -- -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chimera/tubbsfireinfo.com.git"
},
"author": "Dana Woodman <dana@danawoodman.com> (http://danawoodman.com/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/chimera/tubbsfireinfo.com/issues"
},
"homepage": "https://github.com/chimera/tubbsfireinfo.com#readme",
"dependencies": {
"bootstrap": "4.0.0-beta"
},
"devDependencies": {
"node-sass": "4.5.3"
}
}

0
readme.md Normal file
View File

9
styles.scss Normal file
View File

@ -0,0 +1,9 @@
$red: #c16247;
$font-family-sans-serif: "Roboto Slab", serif;
@import "./node_modules/bootstrap/scss/bootstrap.scss";
.hero {
background: $gray-200;
padding: 5em 0;
}