Skip to content

Commit 88670cc

Browse files
committed
feat(version): new version of web site implemented
1 parent 379296c commit 88670cc

File tree

270 files changed

+78973
-553
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

270 files changed

+78973
-553
lines changed

.gitattributes

Lines changed: 0 additions & 2 deletions
This file was deleted.

CharmingFickleErne-max-1mb.gif

-129 KB
Binary file not shown.

Readme.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Thanks for downloading this template!
2+
3+
Template Name: MyResume
4+
Template URL: https://bootstrapmade.com/free-html-bootstrap-template-my-resume/
5+
Author: BootstrapMade.com
6+
License: https://bootstrapmade.com/license/

adventure-time.gif

-1.64 MB
Binary file not shown.

adventuretiemsalyangoz.gif

-180 KB
Binary file not shown.

arduino.png

-126 KB
Binary file not shown.

assets/css/gallery.css

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
.grid-container {
2+
columns: 3 200px;
3+
/* background-color: red; */
4+
grid-template-columns: repeat(
5+
auto-fill,
6+
minmax(250px, 1fr)
7+
); /* Adjust column size */
8+
column-gap: 1.5rem;
9+
width: 90%;
10+
margin: 0 auto;
11+
div {
12+
width: 150px;
13+
margin: 0 1.5rem 1.5rem 0;
14+
display: inline-block;
15+
width: 100%;
16+
border: solid 2px black;
17+
padding: 5px;
18+
box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
19+
border-radius: 5px;
20+
transition: all 0.25s ease-in-out;
21+
&:hover img {
22+
filter: grayscale(0);
23+
}
24+
&:hover {
25+
border-color: #0563bb;
26+
}
27+
img {
28+
width: 100%;
29+
filter: grayscale(100%);
30+
border-radius: 5px;
31+
transition: all 0.25s ease-in-out;
32+
}
33+
p {
34+
margin: 5px 0;
35+
padding: 0;
36+
text-align: center;
37+
font-size: large;
38+
/* font-style: italic; */
39+
}
40+
}
41+
}
42+
43+
.grid-item {
44+
position: relative;
45+
overflow: hidden;
46+
height: auto; /* Ensure auto height for items */
47+
}
48+
49+
.grid-item img {
50+
width: 100%;
51+
height: auto;
52+
}
53+
54+
/* Fade-out and fade-in animations */
55+
.fade-out {
56+
opacity: 0;
57+
transition: opacity 0.5s ease;
58+
}
59+
60+
.fade-in {
61+
opacity: 1;
62+
transition: opacity 0.5s ease;
63+
}
64+
65+
/* Hidden items will have display: none */
66+
/* .hidden {
67+
display: none;
68+
} */

0 commit comments

Comments
 (0)