Skip to content

Commit f6da60c

Browse files
committed
Refactor JS and CSS directories to separate things better in preparation for separation of TV and Program Guide.
1 parent f1eea37 commit f6da60c

File tree

11 files changed

+23
-11
lines changed

11 files changed

+23
-11
lines changed

.vscode/tasks.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"version": "0.1.0",
44
"command": "node-sass",
55
"isShellCommand": true,
6-
"args": ["scss/guide.scss", "css/guide.css"]
6+
"args": ["scss/site.scss", "css/site.css"]
77
}

css/guide.css renamed to css/site.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
* TV Simulator '99
33
* Zach Hall, 2017
44
*/
5-
/* import scanlines */
65
/* REGULAR SCANLINES SETTINGS */
76
/* MOVING SCANLINE SETTINGS */
87
/* MIXINS */
@@ -40,6 +39,10 @@
4039
0% {
4140
background-position: 0 50%; } }
4241

42+
/**
43+
* TV Simulator '99
44+
* Zach Hall, 2017
45+
*/
4346
@font-face {
4447
font-family: VCR;
4548
src: url(fonts/VCR_OSD.ttf); }

index.html

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<meta property="og:type" content="website"/>
99
<meta property="og:url" content="https://zshall.github.io/program-guide/"/>
1010
<meta property="og:image" content="https://zshall.github.io/program-guide/img/tvsim-ogimg.png"/>
11-
<link href="css/guide.css" rel="stylesheet" />
11+
<link href="css/site.css" rel="stylesheet" />
1212
<link rel='shortcut icon' type='image/x-icon' href='favicon.ico' />
1313
</head>
1414
<body>
@@ -68,11 +68,16 @@
6868
<p><a href="http://ariweinstein.com/prevue/viewtopic.php?f=2&t=449">New Prevue Fonts</a> by <a href="http://rudyv.io/">rudyvalencia</a></p>
6969
<p><a href="https://www.youtube.com/watch?v=oemoqEuJdFE">4 Hours of 1990s Commercials</a> by <a href="https://www.youtube.com/channel/UC1IfPxiQ0-vAR02_PQwi-rQ">Vhs Archives</a></p>
7070
</div>
71-
<script src="js/lib/jquery-3.2.1.min.js"></script>
72-
<script src="js/lib/moment.js"></script>
73-
<script src="js/lib/bettermarquee.js"></script>
74-
<script src="js/lib/youtube-ctrl.js"></script>
75-
<script src="js/guide.js"></script>
71+
72+
<!-- Load JS libraries -->
73+
<script src="lib/jquery-3.2.1.min.js"></script>
74+
<script src="lib/moment.js"></script>
75+
<script src="lib/bettermarquee.js"></script>
76+
77+
<!-- Load application JS -->
78+
<script src="js/core/youtube-ctrl.js"></script>
79+
<script src="js/core/guide.js"></script>
80+
7681
<script>
7782
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
7883
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

scss/guide.scss renamed to scss/core/guide.scss

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
* Zach Hall, 2017
44
*/
55

6-
/* import scanlines */
7-
@import 'scanlines';
8-
96
@font-face {
107
font-family: VCR;
118
src: url(fonts/VCR_OSD.ttf);
File renamed without changes.

0 commit comments

Comments
 (0)