-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9c9a14c
commit 71c9f71
Showing
4 changed files
with
68 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
$(document).ready(function () { | ||
$.ajax({ | ||
url: "https://api.github.com/repos/aroundsketch/aroundsketch.github.io/commits", | ||
jsonp: "callback", | ||
dataType: "jsonp", | ||
data: { | ||
format: "json" | ||
}, | ||
success: function (response) { | ||
if (response.data.length > 0) { | ||
// console.log(response.data[0].commit.author); | ||
var lastCommitDate = response.data[0].commit.author.date; | ||
// console.log(lastCommitDate); | ||
var lastCommitDateFormat = lastCommitDate.slice(0, 10); | ||
// console.log(lastCommitDateFormat); | ||
$('#commitDate').html(lastCommitDateFormat + "."); | ||
} | ||
} | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
html { | ||
font-size: 14px; | ||
} | ||
@media (min-width: 768px) { | ||
html { | ||
font-size: 16px; | ||
} | ||
} | ||
|
||
.pricing-header { | ||
max-width: 700px; | ||
} | ||
|
||
.card { | ||
min-width: 236px; | ||
} | ||
|
||
.icon-formating { | ||
width: 145px; | ||
border: solid 1.5px #F0F0F0; | ||
border-radius: 33px; | ||
cursor: pointer; | ||
/* box-shadow: 0 4px 8px 0 rgba(2, 68, 22, 0.03); */ | ||
} | ||
|
||
.icon-modal { | ||
padding: 10px; | ||
background-color: white; | ||
} | ||
|
||
.icon-formating:hover { | ||
/* box-shadow: 0 1px 4px 0 rgba(2, 68, 22, 0.1); */ | ||
transform: scale(1.05); | ||
transition: all .2s ease-in-out; | ||
} | ||
|
||
.hover:hover { | ||
box-shadow: 0 4px 18px 0 rgba(2, 68, 22, 0.1); | ||
} | ||
|
||
/* .hover { | ||
box-shadow: 0 1px 2px 0 rgba(2, 68, 22, 0.05); | ||
} */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters