Skip to content

Commit 1fe283a

Browse files
committed
refactor shit
1 parent 7b5e2a8 commit 1fe283a

File tree

16 files changed

+102
-79
lines changed

16 files changed

+102
-79
lines changed

.htaccess

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +0,0 @@
1-
RewriteEngine on
2-
3-
RewriteCond %{THE_REQUEST} /([^.]+)\.html [NC]
4-
RewriteRule ^ /%1 [NC,L,R]
5-
6-
RewriteCond %{REQUEST_FILENAME}.html -f
7-
RewriteRule ^ %{REQUEST_URI}.html [NC,L]

about.html renamed to about/index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
<html>
33
<head>
44
<title>daemon - the website</title>
5-
<link rel="stylesheet" href="main.css" />
5+
<link rel="stylesheet" href="/main.css" />
6+
<link rel="stylesheet" href="page.css" />
67
<link rel="preconnect" href="https://fonts.googleapis.com" />
78
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
89
<link

about/page.css

Whitespace-only changes.

assets/frame.svg

Lines changed: 10 additions & 0 deletions
Loading

contact.html renamed to contact/index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
<html>
33
<head>
44
<title>daemon - the website</title>
5-
<link rel="stylesheet" href="main.css" />
5+
<link rel="stylesheet" href="/main.css" />
6+
<link rel="stylesheet" href="page.css" />
67
<link rel="preconnect" href="https://fonts.googleapis.com" />
78
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
89
<link

contact/page.css

Whitespace-only changes.

index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
<html>
33
<head>
44
<title>daemon - the website</title>
5-
<link rel="stylesheet" href="main.css" />
5+
<link rel="stylesheet" href="/main.css" />
6+
<link rel="stylesheet" href="page.css" />
67
<link rel="preconnect" href="https://fonts.googleapis.com" />
78
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
89
<link

links/index.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>daemon - the website</title>
5+
<link rel="stylesheet" href="/main.css" />
6+
<link rel="stylesheet" href="page.css" />
7+
<link rel="preconnect" href="https://fonts.googleapis.com" />
8+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
9+
<link
10+
href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap"
11+
rel="stylesheet"
12+
/>
13+
</head>
14+
<body>
15+
<div class="frame"></div>
16+
</body>
17+
</html>

links/page.css

Whitespace-only changes.

main.css

Lines changed: 10 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -7,29 +7,16 @@
77
}
88
}
99

10-
@keyframes effect {
11-
from {
12-
opacity: 0%;
13-
width: 590px;
14-
left: calc(50% - 295px);
15-
top: calc(50% - 25px);
16-
}
17-
18-
to {
19-
opacity: 25%;
20-
width: 649px;
21-
left: calc(50% - 325px);
22-
top: calc(50% - 28px);
23-
}
24-
}
25-
2610
body {
2711
background-color: #000000;
2812
background-image: url(assets/loop.svg);
2913
animation-name: scroll;
3014
animation-duration: 2s;
3115
animation-iteration-count: infinite;
3216
animation-timing-function: linear;
17+
18+
margin: 0px;
19+
padding: 0px;
3320
}
3421

3522
a {
@@ -38,42 +25,12 @@ a {
3825
font-weight: 600;
3926
}
4027

41-
.logo {
42-
position: absolute;
43-
left: calc(50% - 295px);
44-
top: calc(50% - 25px);
45-
filter: drop-shadow(0px 0px 26px #ffffff80);
46-
mix-blend-mode: difference;
47-
}
48-
49-
.effect {
50-
animation-name: effect;
51-
animation-duration: 4s;
52-
animation-iteration-count: infinite;
53-
animation-direction: alternate;
54-
filter: none;
55-
mix-blend-mode: normal;
56-
}
57-
58-
.directory {
59-
position: absolute;
60-
top: calc(50% + 48px);
61-
width: 100%;
62-
text-align: center;
63-
64-
color: #ffffff;
65-
font-family: "Montserrat", sans-serif;
66-
font-size: 16px;
67-
}
68-
69-
.nah {
70-
color: #808080;
71-
}
28+
.frame {
29+
width: 48px;
30+
height: 48px;
31+
box-sizing: border-box;
7232

73-
.ash {
74-
position: absolute;
75-
bottom: 0px;
76-
right: 32px;
77-
height: 394px;
78-
mix-blend-mode: difference;
33+
border-width: 16px;
34+
border-style: solid;
35+
border-image: url(assets/frame.svg) 16 16 fill
7936
}

0 commit comments

Comments
 (0)