Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
aroundsketch committed Jun 25, 2024
1 parent 9c9a14c commit 71c9f71
Show file tree
Hide file tree
Showing 4 changed files with 68 additions and 1 deletion.
4 changes: 4 additions & 0 deletions docs/_layouts/cover.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
<meta name="theme-color" content="#f8f9fa">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
{%- include _css.html -%}
<link href="index.css" rel="stylesheet">
<script async src="https://cdn.splitbee.io/sb.js"></script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6608043535751829"
crossorigin="anonymous"></script>
</head>
<body class="container d-flex h-100 p-3 flex-column bg-light">
<div class="d-flex w-100 h-100 mx-auto flex-column">
Expand Down
20 changes: 20 additions & 0 deletions docs/commit-date.js
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 + ".");
}
}
});
});
43 changes: 43 additions & 0 deletions docs/index.css
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);
} */
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ <h1>{{ page.title }}</h1>
<div class="col-md-4">
<div class="card mb-4 pt-5 hover">
<div>
<img class="icon-formating w-50" src="https://aroundsketch.github.io/Apple-App-Icons/App-Icon/Apple/{{ icon[1].name }}/@PNG.png" alt="{{ icon[1].name }}">
<img class="icon-formating " src="https://aroundsketch.github.io/Apple-App-Icons/App-Icon/Apple/{{ icon[1].name }}/@PNG.png" alt="{{ icon[1].name }}">
</div>
<div class="card-body">
<h5 class="card-title pb-3">{{ icon[1].name }}</h5>
Expand Down

0 comments on commit 71c9f71

Please sign in to comment.