Allow custom css styling.

This commit is contained in:
Michael Teeuw 2016-04-05 10:26:18 +02:00
parent c4bfa6d4d8
commit 7b6772e77b
3 changed files with 21 additions and 0 deletions

6
.gitignore vendored
View File

@ -1,7 +1,13 @@
# Ignore all node modules.
/node_modules /node_modules
# Don't ignore the node_helper nore module.
!/modules/node_helper !/modules/node_helper
!/modules/node_helper/** !/modules/node_helper/**
# Ignore all modules except the default modules.
/modules/** /modules/**
!/modules/default/** !/modules/default/**
# Ignore changes to the custom css files.
/css/custom.css

14
css/custom.css Normal file
View File

@ -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 {
}

View File

@ -5,6 +5,7 @@
<meta http-equiv="Content-type" content="text/html; charset=utf-8" /> <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<link rel="icon" href="data:;base64,iVBORw0KGgo="> <link rel="icon" href="data:;base64,iVBORw0KGgo=">
<link rel="stylesheet" type="text/css" href="css/main.css"> <link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/custom.css">
<link rel="stylesheet" type="text/css" href="fonts/roboto.css"> <link rel="stylesheet" type="text/css" href="fonts/roboto.css">
<body> <body>