-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (76 loc) · 2.29 KB
/
index.html
File metadata and controls
97 lines (76 loc) · 2.29 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
---
layout: home
<!--title: Home-->
<!--image: /assets/images/block.png-->
---
<head>
<style>
.apptitle {
display: flex;
flex-direction: row;
align-items: center;
justify-content: start;
height: 4em;
/*border: 2px solid green;*/
}
.apptitle * {
margin-bottom: 0;
}
.apptitle img {
max-height: 3em;
aspect-ratio: 1;
margin-right: 12px;
border: 1px solid black;
border-radius: 20%;
}
.apptitle p {
border: 2px solid blue;
line-height: 1em;
}
.appiconimage:hover {
scale: 1.1;
}
.appiconimage {
transition: scale 0.2s ease-in-out;
animation-duration: 1s;
}
.appstorelink {
opacity: 0.0;
transition: opacity 0.2s ease-in-out;
}
.appheader {
display: flex;
justify-content: space-between;
align-items: center;
}
.appheader:hover .appstorelink {
opacity: 1.0;
}
</style>
</head>
<h1>About Me</h1>
<blockquote>A technology enthusiast and avid learner, Steven is a second-year computer science undergraduate at Georgia Tech with a keen attention to detail who employs his passion for exploring to create innovative solutions to challenging problems.</blockquote>
<br>
<h1>Apps</h1>
{% for app in site.apps %}
{% if app.visible %}
<div class="app">
<div class="appheader">
<div class="apptitle">
<img class="appiconimage" src="{{ app.icon }}" alt="{{ app.title }}">
<h2>{{ app.title }}</a></h2>
</div>
{% if app.appstorelink %}
<div class="app-store-link">
<a href="{{ app.appstorelink }}">
<img src="assets/images/Download_on_the_App_Store_Badge_US-UK_RGB_wht_092917.svg" height="40px">
</a>
</div>
{% else %}
<p><i>Coming soon</i></p>
{% endif %}
</div>
{{ app.content }}
</div>
{% endif %}
{% endfor %}