Skip to content

Commit

Permalink
partial
Browse files Browse the repository at this point in the history
  • Loading branch information
PettingStrings committed Jan 18, 2024
1 parent 585658b commit 55d872c
Show file tree
Hide file tree
Showing 13 changed files with 97 additions and 10 deletions.
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ sass:

exclude:
[
"_assets",
"_assets/*",
"Gemfile",
"Gemfile.lock",
"gulpfile.js",
Expand Down
5 changes: 3 additions & 2 deletions _data/projects.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,11 @@
tags:
- tag: Java
- tag: JavFx
- tag: Simulation

- name: CFM - Cruelty Free Meat
descr: ""
demo: none
descr: "todo"
demo: todo
tags:
- tag: Twinmotion
- tag: Photoshop
Expand Down
11 changes: 10 additions & 1 deletion _data/skills-tools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,13 @@
weight: 4

- name: IntelliJ
weight: 5
weight: 5

- name: Photoshop
weight: 2

- name: Illustrator
weight: 3

- name: Blender
weight: 4
2 changes: 1 addition & 1 deletion _js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ $(document).ready(function() {
});

/* particlesJS.load(@dom-id, @path-json, @callback (optional)); */
particlesJS.load('landing', 'assets/particles.json', function() {});
particlesJS.load('landing', 'assets/particles_default.json', function() {});

// Typing Text
var element = document.getElementById('txt-rotate');
Expand Down
2 changes: 1 addition & 1 deletion _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<link rel="manifest" href="{{ "/assets/favicon/site.webmanifest" | prepend: site.baseurl }}">

<link rel="stylesheet" href="{{ "/assets/css/main.min.css" | prepend: site.baseurl }}">
<link rel="stylesheet" href="{{ "/assets/css/vendors.min.css" | prepend: site.baseurl }}">
<!--<link rel="stylesheet" href="{{ "/assets/css/vendors.min.css" | prepend: site.baseurl }}">-->

<script src="{{ "/assets/js/vendors.min.js" | prepend: site.baseurl }}"></script>
<script src="{{ "/assets/js/app.min.js" | prepend: site.baseurl }}"></script>
Expand Down
2 changes: 2 additions & 0 deletions _sass/main.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/* Imports */

@import 'padu';
@import 'vendors/aos';
@import 'vendors/normalize';
@import url("https://fonts.googleapis.com/css?family=Raleway&display=swap");
@import url("https://fonts.googleapis.com/css?family=Josefin+Sans&display=swap");

Expand Down
File renamed without changes.
File renamed without changes.
1 change: 0 additions & 1 deletion assets/css/main.min.css

This file was deleted.

4 changes: 4 additions & 0 deletions assets/css/main.min.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
---
@charset "utf-8";
@import 'main';
3 changes: 0 additions & 3 deletions assets/css/vendors.min.css

This file was deleted.

File renamed without changes.
75 changes: 75 additions & 0 deletions assets/particles_snow.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
{
"particles": {
"number": {
"value": 10,
"density": {
"enable": true,
"value_area": 800
}
},
"color": {
"value": ["#dc052d"]
},
"shape": {
"type": "circle",
"stroke": {
"width": 0,
"color": "#000000"
},
"polygon": {
"nb_sides": 4
}
},
"opacity": {
"value": 0.7,
"random": true,
"anim": {
"enable": false,
"speed": 1,
"opacity_min": 0.4,
"sync": false
}
},
"size": {
"value": 15,
"random": true,
"anim": {
"enable": false,
"speed": 4,
"size_min": 1,
"sync": false
}
},
"line_linked": {
"enable": false
},
"move": {
"enable": true,
"speed": 1,
"direction": "bottom",
"random": true,
"straight": false,
"out_mode": "out",
"bounce": false,
"attract": {
"enable": false,
"rotateX": 1200,
"rotateY": 600
}
}
},
"interactivity": {
"detect_on": "canvas",
"events": {
"onhover": {
"enable": false
},
"onclick": {
"enable": true,
"mode": "repulse"
},
"resize": true
},
"retina_detect": true
}
}

0 comments on commit 55d872c

Please sign in to comment.