forked from p15670423/monkey
Change report title font + resize sub-titles
This commit is contained in:
parent
56035df461
commit
0a62abe450
|
@ -143,8 +143,8 @@ class ReportPageComponent extends React.Component {
|
|||
<div id="header" className="row justify-content-between">
|
||||
<Col xs={8}>
|
||||
<div>
|
||||
<h2 style={{marginTop: '0px', marginBottom: '5px', color: '#666666'}}>Security Report</h2>
|
||||
<h2 style={{marginTop: '0px', marginBottom: '0px', color: '#ffcc00'}}>Infection <b>Monkey</b></h2>
|
||||
<h1 style={{marginTop: '0px', marginBottom: '5px', color: '#666666', fontFamily: 'Alegreya'}}>Security Report</h1>
|
||||
<h1 style={{marginTop: '0px', marginBottom: '0px', color: '#ffcc00', fontFamily: 'Alegreya'}}>Infection <b>Monkey</b></h1>
|
||||
</div>
|
||||
</Col>
|
||||
<Col xs={4}>
|
||||
|
@ -161,9 +161,9 @@ class ReportPageComponent extends React.Component {
|
|||
generateReportOverviewSection() {
|
||||
return (
|
||||
<div id="overview">
|
||||
<h1>
|
||||
<h2>
|
||||
Overview
|
||||
</h1>
|
||||
</h2>
|
||||
{
|
||||
this.state.report.glance.exploited.length > 0 ?
|
||||
(<p className="alert alert-danger">
|
||||
|
@ -273,9 +273,9 @@ class ReportPageComponent extends React.Component {
|
|||
generateReportFindingsSection() {
|
||||
return (
|
||||
<div id="findings">
|
||||
<h1>
|
||||
<h3>
|
||||
Security Findings
|
||||
</h1>
|
||||
</h3>
|
||||
<div>
|
||||
<h3>
|
||||
Immediate Threats
|
||||
|
@ -352,9 +352,9 @@ class ReportPageComponent extends React.Component {
|
|||
generateReportRecommendationsSection() {
|
||||
return (
|
||||
<div id="recommendations">
|
||||
<h1>
|
||||
<h3>
|
||||
Recommendations
|
||||
</h1>
|
||||
</h3>
|
||||
<div>
|
||||
{this.generateIssues(this.state.report.recommendations.issues)}
|
||||
</div>
|
||||
|
@ -367,9 +367,9 @@ class ReportPageComponent extends React.Component {
|
|||
(100 * this.state.report.glance.exploited.length) / this.state.report.glance.scanned.length;
|
||||
return (
|
||||
<div id="glance">
|
||||
<h1>
|
||||
<h3>
|
||||
The Network from the Monkey's Eyes
|
||||
</h1>
|
||||
</h3>
|
||||
<div>
|
||||
<p>
|
||||
The Monkey discovered <span
|
||||
|
|
Loading…
Reference in New Issue