-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (91 loc) · 3.09 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SBOM Tools</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
}
.container {
max-width: 800px;
margin: 40px auto;
padding: 20px;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.button-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.button {
margin: 20px;
padding: 20px;
width: 200px;
height: 200px;
border: none;
border-radius: 10px;
background: linear-gradient(145deg, #8BC34A, #7BA33A);
color: #fff;
cursor: pointer;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
transition: transform 0.2s, background 0.2s;
}
.button:hover {
background: linear-gradient(145deg, #7BA33A, #6A9325);
}
.button:active {
transform: scale(0.95);
}
.button img {
width: 80px;
height: 80px;
margin-bottom: 10px;
filter: grayscale(100%) contrast(150%) sepia(100%) hue-rotate(90deg);
}
.button span {
font-size: 18px;
font-weight: bold;
}
</style>
</head>
<body>
<div class="container">
<h1>SBOM Tools</h1>
<div class="button-container">
<button class="button"
onclick="window.location.href='cyclonedx_sbom_viewer.html'">
<img src="cyclonedx_sbom_viewer.svg"
alt="CycloneDX SBOM Viewer">
<span>CycloneDX SBOM Viewer</span>
</button>
<button class="button"
onclick="window.location.href='cyclonedx_sbom_editor.html'">
<img src="cyclonedx_sbom_editor.svg"
alt="CycloneDX SBOM Editor">
<span>CycloneDX SBOM Editor</span>
</button>
<button class="button"
onclick="window.location.href='cyclonedx_sbom_comparer.html'">
<img src="cyclonedx_sbom_comparer.svg"
alt="CycloneDX SBOM Comparer">
<span>CycloneDX SBOM Comparer</span>
</button>
<button class="button"
onclick="window.location.href='spdx_cyclonedx_converter.html'">
<img src="spdx_cyclonedx_converter.svg"
alt="SPDX / CycloneDX Converter">
<span>SPDX / CycloneDX Converter</span>
</button>
</div>
</div>
</body>
</html>