Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 31 additions & 16 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -1,28 +1,42 @@
*{
* {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
display: block;
}
body {
line-height: 1;
color: black;
}
ol, ul {
ol,
ul {
list-style: none;
}
blockquote, q {
blockquote,
q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
blockquote:before,
blockquote:after,
q:before,
q:after {
content: "";
content: none;
}
table {
Expand All @@ -34,19 +48,20 @@ table {

* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}

html, body {
html,
body {
width: 100%;
height: 100%;
overflow: hidden;
}

body {
background: #000010;
font-family: 'Montserrat', sans-serif;
background: #000000;
font-family: "Montserrat", sans-serif;
color: #fff;
line-height: 1.3;
-webkit-font-smoothing: antialiased;
Expand Down Expand Up @@ -74,7 +89,7 @@ h2 {
letter-spacing: 0.05em;
}
h1::after {
content: '';
content: "";
width: 80px;
display: block;
background: #fff;
Expand All @@ -85,7 +100,7 @@ h1::after {
p {
margin: 0 0 30px 0;
font-size: 24px;
font-family: 'Roboto', sans-serif;
font-family: "Roboto", sans-serif;
}

@media only screen and (max-width: 1000px) {
Expand Down
76 changes: 76 additions & 0 deletions images/boy.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
41 changes: 41 additions & 0 deletions images/facebook.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
44 changes: 44 additions & 0 deletions images/github.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
47 changes: 47 additions & 0 deletions images/linkedin.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 18 additions & 16 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,34 +1,36 @@
<!doctype html>
<html lang="en" class="no-js">

<head>
<base target="_blank">
<meta charset="UTF-8" />
<title>Anon Developer</title>
<link rel="shortcut icon" type="image/png" href="assets/favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous" type="text/css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css"
integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous"
type="text/css">
<!-- remember, jQuery is completely optional -->
<!-- <script type='text/javascript' src='js/jquery-1.11.1.min.js'></script> -->
<script type="text/javascript" src="js/jquery.particleground.js"></script>
<script type="text/javascript" src="js/demo.js"></script>
</head>

<body>

<div id="particles">
<div id="intro">
<h2 style="font-family: 'Syncopate', sans-serif; font-weight: 10;">Anon Developer&nbsp<a href="deedy.pdf" style="color: white;"><img src="https://png.icons8.com/office/40/000000/open-resume.png" height="35" width="35"></a></h2>
<hr style="width: 50%; background-color: #E83951; border-color: #E83951;">
<a href="https://www.linkedin.com/in/#/" style="color: white;"><i class="fab fa-linkedin" style="font-size: 2em;"></i></a>
&nbsp
<a href="https://www.facebook.com/#/" style="color: white;"><i class="fab fa-facebook" style="font-size: 2em;"></i></a>
&nbsp
<a href="https://github.com/#/" style="color: white;"><i class="fab fa-github" style="font-size: 2em;"></i></a>
&nbsp
<a href="https://medium.com/@#/" style="color: white;"><i class="fab fa-medium" style="font-size: 2em;"></i></a>
<div id="particles">
<div id="intro">
<h2 style="font-family: 'Syncopate', sans-serif; font-weight: 10;display: inline;margin: 10px 16px;">Anon Developer</h2>
&nbsp
<a href="deedy.pdf" style="color: white;"><img src="./images/boy.svg" height="35" width="35"></a>
<hr style="width: 50%; background-color: #E83951; border-color: #E83951;">
<a href="https://www.linkedin.com/in/#/" style="color: white;"><img src="./images/github.svg" style="padding-top: 20px;" height="70" width="70"></a>
&nbsp
<a href="https://www.facebook.com/#/" style="color: white;"><img src="./images/linkedin.svg" style="padding-top: 20px;" height="70" width="70"></a>
&nbsp
<a href="https://github.com/#/" style="color: white;"><img src="./images/facebook.svg" style="padding-top: 20px;" height="70" width="70"></a>
</div>
</div>
</div>

</body>
</html>

</html>
4 changes: 2 additions & 2 deletions js/demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
// This can be used to set the Particles Effects. Check README for more details!
document.addEventListener('DOMContentLoaded', function () {
particleground(document.getElementById('particles'), {
dotColor: '#5cbdaa',
lineColor: '#5cbdaa'
dotColor: '#fad3cf',
lineColor: '#2470a0'
});
var intro = document.getElementById('intro');
intro.style.marginTop = - intro.offsetHeight / 2 + 'px';
Expand Down
8 changes: 4 additions & 4 deletions js/jquery.particleground.js
Original file line number Diff line number Diff line change
Expand Up @@ -373,10 +373,10 @@
};

window[pluginName].defaults = {
minSpeedX: 0.1,
maxSpeedX: 0.7,
minSpeedY: 0.1,
maxSpeedY: 0.7,
minSpeedX: 0.3,
maxSpeedX: 1.0,
minSpeedY: 0.2,
maxSpeedY: 0.9,
directionX: 'center', // 'center', 'left' or 'right'. 'center' = dots bounce off edges
directionY: 'center', // 'center', 'up' or 'down'. 'center' = dots bounce off edges
density: 10000, // How many particles will be generated: one particle every n pixels
Expand Down