-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
153 lines (132 loc) · 3.68 KB
/
index.html
File metadata and controls
153 lines (132 loc) · 3.68 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
145
146
147
148
149
150
151
152
153
<!DOCTYPE html>
<html>
<link href="https://fonts.googleapis.com/css2?family=Spectral&display=swap" rel="stylesheet">
<head>
<title>lisa's site</title>
<link rel="icon" type="image/png" href="../files/favicon.png">
<meta charset="utf-8">
<style>
body {
background-color: #fffff1;
font-family: Spectral;
/* font-family: 'Times New Roman', serif; */
margin: 0;
padding: 0;
}
.container {
max-width: 1200px;
margin: 0 auto;
text-align: center;
}
.header {
margin-top: 50px;
margin-bottom: 60px;
}
h1 {
color: #0a3049;
font-size: 2.5rem;
font-weight: normal;
margin-bottom: 5px;
}
.subtitle {
font-size: 1rem;
margin-top: 5px;
}
.grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-row-gap: 100px;
grid-column-gap: 40px;
margin: 0 auto;
max-width: 1000px;
}
.grid-item {
display: flex;
flex-direction: column;
align-items: center;
text-decoration: none;
color: #000;
}
.grid-item img {
width: 150px;
height: 150px;
object-fit: contain;
margin-bottom: 5px;
}
.grid-item:nth-child(2) img {
/* toolbox */
margin-top:5px;
}
.grid-item:nth-child(2) .label {
margin-top: -5px;
}
.grid-item:nth-child(3) img {
/* CD image - more stuff */
width: 100px;
height: 100px;
margin-top: 25px;
margin-bottom: 20px;
}
.grid-item:nth-child(4) img {
/* projects */
margin-top: -24px;
margin-bottom:5px;
}
.grid-item:nth-child(5) img {
/* Stack of papers - blog/posts */
width: 160px;
height: 160px;
}
.grid-item:nth-child(5) .label {
margin-top: -20px;
}
.label {
font-size: 1.3rem;
margin-top: 5px;
min-height: 30px;
display: flex;
align-items: center;
justify-content: center;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>lisa's site</h1>
<p class="subtitle">hello! i've got some stuff and it's here for your perusal</p>
</div>
<div class="grid">
<a href="html/aboutme.html" class="grid-item">
<img src="../files/1x/Asset 4.png" alt="Star drawing">
<div class="label">about me</div>
</a>
<a href="../files/Resume-20250610.pdf" class="grid-item">
<img src="../files/1x/Asset 1.png" alt="Toolbox">
<div class="label">resume</div>
</a>
<a href="html/more.html" class="grid-item">
<img src="../files/1x/Asset 5.png" alt="CD">
<div class="label">more stuff</div>
</a>
<a href="html/projects.html" class="grid-item">
<img src="../files/1x/Asset 2.png" alt="Cardboard box">
<div class="label">projects</div>
</a>
<a href="html/blog.html" class="grid-item">
<img src="../files/1x/Asset 6.png" alt="Stack of papers">
<div class="label">weblog</div>
</a>
</div>
</div>
</body>
</html>
<!-- stuff to consider
- how to do index page and folders
- different modes with different buttons
- maybe change different font? spectral doesn't fit theme of new idea
next steps:
- make other icons for pages
- add first icon and click to page
- add content to pages
-->