Skip to content
This repository was archived by the owner on Sep 29, 2023. It is now read-only.
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
1 change: 1 addition & 0 deletions _includes/head.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<head>
<meta charset="utf-8">
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
<link rel="stylesheet" href="/styles/index.css">
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
</head>
5 changes: 4 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

<div id="file-index">
{% for file in site.data.gitCloud %}
<a href="{{ site.github.url }}/{{file.href}}">{{file.name}}</a>
<a href="{{ site.github.url }}/{{file.href}}">
<Button class="linkToIcon">
{{file.name}}
</Button></a>
{% endfor %}
</div>
51 changes: 51 additions & 0 deletions styles/index.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions styles/index.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

45 changes: 45 additions & 0 deletions styles/index.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
// Made by github user talmax1124
* {
margin: 0;
padding: 0;
box-sizing: border-box;
border: transparent;
outline: transparent;
text-decoration: none;
transition: .25s ease;
}

.linkToIcon {
padding: 15px;
background: black;
color: white;
font-size: 2em;
margin: 10px;
}

.linkToIcon:hover{
background-color: rgb(53, 49, 49);
}

.linkToIcon:active{
background-color: rgb(58, 53, 53);
}

.site-footer{
background-color: black;
color: whitesmoke;
font-size: 1.5em;
text-align: center;
padding: 10px;
display: flex;
align-content: center;
align-self: center;
}

.site-footer a{
color: white;
}

.site-footer a:hover{
color: aliceblue;
}