Skip to content

Commit f4c38e7

Browse files
committed
update stuff
1 parent dcaa1ef commit f4c38e7

File tree

4 files changed

+21
-5
lines changed

4 files changed

+21
-5
lines changed

images/debuggyicon.png

-5.99 KB
Loading

images/favicon.png

-238 Bytes
Loading

index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<title>debuggyo's Portfolio</title>
1111
</head>
1212
<script>
13-
function hasTouch() {
13+
function hasTouch() {1
1414
return 'ontouchstart' in document.documentElement
1515
|| navigator.maxTouchPoints > 0
1616
|| navigator.msMaxTouchPoints > 0;
@@ -34,6 +34,7 @@
3434
}
3535
</script>
3636
<body>
37+
<div class="border"></div>
3738
<div class="container">
3839
<img src="images/debuggyicon.png" id="logo">
3940
<hr>

style.css

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
body, html {
2-
background-color: #0B0B0B;
2+
background:
3+
repeating-conic-gradient(#070707 0% 25%, #000 0% 50%)
4+
50% / 50px 50px;
35
cursor: url(images/cursor/cursor.png), auto;
6+
height: calc(100vh - 1em);
7+
border-radius: 10px;
8+
}
9+
10+
.border {
11+
position: fixed;
12+
top: 0;
13+
left: 0;
14+
z-index: -100;
15+
height: 100vh;
16+
width: 100vw;
17+
background-image: linear-gradient(#FA6000, #940059);
418
}
519

620
.container {
@@ -48,7 +62,8 @@ hr {
4862
border-radius: 20px;
4963
border-bottom-width: 3px;
5064
transition: 300ms;
51-
margin-bottom: 10px
65+
margin-bottom: 10px;
66+
box-shadow: 0px 5px 10px #000000CC;
5267
}
5368

5469
.button:hover {
@@ -77,13 +92,13 @@ hr {
7792
}
7893

7994
#teaw {
80-
background-image: linear-gradient(0deg, #0b0b0b 30%, #0b0b0b00, #0b0b0b), url('images/teaw.png');
95+
background-image: linear-gradient(0deg, #000000EE 40%, #0b0b0b00), url('images/teaw.png');
8196
background-size: cover;
8297
background-position: center;
8398
}
8499

85100
#tat {
86-
background-image: linear-gradient(0deg, #0b0b0b 30%, #0b0b0b00, #0b0b0b), url('images/tat.png');
101+
background-image: linear-gradient(0deg, #000000EE 40%, #0b0b0b00), url('images/tat.png');
87102
background-size: cover;
88103
background-position: center;
89104
background-repeat: repeat-x;

0 commit comments

Comments
 (0)