minimal-music-project 0.0.1 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.txt +1 -1
  3. data/README.md +51 -20
  4. data/_config.yml +13 -20
  5. data/_data/menu.yml +17 -3
  6. data/_data/metaData.yml +2 -1
  7. data/_includes/common-head.html +8 -2
  8. data/_includes/common.js +5 -0
  9. data/_includes/cookies.js +8 -2
  10. data/_includes/customizationsScripts.html +7 -0
  11. data/_includes/customizationsStyles.html +7 -0
  12. data/_includes/discography-entry-metadata.html +80 -0
  13. data/_includes/discography-entry.html +25 -0
  14. data/_includes/menu.html +18 -18
  15. data/_includes/music-player.html +124 -0
  16. data/_includes/pagination-buttons.html +14 -0
  17. data/_includes/read-more.html +13 -0
  18. data/_layouts/default.html +9 -5
  19. data/_layouts/discography.html +13 -3
  20. data/_layouts/post.html +3 -4
  21. data/_layouts/posts_feed.html +43 -30
  22. data/_sass/styles/_cookies.scss +7 -7
  23. data/_sass/styles/_defaults.scss +58 -6
  24. data/_sass/styles/_discography.scss +43 -0
  25. data/_sass/styles/_index.scss +3 -1
  26. data/_sass/styles/_layout.scss +2 -2
  27. data/_sass/styles/_menu.scss +102 -18
  28. data/_sass/styles/_music-player.scss +92 -0
  29. data/_sass/styles/_post.scss +22 -9
  30. data/_sass/styles/_posts_feed.scss +26 -10
  31. data/_sass/variables/_colors.scss +2 -1
  32. data/_sass/variables/_layout.scss +2 -1
  33. data/_sass/variables/_mixins.scss +15 -7
  34. data/assets/audio/sample_song.mp3 +0 -0
  35. data/assets/img/Experimental-Glitches-Cover.png +0 -0
  36. data/assets/img/YyY-Cover.png +0 -0
  37. data/assets/img/z-is-for-zero.png +0 -0
  38. data/pages/about.html +48 -6
  39. metadata +16 -6
  40. data/_includes/avatar.html +0 -5
  41. data/_includes/customizations.html +0 -15
  42. data/pages/collaborations.html +0 -7
  43. data/pages/discography.html +0 -7
@@ -1,4 +1,5 @@
1
1
  $black: #000000;
2
2
  $white: #FFF;
3
-
3
+ $hyperlink: #290099;
4
4
  $p_text: #000000;
5
+ $p_light: #888888;
@@ -1,6 +1,7 @@
1
1
  $tablet-width: 768px;
2
2
  $desktop-width: 1024px;
3
- $menu-size: 200px;
3
+ $menu-size: 240px;
4
+ $mobile-menu-height: 75px;
4
5
  $minimal-menu-size: 50px;
5
6
  $gap: 30px;
6
7
  $pop-ups-z-1: 100;
