Skip to content

Commit 17d221b

Browse files
committed
Remove invalid duplicate head/meta from style block; keep only valid CSS
1 parent ffb1d0f commit 17d221b

1 file changed

Lines changed: 41 additions & 38 deletions

File tree

index.html

Lines changed: 41 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -20,44 +20,47 @@
2020
</script>
2121
<style>
2222
* {
23-
<head>
24-
<meta charset="UTF-8">
25-
<!-- Force redeploy: 2025-11-09 -->
26-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
27-
<title>Computation Services - SolveForce High-Performance Computing</title>
28-
<meta name="description" content="Enterprise computational resources including HPC, GPU clusters, scientific computing, and batch processing.">
29-
<style>
30-
display: flex;
31-
flex-direction: column;
32-
}
33-
header {
34-
background: rgba(255, 255, 255, 0.95);
35-
-webkit-backdrop-filter: blur(10px);
36-
backdrop-filter: blur(10px);
37-
padding: 1.5rem 2rem;
38-
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
39-
position: sticky;
40-
top: 0;
41-
z-index: 1000;
42-
}
43-
.header-content {
44-
max-width: 1400px;
45-
margin: 0 auto;
46-
display: grid;
47-
grid-template-columns: auto auto auto;
48-
align-items: center;
49-
gap: 2rem;
50-
}
51-
.header-content nav {
52-
justify-self: end;
53-
}
54-
.logo {
55-
font-size: 1.8rem;
56-
font-weight: 700;
57-
color: #667eea;
58-
text-decoration: none;
59-
}
60-
.header-phone {
23+
margin: 0;
24+
padding: 0;
25+
box-sizing: border-box;
26+
}
27+
body {
28+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
29+
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
30+
color: #333;
31+
line-height: 1.6;
32+
min-height: 100vh;
33+
display: flex;
34+
flex-direction: column;
35+
}
36+
header {
37+
background: rgba(255, 255, 255, 0.95);
38+
-webkit-backdrop-filter: blur(10px);
39+
backdrop-filter: blur(10px);
40+
padding: 1.5rem 2rem;
41+
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
42+
position: sticky;
43+
top: 0;
44+
z-index: 1000;
45+
}
46+
.header-content {
47+
max-width: 1400px;
48+
margin: 0 auto;
49+
display: grid;
50+
grid-template-columns: auto auto auto;
51+
align-items: center;
52+
gap: 2rem;
53+
}
54+
.header-content nav {
55+
justify-self: end;
56+
}
57+
.logo {
58+
font-size: 1.8rem;
59+
font-weight: 700;
60+
color: #667eea;
61+
text-decoration: none;
62+
}
63+
.header-phone {
6164
font-size: 1.3rem;
6265
font-weight: 700;
6366
color: #667eea;

0 commit comments

Comments
 (0)