-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
116 lines (116 loc) · 4.02 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>50Javascript Projects</title>
<style>
* {
box-sizing: border-box;
margin: 0;
border: 0;
}
:root {
--dark-bg: #c3c6b1;
--darker-bg: #383b22;
--darkest-bg: #060706;
--font-color: #c58b2a;
}
body {
background-color: var(--darker-bg);
color: var(--dark-bg);
font-size: 16px;
}
.container {
width: 70%;
background-color: var(--darker-bg);
padding: 3rem;
border-radius: 10px;
margin: 1em auto;
box-shadow: -1px 2px 4px var(--darkest-bg);
}
header {
text-align: center;
margin: auto;
padding: 20px;
margin-bottom: 2em;
}
h2 {
font-size: 1.4em;
margin-bottom: 1rem;
}
header a {
background-color: var(--font-color);
color: var(--darkest-bg);
}
a {
text-decoration: none;
color: inherit;
box-shadow: 1px 2px 2px var(--darkest-bg),
-1px -2px 2px var(--darkest-bg);
padding: 0.5em 1em;
margin: 10px;
border-radius: 10px;
}
a:hover {
text-decoration: underline;
}
.projects {
display: flex;
flex-wrap: wrap;
}
@media (max-width: 455px) {
body {
font-size: 14px;
}
}
</style>
</head>
<body>
<main>
<div class="container">
<header>
<h2>50 Javascript Projects</h2>
<a href="https://github.com/mo-renike/50days-of-Javascript"
>Github Repo</a
>
</header>
<div class="projects">
<a href="Animated navigation/animated.html">Animated Navigation</a>
<a href="Split Landing page/index.html">Split Landing page</a>
<a href="Blurry Loading/index.html">Blurry Loading</a>
<a href="Dad jokes/index.html">Dad Jokes</a>
<a href="Expanding cards/index.html">Expanding Cards</a>
<a href="FAQ/index.html">FAQ</a>
<a href="Hidden search widget/index.html">Hidden search widget</a>
<a href="Increment Counter/index.html">Increment Counter</a>
<a href="KeyCodes/index.html">KeyCodes Generator</a>
<a href="Progress steps/index.html">Progress Steps</a>
<a href="Scroll animation/index.html">Scroll Animation</a>
<a href="Sound Board/index.html">Sound Board</a>
<a href="Form input wave/index.html">Form Input Wave</a>
<a href="Mini mani mo/index.html">Mini Mani Mo</a>
<a href="Rotate slide effect/index.html">Rotate Side Effect</a>
<a href="Drink water/index.html">Drink Water</a>
<a href="Movie App/index.html">Movie App</a>
<a href="Background Slider/index.html">Background Slider</a>
<a href="Clock/index.html">Analog Clock</a>
<a href="Button ripple effect/index.html">Button ripple Effect</a>
<a href="Drag n Drop/index.html">Drag n Drop</a>
<a href="Drawing App/index.html">Drawing App</a>
<a href="kinetic loader/index.html">Kinetic Loader</a>
<a href="Content Placeholder/index.html">Content Placeholder</a>
<a href="./Vertical SLider/index.html">Vertical Slider</a>
<a href="./Toast Notofication/index.html">Toast Alerts</a>
<a href="./Github Profiles/index.html">Github Profiles</a>
<a href=""></a><a href=""></a> <a href=""></a><a href=""></a>
<a href=""></a><a href=""></a> <a href=""></a><a href=""></a>
<a href=""></a><a href=""></a><a href=""></a><a href=""></a><a href=""></a><a href=""></a><a href=""></a><a href=""></a
><a href=""></a><a href=""></a><a href=""></a><a href=""></a
><a href=""></a><a href=""></a>
</div>
</div>
</main>
</body>
</html>