Skip to content

Commit 894b551

Browse files
committed
dude idek
1 parent d3f5b7c commit 894b551

File tree

3 files changed

+17
-11
lines changed

3 files changed

+17
-11
lines changed

index.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<title>daemon - the website</title>
5-
<link rel="icon" href="/assets/favicon.png"/>
5+
<link rel="icon" href="/assets/favicon.png" />
66
<link rel="stylesheet" href="/main.css" />
77
<link rel="stylesheet" href="page.css" />
88
<link rel="preconnect" href="https://fonts.googleapis.com" />
@@ -16,7 +16,8 @@
1616
<img src="/assets/logo.svg" alt="dae-vinity.dev" class="logo" />
1717
<img src="/assets/logo.svg" alt="dae-vinity.dev" class="logo effect" />
1818
<p class="directory">
19-
<a href="about" class="nah">ABOUT</a> / <a href="links">LINKS</a> /
19+
<a href="about" class="nah">ABOUT</a> /
20+
<a href="links" class="nah">LINKS</a> /
2021
<a href="projects" class="nah">PROJECTS</a> /
2122
<a href="portfolio" class="nah">PORTFOLIO</a> /
2223
<a href="mailto:[email protected]">CONTACT</a>

links/index.html

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!doctype html>
1+
<!DOCTYPE html>
22
<html>
33
<head>
44
<title>daemon - the website</title>
@@ -12,7 +12,5 @@
1212
rel="stylesheet"
1313
/>
1414
</head>
15-
<body>
16-
<div class="frame"></div>
17-
</body>
15+
<body></body>
1816
</html>

page.css

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
@keyframes effect {
22
from {
33
opacity: 0%;
4-
scale:1;
4+
scale: 1;
55
}
66

77
to {
88
opacity: 25%;
9-
scale:1.1;
9+
scale: 1.1;
1010
}
1111
}
1212

13-
1413
.logo {
1514
position: absolute;
1615
left: calc(50% - 295px);
@@ -25,7 +24,7 @@
2524
animation-iteration-count: infinite;
2625
animation-direction: alternate;
2726
filter: none;
28-
mix-blend-mode:lighten;
27+
mix-blend-mode: lighten;
2928
}
3029

3130
.directory {
@@ -37,10 +36,17 @@
3736
color: #ffffff;
3837
font-family: "Montserrat", sans-serif;
3938
font-size: 16px;
39+
z-index: 256;
4040
}
4141

4242
.nah {
4343
color: #808080;
44+
transition: none;
45+
filter: none;
46+
}
47+
48+
.nah:hover {
49+
filter: none;
4450
}
4551

4652
.ash {
@@ -49,4 +55,5 @@
4955
right: 32px;
5056
height: 394px;
5157
mix-blend-mode: difference;
52-
}
58+
z-index: -1;
59+
}

0 commit comments

Comments
 (0)