Skip to content

Commit

Permalink
fix(vars.scss): cleanup unused theme
Browse files Browse the repository at this point in the history
  • Loading branch information
ctaylo21 committed Dec 13, 2019
1 parent 6f832f2 commit f871312
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 60 deletions.
54 changes: 28 additions & 26 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -1,29 +1,31 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Termy the Terminal</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
href="https://fonts.googleapis.com/css?family=Inconsolata"
rel="stylesheet"
/>
<link rel="stylesheet" type="text/css" href="index.css" />
</head>
<body>
<style>
html,
body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
#terminal-container {
height: 100%;
}
</style>
<div id="terminal-container"></div>
<script src="demo.js"></script>
</body>

<head>
<meta charset="utf-8" />
<title>Termy the Terminal</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="https://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="index.css" />
</head>

<body>
<style>
html,
body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}

#terminal-container {
height: 100%;
}
</style>

<div id="terminal-container"></div>
<script src="demo.js"></script>
</body>

</html>
8 changes: 0 additions & 8 deletions src/styles/vars.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,3 @@ $themeDark: (
fontSize: 18px,
fontFamily: #{'Inconsolata', monospace},
);

$themeFallout: (
background: #383838,
fontColor: #00dd00,
green: #00dd00,
fontSize: 1em,
fontFamily: #{'VT323', Courier},
)
54 changes: 28 additions & 26 deletions src/templates/index.html
Original file line number Diff line number Diff line change
@@ -1,29 +1,31 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Termy the Terminal</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
href="https://fonts.googleapis.com/css?family=Inconsolata"
rel="stylesheet"
/>
<link rel="stylesheet" type="text/css" href="index.css" />
</head>
<body>
<style>
html,
body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
#terminal-container {
height: 100%;
}
</style>
<div id="terminal-container"></div>
<script src="demo.js"></script>
</body>

<head>
<meta charset="utf-8" />
<title>Termy the Terminal</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="https://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="index.css" />
</head>

<body>
<style>
html,
body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}

#terminal-container {
height: 100%;
}
</style>

<div id="terminal-container"></div>
<script src="demo.js"></script>
</body>

</html>

0 comments on commit f871312

Please sign in to comment.