@@ -1,3 +1,16 @@
1
+ @mixin underline-on-hover($underline-color) {
2
+ text-decoration: underline;
3
+ text-decoration-color: transparent;
4
+ transition: 0.4s;
5
+ -webkit-text-decoration-color: transparent;
6
+ -moz-text-decoration-color: transparent;
7
+ &:hover {
8
+ text-decoration-color: $underline-color;
9
+ -webkit-text-decoration-color: $underline-color;
10
+ -moz-text-decoration-color: $underline-color;
11
+ }
12
+ }
13
+
1
14
  @mixin tooltip {
2
15
  position: relative;
3
16
  &:hover .tooltip {
@@ -35,13 +48,8 @@
35
48
 
36
49
  @mixin hyperlink-convention {
37
50
  a {
38
- transition: all 300ms ease 0s;
39
51
  cursor: pointer;
40
- text-decoration-line: none;
41
- text-decoration: underline $black;
42
- &:hover {
43
- color: $black;
44
- font-weight: 500;
45
- }
52
+ @include underline-on-hover($hyperlink);
53
+ color: $hyperlink;
46
54
  }
47
55
  }
Binary file
Binary file
Binary file
data/pages/about.html CHANGED
@@ -1,12 +1,54 @@
1
1
  ---
2
- layout: post
2
+ layout: default
3
3
  title: About
4
4
  permalink: about.html
5
5
  category: about
6
6
 
7
7
  ---
8
- <div class="profile">
9
- {% include avatar.html %}
10
- <h2>{{ site.data.menu.menu_headline }}</h2>
11
- <p>{{ site.data.menu.menu_intro }}</p>
12
- </div>
8
+ <div class="content-container about">
9
+ <h1>About</h1>
10
+ It's a good place to write something about the project. This projects repository is located on <a href="https://github.com/ItsMeaga1n/minimal-music-project" target="_blank">GitHub</a>. Since you are here, feel free to check out my other stuff either on <a href="https://github.com/ItsMeaga1n" target="_blank">GitHub</a> or on my <a href="http://itsmeaga1n.github.io" target="_blank">blog</a>!
11
+
12
+ <hr />
13
+ <p>
14
+ Listen and get music from this example project at:
15
+ <ul>
16
+ <li>
17
+ <a>
18
+ YouTube
19
+ <i class="fab fa-youtube" ></i>
20
+ </a>
21
+ </li>
22
+ <li>
23
+ <a>
24
+ SoundCloud
25
+ <i class="fab fa-soundcloud" ></i>
26
+ </a>
27
+ </li>
28
+ <li>
29
+ <a>
30
+ BandCamp
31
+ <i class="fab fa-bandcamp" ></i>
32
+ </a>
33
+ </li>
34
+ </ul>
35
+ </p>
36
+ </div>
37
+
38
+ <style>
39
+ a {
40
+ text-decoration: underline;
41
+ text-decoration-color: transparent;
42
+ transition: 0.4s;
43
+ -webkit-text-decoration-color: transparent;
44
+ -moz-text-decoration-color: transparent;
45
+ cursor: pointer;
46
+ color: #290099;
47
+ }
48
+ a:hover {
49
+ text-decoration-color: #290099;
50
+ transition: 0.4s;
51
+ -webkit-text-decoration-color: #290099;
52
+ -moz-text-decoration-color: #290099;
53
+ }
54
+ </style>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minimal-music-project
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Patryk Bieszke
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-01-25 00:00:00.000000000 Z
11
+ date: 2021-05-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -38,12 +38,18 @@ files:
38
38
  - _data/customs.yml
39
39
  - _data/menu.yml
40
40
  - _data/metaData.yml
41
- - _includes/avatar.html
42
41
  - _includes/common-head.html
42
+ - _includes/common.js
43
43
  - _includes/cookies.js
44
- - _includes/customizations.html
44
+ - _includes/customizationsScripts.html
45
+ - _includes/customizationsStyles.html
46
+ - _includes/discography-entry-metadata.html
47
+ - _includes/discography-entry.html
45
48
  - _includes/footer.html
46
49
  - _includes/menu.html
50
+ - _includes/music-player.html
51
+ - _includes/pagination-buttons.html
52
+ - _includes/read-more.html
47
53
  - _layouts/default.html
48
54
  - _layouts/discography.html
49
55
  - _layouts/post.html
@@ -51,15 +57,20 @@ files:
51
57
  - _sass/minimal-music-project.scss
52
58
  - _sass/styles/_cookies.scss
53
59
  - _sass/styles/_defaults.scss
60
+ - _sass/styles/_discography.scss
54
61
  - _sass/styles/_index.scss
55
62
  - _sass/styles/_layout.scss
56
63
  - _sass/styles/_menu.scss
64
+ - _sass/styles/_music-player.scss
57
65
  - _sass/styles/_post.scss
58
66
  - _sass/styles/_posts_feed.scss
59
67
  - _sass/variables/_colors.scss
60
68
  - _sass/variables/_index.scss
61
69
  - _sass/variables/_layout.scss
62
70
  - _sass/variables/_mixins.scss
71
+ - assets/audio/sample_song.mp3
72
+ - assets/img/Experimental-Glitches-Cover.png
73
+ - assets/img/YyY-Cover.png
63
74
  - assets/img/android-chrome-192x192.png
64
75
  - assets/img/android-chrome-256x256.png
65
76
  - assets/img/apple-touch-icon.png
@@ -72,10 +83,9 @@ files:
72
83
  - assets/img/post-2.jpg
73
84
  - assets/img/safari-pinned-tab.svg
74
85
  - assets/img/site.webmanifest
86
+ - assets/img/z-is-for-zero.png
75
87
  - assets/styles/styles.scss
76
88
  - pages/about.html
77
- - pages/collaborations.html
78
- - pages/discography.html
79
89
  homepage: https://github.com/ItsMeaga1n/minimal-music-project
80
90
  licenses:
81
91
  - MIT
@@ -1,5 +0,0 @@
1
- <div class="avatar_container">
2
- <div class="avatar" >
3
- <img src="{{ site.data.metaData.avatar_url }}" alt="avatar" onerror="this.style.display='none'">
4
- </div>
5
- </div>
@@ -1,15 +0,0 @@
1
- {% for javascript in page.custom-js %}
2
- <script src="{{ javascript }}"></script>
3
- {% endfor %}
4
-
5
- {% for javascript in site.data.customs.custom-js %}
6
- <script src="{{ javascript }}"></script>
7
- {% endfor %}
8
-
9
- {% for css in page.custom-css %}
10
- <link href="{{ css }}" rel="stylesheet">
11
- {% endfor %}
12
-
13
- {% for css in site.data.customs.custom-css %}
14
- <link href="{{ css }}" rel="stylesheet">
15
- {% endfor %}
@@ -1,7 +0,0 @@
1
- ---
2
- layout: discography
3
- title: Collaborations
4
- permalink: collaborations.html
5
- category: collaborations
6
-
7
- ---
@@ -1,7 +0,0 @@
1
- ---
2
- layout: discography
3
- title: Discography
4
- permalink: discography.html
5
- category: discography
6
-
7
- ---