Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New Theme Added: Minima. #130

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
Binary file added Templates/Minima/favicon.ico
Binary file not shown.
21 changes: 21 additions & 0 deletions Templates/Minima/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
<title>Ufuayk</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="favicon.ico" type="image/x-icon"/>
</head>
<body>
<img id="userPhoto" src="https://avatars.githubusercontent.com/u/132388044?v=4" alt="User Photo">
<a href="https://www.github.com/ufuayk" id="userName">Ufuk | @ufuayk</a>
<!-- You can add new links. -->
<div id="links">
<a class="link" href="https://layers.to/ufuk" target="_blank">Layers</a>
<a class="link" href="https://ufuk.bearblog.dev/" target="_blank">Bear Blog</a>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js'></script>
<script src="index.js"></script>
</body>
</html>
7 changes: 7 additions & 0 deletions Templates/Minima/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
$( document ).ready(function() {
// Add here commands to run on page loaded
});

$( ".link" ).click(function() {
// Add here commands to run on link click
});
101 changes: 101 additions & 0 deletions Templates/Minima/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
/* Style Settings */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

:root {
--bgColor: #ffffff;
--textColor: #333333;
--accentColor: #2d2d2d;
--font: 'Inter', sans-serif;
}

@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

body {
background-color: var(--bgColor);
margin: 0;
padding: 40px 20px;
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
user-select: none;
animation: fadeIn 0.8s ease;
}

#userPhoto {
width: 120px;
height: 120px;
display: block;
margin: 35px auto 25px;
border-radius: 50%;
transition: transform 0.3s ease;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
animation: fadeIn 0.8s ease;
}

#userPhoto:hover {
transform: scale(1.05) rotate(5deg);
}

#userName {
color: var(--textColor);
font-size: 1.2rem;
font-weight: 500;
line-height: 1.4;
display: block;
font-family: var(--font);
width: 100%;
text-align: center;
text-decoration: none;
margin-bottom: 10px;
letter-spacing: -0.2px;
animation: fadeIn 0.8s ease;
animation-delay: 0.2s;
opacity: 0;
animation-fill-mode: forwards;
}

#links {
max-width: 550px;
width: 100%;
display: block;
margin: 27px auto;
padding: 0 20px;
}

.link {
display: block;
background-color: var(--bgColor);
color: var(--accentColor);
font-family: var(--font);
text-align: center;
margin-bottom: 16px;
padding: 16px;
text-decoration: none;
font-size: 1rem;
font-weight: 500;
transition: all 0.3s ease;
border: 2.5px solid var(--accentColor);
border-radius: 8px;
opacity: 0;
animation: fadeIn 0.5s ease forwards;
}

.link:nth-child(1) { animation-delay: 0.3s; }
.link:nth-child(2) { animation-delay: 0.5s; }

.link:hover {
background-color: var(--accentColor);
color: var(--bgColor);
transform: translateY(-2px);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}