-
Notifications
You must be signed in to change notification settings - Fork 0
/
certifications.html
186 lines (175 loc) · 5.5 KB
/
certifications.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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Certifications</title>
<style>
:root {
--background-color: #ffffff;
--text-color: #000000;
--grey-color: #737373;
--hover-color: #f0f0f0;
--circle-bg: #f5f5f5;
--icon-filter: invert(0%);
}
[data-theme="dark"] {
--background-color: #1a1a1a;
--text-color: #ffffff;
--grey-color: #a3a3a3;
--hover-color: #2d2d2d;
--circle-bg: #2d2d2d;
--icon-filter: invert(100%);
}
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: var(--background-color);
color: var(--text-color);
transition: background-color 0.3s ease, color 0.3s ease;
}
.theme-toggle {
position: fixed;
top: 20px;
right: 20px;
cursor: pointer;
background: none;
border: none;
padding: 0;
font-size: 24px;
z-index: 1000;
}
.container {
max-width: 600px;
width: 100%;
text-align: left;
padding: 0 15px;
}
/* Media query for mobile screens */
@media screen and (max-width: 768px) { /* Adjust the max-width as needed */
body {
padding-left: 2%;
padding-top: 20%; /* Add 10% left padding on mobile screens */
}
.container {
padding: 20px; /* Maintain existing padding inside the container */
}
}
h1 {
font-size: 2rem;
margin-bottom: 1rem;
font-weight: normal;
display: flex;
justify-content: space-between;
align-items: center;
}
h1 img {
width: 24px;
height: 24px;
cursor: pointer;
filter: var(--icon-filter);
transition: filter 0.3s ease;
}
p {
margin-bottom: 2rem;
color: var(--grey-color);
}
.work-item {
display: flex;
align-items: center;
padding: 1rem;
border-radius: 8px;
transition: background-color 0.3s ease;
cursor: pointer;
text-decoration: none;
color: inherit;
}
.work-item:hover {
background-color: var(--hover-color);
}
.work-item-circle {
display: flex;
justify-content: center;
align-items: center;
width: 50px;
height: 50px;
margin-right: 1rem;
background-color: var(--circle-bg);
border-radius: 50%;
font-weight: bold;
color: #666;
font-size: 1.2rem;
}
.work-item-details {
flex: 1;
}
.work-item-title {
font-weight: normal;
font-size: 1rem;
margin: 0;
color: var(--text-color);
}
.work-item-subtitle {
margin: 0.2rem 0;
color: var(--grey-color);
font-size: 0.9rem;
}
.work-item-description {
margin: 0;
color: var(--grey-color);
font-size: 0.9rem;
}
</style>
</head>
<body>
<button class="theme-toggle" id="theme-toggle">🌓</button>
<div class="container">
<h1>
certifications*
<img src="https://cdn-icons-png.flaticon.com/512/545/545680.png" alt="Home Icon" onclick="window.location.href='home.html';">
</h1>
<p>A curated list of my professional certifications.</p>
<div class="work-item">
<div class="work-item-circle">FA</div>
<div class="work-item-details">
<p class="work-item-title">Fabric Analytics Engineer Associate</p>
<p class="work-item-subtitle">Microsoft · Nov 2024</p>
</div>
</div>
<div class="work-item">
<div class="work-item-circle">TD</div>
<div class="work-item-details">
<p class="work-item-title">Tableau Certified: Desktop Specialist</p>
<p class="work-item-subtitle">Tableau · Apr 2024</p>
</div>
</div>
<div class="work-item">
<div class="work-item-circle">AD</div>
<div class="work-item-details">
<p class="work-item-title">Microsoft Certified: Azure Data Fundamentals</p>
<p class="work-item-subtitle">Microsoft · Oct 2023</p>
</div>
</div>
<div class="work-item">
<div class="work-item-circle">AC</div>
<div class="work-item-details">
<p class="work-item-title">Alteryx Certified: Designer Core</p>
<p class="work-item-subtitle">Alteryx · Sep 2023 - Sep 2025</p>
</div>
</div>
<div class="work-item">
<div class="work-item-circle">DA</div>
<div class="work-item-details">
<p class="work-item-title">Google Certified: Data Analytics Specialization</p>
<p class="work-item-subtitle">Google · Jan 2023</p>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>