Skip to content

Commit 786f311

Browse files
committed
🔖 Added tag in challenge-16
1 parent 3ff7919 commit 786f311

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

15-Localstorage/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<title>LocalStorage</title>
4+
<title>LocalStorage - JavaScript30 by Ayush Gupta</title>
55
<meta charset="UTF-8" />
66
<link rel="stylesheet" href="src/styles.css" />
77
<link rel="stylesheet" href="../common.css" type="text/css" />

16-Mousemove-Shadow/index.html

+9-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<title>Mouse Shadow</title>
5+
<title>Mouse Shadow - JavaScript30 by Ayush Gupta</title>
66
<link href="src/styles.css" rel="stylesheet" type="text/css" />
7+
<link rel="stylesheet" href="../common.css" type="text/css" />
78
<link
89
rel="apple-touch-icon"
910
sizes="180x180"
@@ -23,8 +24,15 @@
2324
/>
2425
</head>
2526
<body>
27+
<a href="https://javascript30.ayushgupta.tech" target="_blank">
28+
<div class="project-tag" style="background-color: white; color: black;">
29+
<div class="tag-num">#16</div>
30+
<div class="tag-text">of JavaScript30</div>
31+
</div>
32+
</a>
2633
<div class="hero">
2734
<h1 contenteditable>🔥WOAH!</h1>
35+
<h7>Pro Tip: The text above is editable ;-)</h7>
2836
</div>
2937

3038
<script src="src/index.js"></script>

16-Mousemove-Shadow/src/styles.css

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,25 @@
11
html {
2-
color: black;
2+
color: white;
33
font-family: sans-serif;
44
}
55
body {
66
margin: 0;
7+
background-image: url("http://thepatternlibrary.com/img/at.png");
78
}
89
.hero {
910
min-height: 100vh;
1011
display: flex;
1112
justify-content: center;
1213
align-items: center;
13-
color: black;
14+
flex-direction: column;
15+
color: white;
1416
}
1517
h1 {
1618
text-shadow: 10px 10px 0 rgba(0, 0, 0, 1);
1719
font-size: 100px;
1820
}
21+
22+
h7{
23+
color: lightcoral;
24+
font-family: monospace;
25+
}

0 commit comments

Comments
 (0)