Skip to content

Commit d525cbf

Browse files
committed
updates
1 parent 8e06a95 commit d525cbf

File tree

2 files changed

+48
-51
lines changed

2 files changed

+48
-51
lines changed

styles/thanks.css

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
.supporters {
2+
display: grid;
3+
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
4+
gap: 1.5rem;
5+
list-style: none;
6+
padding: 0;
7+
margin: 2rem 0;
8+
}
9+
10+
.supporter {
11+
background: #4e3aa366;
12+
border-radius: 12px;
13+
padding: 1rem;
14+
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
15+
transition: transform 0.2s;
16+
}
17+
18+
.supporter a {
19+
font-weight: bold;
20+
color: #fff;
21+
text-decoration: none;
22+
}
23+
24+
.supporter a::after {
25+
content: "↗";
26+
font-size: 0.8em;
27+
margin-left: 0.5em;
28+
}
29+
30+
/* If no link is provided, use the 'p' element */
31+
.supporter p {
32+
font-weight: bold;
33+
color: #fff;
34+
text-decoration: none;
35+
}
36+
37+
.role {
38+
margin-top: 0.5rem;
39+
font-size: 0.9rem;
40+
color: #999;
41+
}

thanks.html

Lines changed: 7 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4-
<meta charset="UTF-8">
5-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
66

7+
<!-- HTML Meta Tags -->
78
<title>Thanks | is-a.dev</title>
89
<meta name="description" content="A thank you page dedicated to our supporters." />
910
<meta name="theme-color" content="#4E3AA3" />
@@ -25,66 +26,21 @@
2526
<meta name="twitter:title" content="is-a.dev" />
2627
<meta name="twitter:description" content="A thank you page dedicated to our supporters." />
2728
<meta name="twitter:image" content="https://is-a.dev/assets/logo.png" />
28-
<style>
29-
.supporters {
30-
display: grid;
31-
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
32-
gap: 1.5rem;
33-
list-style: none;
34-
padding: 0;
35-
margin: 2rem 0;
36-
}
37-
38-
<!-- Apple Meta Tags -->
39-
<meta name="apple-mobile-web-app-title" content="is-a.dev" />
40-
<meta name="apple-mobile-web-app-capable" content="yes" />
41-
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
42-
.supporter {
43-
background: #4e3aa366;
44-
border-radius: 12px;
45-
padding: 1rem;
46-
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
47-
transition: transform 0.2s;
48-
}
4929

5030
<!-- Favicon -->
5131
<link rel="icon" type="image/x-icon" href="/assets/favicon.ico" />
52-
.supporter a {
53-
font-weight: bold;
54-
color: #fff;
55-
text-decoration: none;
56-
}
57-
58-
.supporter a::after {
59-
content: '↗';
60-
font-size: 0.8em;
61-
margin-left: 0.5em;
62-
}
6332

6433
<!-- Stylesheets -->
6534
<link rel="stylesheet" href="/styles/main.css" />
6635
<link rel="stylesheet" href="/styles/secondary.css" />
67-
<link rel="stylesheet" href="https://cdn.hrsn.net/is-a-dev/website/fonts/Roboto/font.css" rel="prefetch" />
68-
<link rel="stylesheet" href="https://cdn.hrsn.net/is-a-dev/website/fonts/UbuntuMono/font.css" rel="prefetch" />
69-
/* If no link is provided, use the 'p' element */
70-
.supporter p {
71-
font-weight: bold;
72-
color: #fff;
73-
text-decoration: none;
74-
}
75-
76-
.role {
77-
margin-top: 0.5rem;
78-
font-size: 0.9rem;
79-
color: #999;
80-
}
81-
</style>
36+
<link rel="stylesheet" href="/styles/thanks.css" />
37+
<link rel="stylesheet" href="https://cdn.hrsn.net/is-a-dev/website/fonts/Roboto/font.css" />
38+
<link rel="stylesheet" href="https://cdn.hrsn.net/is-a-dev/website/fonts/UbuntuMono/font.css" />
8239
</head>
8340

8441
<body>
8542
<h1>Our Supporters</h1>
86-
<p>We would like to extend thanks to the following <i>amazing</i> individuals for their generous support and
87-
contributions to is-a.dev:</p>
43+
<p>We would like to extend thanks to the following <i>amazing</i> individuals for their generous support and contributions to is-a.dev:</p>
8844

8945
<ul class="supporters">
9046
<li class="supporter">

0 commit comments

Comments
 (0)