-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
130 lines (111 loc) · 3.98 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!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">
<meta name="description" content="Codewell challenges developed by Deepart.">
<meta name="keyword" content="Codewell challenges, Deepart, front-end development, codewell projects">
<title>Codewell Challenges | Deepart</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}
body {
background-color: #f1f1f1;
}
main {
padding: 16px;
padding-bottom: 80px;
}
img {
max-width: 100%;
height: auto;
}
ul {
display: grid;
grid-gap: 16px;
grid-template-columns: repeat(5, 1fr);
}
ul li {
list-style: none;
padding: 8px;
background-color: #fff;
transition: all .3s ease-in-out;
}
ul li:hover {
box-shadow: 0 10px 10px rgba(0, 0, 0, .125);
}
ul li a {
text-decoration: none;
text-align: center;
display: block;
}
ul li a p {
font-size: 14px;
margin-top: 10px;
margin-bottom: 10px;
font-weight: bold;
color: #343434
}
header,
footer {
background-color: #343434;
color: #fff;
padding: 20px 16px;
text-align: center;
width: 100%;
}
footer {
position: fixed;
bottom: 0;
}
@media only screen and (max-width: 991px) {
ul {
grid-template-columns: repeat(4, 1fr);
}
}
@media only screen and (max-width: 767px) {
ul {
grid-template-columns: repeat(3, 1fr);
}
}
@media only screen and (max-width: 500px) {
ul {
grid-template-columns: repeat(1, 1fr);
}
}
</style>
</head>
<body>
<header>
<h1>Codewell Challenges</h1>
</header>
<main>
<ul>
<li><a href="2021/personal-blog/" target="_blank" rel="noopener noreferrer"><img src="images/Personal_Blog_Slider_Thumbnail.jpg" alt="Personal Blog">
<p>Personal Blog (BEM)</p></a></li>
<li><a href="2021/arclight/" target="_blank" rel="noopener noreferrer"><img src="images/Arclight_Slider_Thumbnail.jpg" alt="Arclight Landing page">
<p>Arclight Landing page (BEM)</p></a></li>
<li><a href="2021/spense/" target="_blank" rel="noopener noreferrer"><img src="images/Spense_Thumbnail.jpg" alt="Spense Landing page">
<p>Spense Landing page (Tailwind CSS)</p>
</a></li>
<li><a href="https://bluedeepart.github.io/worksite-react-app/" target="_blank" rel="noopener noreferrer"><img src="images/Workside_Slider_Thumbnail.jpg" alt="Spense Landing page">
<p>Workside Job Board (React and Tailwind CSS)</p>
</a></li>
<li><a href="2022/contrast-directory/" target="_blank" rel="noopener noreferrer"><img src="images/Contrast_Slider_Thumbnail.jpg" alt="Contrast Directory">
<p>Contrast Directory (Bootstrap 5)</p>
</a></li>
<li><a href="2022/subway-multi-step-form/" target="_blank" rel="noopener noreferrer"><img src="images/Subway_Slider_Thumbnail.jpg" alt="Contrast Directory">
<p>Subway multi step Form (BEM, Drag and Drop API)</p>
</a></li>
</ul>
</main>
<footer>
<p>© <a href="http://deepart.in" target="_blank" rel="noopener noreferrer" style="color: inherit;text-decoration: none;">Deeprt.in</a></p>
</footer>
</body>
</html>