Skip to content

Commit b182fb7

Browse files
author
Dylan Vorster
committed
First Real import
1 parent bf5091c commit b182fb7

File tree

88 files changed

+816
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+816
-2
lines changed

.gitignore

+112
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
# Created by https://www.gitignore.io
2+
3+
4+
5+
### NetBeans ###
6+
nbproject/private/
7+
build/
8+
nbbuild/
9+
dist/
10+
nbdist/
11+
nbactions.xml
12+
nb-configuration.xml
13+
.nb-gradle/
14+
15+
16+
### OSX ###
17+
.DS_Store
18+
.AppleDouble
19+
.LSOverride
20+
21+
# Icon must end with two \r
22+
Icon
23+
24+
25+
# Thumbnails
26+
._*
27+
28+
# Files that might appear in the root of a volume
29+
.DocumentRevisions-V100
30+
.fseventsd
31+
.Spotlight-V100
32+
.TemporaryItems
33+
.Trashes
34+
.VolumeIcon.icns
35+
36+
# Directories potentially created on remote AFP share
37+
.AppleDB
38+
.AppleDesktop
39+
Network Trash Folder
40+
Temporary Items
41+
.apdisk
42+
43+
44+
### Windows ###
45+
# Windows image file caches
46+
Thumbs.db
47+
ehthumbs.db
48+
49+
# Folder config file
50+
Desktop.ini
51+
52+
# Recycle Bin used on file shares
53+
$RECYCLE.BIN/
54+
55+
# Windows Installer files
56+
*.cab
57+
*.msi
58+
*.msm
59+
*.msp
60+
61+
# Windows shortcuts
62+
*.lnk
63+
64+
65+
### Node ###
66+
# Logs
67+
logs
68+
*.log
69+
70+
# Runtime data
71+
pids
72+
*.pid
73+
*.seed
74+
75+
# Directory for instrumented libs generated by jscoverage/JSCover
76+
lib-cov
77+
78+
# Coverage directory used by tools like istanbul
79+
coverage
80+
81+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
82+
.grunt
83+
84+
# node-waf configuration
85+
.lock-wscript
86+
87+
# Compiled binary addons (http://nodejs.org/api/addons.html)
88+
build/Release
89+
90+
# Dependency directory
91+
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
92+
93+
### Sass ###
94+
.sass-cache
95+
*.css.map
96+
97+
98+
### SublimeText ###
99+
# cache files for sublime text
100+
*.tmlanguage.cache
101+
*.tmPreferences.cache
102+
*.stTheme.cache
103+
104+
# workspace files are user-specific
105+
*.sublime-workspace
106+
107+
# project files should be checked into the repository, unless a significant
108+
# proportion of contributors will probably not be using SublimeText
109+
# *.sublime-project
110+
111+
# sftp configuration file
112+
sftp-config.json

Gulpfile.js

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
var gulp = require('gulp');
2+
var sass = require('gulp-sass');
3+
var autoprefixer = require('gulp-autoprefixer');
4+
5+
gulp.task('sass', function () {
6+
gulp.src('./sass/**/*.scss')
7+
.pipe(sass().on('error', sass.logError))
8+
.pipe(autoprefixer({
9+
browsers: ['last 2 versions'],
10+
cascade: false
11+
}))
12+
.pipe(gulp.dest('./css'));
13+
});
14+
15+
gulp.task('sass:watch', function () {
16+
gulp.watch('./sass/**/*.scss', ['sass']);
17+
});
18+
19+
gulp.task('default', ['sass','sass:watch']);

css/theme.css

+72
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
* {
2+
margin: 0;
3+
padding: 0; }
4+
5+
body, html {
6+
height: 100%;
7+
background-color: #f8f8f8; }
8+
9+
.menubar {
10+
position: fixed;
11+
background: #282828;
12+
font-family: roboto;
13+
border-bottom: solid 1px rgba(0, 0, 0, 0.15);
14+
-webkit-flex-grow: 0;
15+
-ms-flex-positive: 0;
16+
flex-grow: 0;
17+
-webkit-flex-shrink: 1;
18+
-ms-flex-negative: 1;
19+
flex-shrink: 1;
20+
-webkit-align-items: center;
21+
-ms-flex-align: center;
22+
align-items: center;
23+
right: 0;
24+
left: 0;
25+
display: -webkit-flex;
26+
display: -ms-flexbox;
27+
display: flex;
28+
height: 50px; }
29+
.menubar h1 {
30+
color: white;
31+
font-weight: 300;
32+
font-size: 23px;
33+
margin-left: 20px;
34+
margin-right: 20px; }
35+
.menubar ul {
36+
display: -webkit-flex;
37+
display: -ms-flexbox;
38+
display: flex; }
39+
.menubar ul li {
40+
list-style: none; }
41+
.menubar ul li a {
42+
padding: 16px;
43+
color: white;
44+
cursor: pointer;
45+
text-decoration: none; }
46+
.menubar ul li .active {
47+
background: #f6f6f6;
48+
color: black !important; }
49+
50+
.hero {
51+
background-color: #f6f6f6;
52+
padding: 40px;
53+
padding-top: 90px;
54+
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
55+
text-align: center; }
56+
57+
.content {
58+
font-family: roboto;
59+
padding: 40px;
60+
width: 700px; }
61+
.content > * {
62+
padding-bottom: 20px; }
63+
.content ul {
64+
padding-left: 20px; }
65+
.content h1, .content h2, .content h3, .content h4 {
66+
font-weight: 300; }
67+
.content p, .content li {
68+
font-size: 13px; }
69+
.content code {
70+
background-color: white;
71+
padding: 20px;
72+
border-radius: 10px; }

index.html

+19-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,19 @@
1-
Project Sector
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Project STORM</title>
5+
<link type="text/css" rel="stylesheet" href="node_modules/roboto-font/css/fonts.css">
6+
<link type="text/css" rel="stylesheet" href="css/theme.css">
7+
</head>
8+
<body>
9+
<div class="menubar">
10+
11+
</div>
12+
<div class="hero">
13+
<img src="media/logo.png">
14+
</div>
15+
<div class="content">
16+
17+
</div>
18+
</body>
19+
</html>

media/logo.png

11.3 KB
Loading

nbproject/project.properties

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
auxiliary.org-netbeans-modules-css-prep.sass_2e_compiler_2e_options=
2+
auxiliary.org-netbeans-modules-css-prep.sass_2e_configured=true
3+
auxiliary.org-netbeans-modules-css-prep.sass_2e_enabled=false
4+
auxiliary.org-netbeans-modules-css-prep.sass_2e_mappings=/scss:/css
5+
file.reference.Web-STORM_Website=.
6+
files.encoding=UTF-8
7+
site.root.folder=${file.reference.Web-STORM_Website}

nbproject/project.xml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://www.netbeans.org/ns/project/1">
3+
<type>org.netbeans.modules.web.clientproject</type>
4+
<configuration>
5+
<data xmlns="http://www.netbeans.org/ns/clientside-project/1">
6+
<name>STORM Website</name>
7+
</data>
8+
</configuration>
9+
</project>

node_modules/.gitignore

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/roboto-font/.npmignore

+29
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

LICENSE renamed to node_modules/roboto-font/LICENSE

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)