-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (77 loc) · 2.38 KB
/
index.html
File metadata and controls
88 lines (77 loc) · 2.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Asphalt Paving Calculators — Open Source</title>
<meta name="description"
content="Open-source asphalt and paving material estimation utilities. Calculate tonnage, volume, and project costs.">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box
}
body {
font-family: -apple-system, system-ui, sans-serif;
background: #0d1117;
color: #c9d1d9;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
padding: 1rem
}
.card {
background: #161b22;
border: 1px solid #30363d;
border-radius: 12px;
padding: 2.5rem;
max-width: 520px;
text-align: center
}
h1 {
font-size: 1.6rem;
color: #f0f6fc;
margin-bottom: .75rem
}
p {
line-height: 1.6;
margin-bottom: 1.25rem;
color: #8b949e
}
.btn {
display: inline-block;
background: #238636;
color: #fff;
padding: 12px 28px;
border-radius: 6px;
text-decoration: none;
font-weight: 600;
transition: background .2s
}
.btn:hover {
background: #2ea043
}
.meta {
margin-top: 1.5rem;
font-size: .8rem;
color: #484f58
}
.meta a {
color: #58a6ff;
text-decoration: none
}
</style>
</head>
<body>
<div class="card">
<h1>🏗️ Asphalt & Paving Calculators</h1>
<p>Open-source JavaScript utilities for estimating asphalt tonnage, material volume, and project costs. Built
for contractors, engineers, and DIY paving projects.</p>
<a class="btn" href="https://asphapro.com">Free Asphalt & Paving Calculators →</a>
<p class="meta">Built by <a href="https://www.linkedin.com/in/mohamed-skhiri-365a36218/">Mohamed Skhiri</a> ·
MIT License</p>
</div>
</body>
</html>