Skip to content

Commit 7dc1408

Browse files
committed
modify the scanner feature
1 parent 56e89ca commit 7dc1408

File tree

3 files changed

+110
-31
lines changed

3 files changed

+110
-31
lines changed

_includes/my-scripts.html

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<link
2+
rel="stylesheet"
3+
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
4+
/>

_sass/my-inline.scss

+83
Original file line numberDiff line numberDiff line change
@@ -224,3 +224,86 @@
224224
}
225225
}
226226
}
227+
228+
.row {
229+
display: flex;
230+
flex-wrap: wrap;
231+
}
232+
.column {
233+
width: 100%;
234+
padding: 0 1em 1em 1em;
235+
text-align: center;
236+
}
237+
.feature_card {
238+
width: 100%;
239+
height: 100%;
240+
padding: 2em 1.5em;
241+
background: linear-gradient(#ffffff 50%, #b4023c 20%);
242+
background-size: 100% 200%;
243+
background-position: 0 2.5%;
244+
border-radius: 15px;
245+
box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
246+
//cursor: pointer;
247+
//transition: 0.5s;
248+
}
249+
250+
.feature_card h3 {
251+
font-size: 20px;
252+
font-weight: 600;
253+
color: #b4023c;//#1f194c;
254+
margin: 1em 0em;
255+
}
256+
.feature_card p {
257+
color: #575a7b;
258+
font-size: 14px;
259+
line-height: 1.6;
260+
letter-spacing: 0.03em;
261+
}
262+
263+
.feature_card > .feature_content {
264+
text-align: left;
265+
}
266+
.icon-wrapper {
267+
background-color: #bc0c3e;
268+
position: relative;
269+
margin: auto;
270+
font-size: 30px;
271+
height: 2.5em;
272+
width: 2.5em;
273+
color: #ffffff;
274+
border-radius: 50%;
275+
display: grid;
276+
place-items: center;
277+
transition: 0.5s;
278+
}
279+
.feature_card:hover {
280+
background-position: 0 100%;
281+
}
282+
.feature_card:hover .icon-wrapper {
283+
background-color: #ffffff;
284+
color: #bc0c3e;
285+
}
286+
.feature_card:hover h3 {
287+
color: #ffffff;
288+
}
289+
.feature_card:hover p {
290+
color: #f0f0f0;
291+
}
292+
@media screen and (min-width: 768px) {
293+
section {
294+
padding: 0 2em;
295+
}
296+
.column {
297+
flex: 0 50%;
298+
max-width: 50%;
299+
}
300+
}
301+
@media screen and (min-width: 992px) {
302+
section {
303+
padding: 1em 3em;
304+
}
305+
.column {
306+
flex: 0 0 33.33%;
307+
max-width: 33.33%;
308+
}
309+
}

scanner/README.md

+23-31
Original file line numberDiff line numberDiff line change
@@ -18,46 +18,38 @@ permalink: /scanner/
1818
FOSSLight Scanner can perform an analysis for open source compliance at once. It can perform open source analysis of source code, binary and dependency and generate the report that contains the open source information that can be extracted. You can use the report file with [FOSSLight Hub](/fosslight). Also, it can check whether an open source complies with the copyright/license writing rule.
1919

2020
## Features
21-
22-
<div class="flex-container">
23-
<div class="flex-contents">
24-
<div>
25-
<div id="feature_title">
26-
Inclusive Scanning
27-
</div>
28-
<div id="feature_img">
29-
<img src="https://img.icons8.com/dotty/80/000000/check-all.png"/>
21+
<div class="row">
22+
<div class="column">
23+
<div class="feature_card">
24+
<div class="icon-wrapper">
25+
<i class="fa-solid fa-magnifying-glass"></i>
3026
</div>
31-
<div id="feature_content">
32-
It can detect source code, binary as well as dependency.
27+
<h3>Improving<br>Analysis Accuracy</h3>
28+
<div class="feature_content">
29+
<p>It supports source code string detection and snippet matching, and also supports binary analysis as well as dependency analysis for various package managers to increase the accuracy of open source analysis.
30+
</p>
3331
</div>
3432
</div>
3533
</div>
36-
37-
<div class="flex-contents">
38-
<div>
39-
<div id="feature_title">
40-
Integrated One
34+
<div class="column">
35+
<div class="feature_card">
36+
<div class="icon-wrapper">
37+
<i class="fas fa-gears"></i>
4138
</div>
42-
<div id="feature_img">
43-
<img src="https://img.icons8.com/wired/64/000000/workspace-one.png"/>
44-
</div>
45-
<div id="feature_content">
46-
It can work from one command line through a single integrated package.
39+
<h3>Fast & Light Independent Module</h3>
40+
<div class="feature_content">
41+
<p>Each scanner can run independently, so you can run only the target you want to scan (ex, source code, binary, dependency) quickly and lightly.</p>
4742
</div>
4843
</div>
4944
</div>
50-
51-
<div class="flex-contents">
52-
<div>
53-
<div id="feature_title">
54-
Independent Module
55-
</div>
56-
<div id="feature_img">
57-
<img src="https://img.icons8.com/dotty/80/000000/module.png"/>
45+
<div class="column">
46+
<div class="feature_card">
47+
<div class="icon-wrapper">
48+
<i class="fa-solid fa-share-nodes"></i>
5849
</div>
59-
<div id="feature_content">
60-
The scanner module can be used independently and lightly.
50+
<h3>Scalability<br>through Hub</h3>
51+
<div class="feature_content">
52+
<p>Output file of scanners is directly available in the Hub, so you can use the open source information management functions and also generate SBOM.</p>
6153
</div>
6254
</div>
6355
</div>

0 commit comments

Comments
 (0)