Skip to content

Commit 1b666f6

Browse files
committed
SCSS: merge all the CSS files
1 parent 6c46bc7 commit 1b666f6

20 files changed

+31
-16
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# The CSS files will be compiled automatically.
2+
.sass-cache/
3+
*.css.map
4+
*.css

_config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
sass:
2+
sass_dir: css
3+
style: compressed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

index.html

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,7 @@
55
<meta charset="UTF-8"/>
66
<link rel="icon" type="image/x-icon" href="favicon.png"/>
77
<link rel="stylesheet" href="../dep/fa/css/font-awesome.min.css"/>
8-
<link rel="stylesheet" href="css/reset.css"/>
9-
<link rel="stylesheet" href="css/body.css"/>
10-
<link rel="stylesheet" href="css/btn.css"/>
11-
<link rel="stylesheet" href="css/overwrite-cuteslider.css"/>
12-
<link rel="stylesheet" href="css/overwrite-tooltip.css"/>
13-
<link rel="stylesheet" href="player/css/player.css"/>
14-
<link rel="stylesheet" href="player/css/screen.css"/>
15-
<link rel="stylesheet" href="player/css/placeholder.css"/>
16-
<link rel="stylesheet" href="player/css/menu.css"/>
17-
<link rel="stylesheet" href="player/css/controls.css"/>
18-
<link rel="stylesheet" href="player/css/position.css"/>
19-
<link rel="stylesheet" href="player/css/subtitles.css"/>
20-
<link rel="stylesheet" href="playlist/css/playlist.css"/>
21-
<link rel="stylesheet" href="playlist/css/nav.css"/>
22-
<link rel="stylesheet" href="playlist/css/list.css"/>
8+
<link rel="stylesheet" href="style.css"/>
239
</head>
2410
<body>
2511

@@ -34,7 +20,7 @@ <h1 class="title">
3420
</h1>
3521
<span class="version">
3622
<i class="fa fa-terminal"></i>
37-
version 0.1.0
23+
version 0.1.1
3824
</span>
3925
</div>
4026
<div id="screen" class="no-select">
File renamed without changes.

style.scss

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
---
3+
4+
// Merge all the CSS files in only one.
5+
6+
@import 'reset/reset';
7+
@import 'reset/body';
8+
@import 'reset/btn';
9+
@import 'reset/overwrite-cuteslider';
10+
@import 'reset/overwrite-tooltip';
11+
12+
@import 'player/player';
13+
@import 'player/screen';
14+
@import 'player/placeholder';
15+
@import 'player/menu';
16+
@import 'player/controls';
17+
@import 'player/position';
18+
@import 'player/subtitles';
19+
20+
@import 'playlist/playlist';
21+
@import 'playlist/nav';
22+
@import 'playlist/list';

0 commit comments

Comments
 (0)