diff --git a/.gitignore b/.gitignore
index 708870ec..c1294794 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,7 +1,13 @@
+# Ignore all node modules.
/node_modules
+# Don't ignore the node_helper nore module.
!/modules/node_helper
!/modules/node_helper/**
+# Ignore all modules except the default modules.
/modules/**
!/modules/default/**
+
+# Ignore changes to the custom css files.
+/css/custom.css
diff --git a/css/custom.css b/css/custom.css
new file mode 100644
index 00000000..5871da5c
--- /dev/null
+++ b/css/custom.css
@@ -0,0 +1,14 @@
+/*****************************************************
+ * Magic Mirror *
+ * Custom CSS *
+ * *
+ * By Michael Teeuw http://michaelteeuw.nl *
+ * MIT Licensed. *
+ * *
+ * Add any custom CSS below. *
+ * Changes to this files will not be ignored by GIT. *
+ *****************************************************/
+
+ body {
+
+ }
\ No newline at end of file
diff --git a/index.html b/index.html
index 18eb65e9..cfcffff5 100644
--- a/index.html
+++ b/index.html
@@ -5,6 +5,7 @@
+