-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·144 lines (132 loc) · 3.96 KB
/
index.html
File metadata and controls
executable file
·144 lines (132 loc) · 3.96 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>MyFinalPortfolio</title>
<base href="/HTML-CSS-JS-UX-Portfolio-Template/">
<style>
*{
margin:0;
}
.welcome {
font-family: 'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace;
min-height: 100vh;
display: grid;
align-items: center;
justify-items: center;
}
.welcome--grid {
width: 80%;
display: grid;
justify-content: center;
grid-gap: 5rem;
grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
}
@media screen and (max-width: 75em) {
.welcome--grid {
grid-template-columns: repeat(auto-fit, minmax(20rem, 25rem));
grid-gap: 3rem;
margin: 3rem auto 3rem;
}
}
@media screen and (max-width: 56.25em) {
.welcome--grid {
grid-gap: 3rem;
margin: 3rem auto 3rem;
}
}
@media screen and (max-width: 37.5em) {
.welcome--grid {
grid-gap: 2rem;
margin: 3rem auto 3rem;
}
}
.welcome--logo {
align-self: center;
justify-self: center;
max-width: 30rem;
}
.welcome--logo > img {
width: 100%;
}
@media screen and (max-width: 37.5em) {
.welcome--logo > img {
width: 95%;
}
}
.welcome--desc {
display: grid;
grid-template-rows: 1fr max-content;
color: white;
overflow: hidden;
max-width: 30rem;
}
.welcome--text {
font-size: 1rem;
color: #FFFFFF;
font-weight: 100;
align-self: start;
line-height: 1.4rem;
}
.welcome--links {
display: flex;
justify-content: space-between;
}
@media screen and (max-width: 75em) {
.welcome--links {
padding-top: 2rem;
}
}
@media screen and (max-width: 37.5em) {
.welcome--links {
padding-top: 2rem;
}
}
.welcome--links a {
font-size: 1.2rem;
color: black;
font-weight: 600;
text-decoration: none;
background: linear-gradient(180deg, transparent 65%, #2CAAFF 0) no-repeat;
background-size: 0 100%;
transition: background-size .4s ease;
}
.welcome--links a:hover {
background-size: 100% 100%;
font-weight: 600;
}
@media screen and (max-width: 37.5em) {
.welcome--links a {
font-size: 1rem;
}
}
</style>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<div class="welcome">
<div class="welcome--grid">
<div class="welcome--logo">
<img src="img/build/home/me2.JPG" style="border: .5rem solid black" alt="Akshat's Logo">
</div>
<div class="welcome--desc">
<p class="welcome--text" style="color: black; font-weight: 400;">
<span style="font-size: 1.6rem;font-weight: 700;">Hello, I'm Akshat!</span><br/><br/><br/>
I'm a designer and a frontend engineer. I design digital products by understanding their needs.
I’m currently working at the University of Michigan Cancer Center to create an application that will help
genetic counselors to predict a patient’s predisposition towards different kinds of cancers.
Additionally, I’m interested in bridging the gap that the visually impaired students face. I’m working on a tool
that will help blind school students to collaborate remotely with their sighted peers.
</p>
<div class="welcome--links">
<a href="projects.html" class="links--1">WORK</a>
<a href="about.html" class="links--2">ABOUT</a>
<a href="https://umich.box.com/s/n77c2mul5rc1cgurdacvhacudnpmiuv9" target="_blank" class="links--3">RESUME</a>
<a href="mailto:akshatm@umich.edu" class="links--4">CONTACT</a>
</div>
</div>
</div>
</div>
</body>
</html>