forked from cortehz/docufix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
analysis.html
159 lines (157 loc) · 6.43 KB
/
analysis.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Document Analysis</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- bootstrap css -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<!--google-font-->
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<style>
body{
font-family: Ubuntu;
background-color: #F8FAFA;
font-style: normal;
font-weight: bold;
}
#topnav {
background-color: #000;
overflow: hidden;
height: 70px;
padding-top: 20px;
}
#topnav a {
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
#topnav a.active {
font-size: 20px;
color: #ffff;
margin-right: 63%;
}
.navigation{
text-align: right;
}
h2{
margin-top: 106px;
margin-left: 108px;
}
.word{
margin-top: 86px;
margin-left: 108px;
}
.container {
margin-top: 74px;
}
footer{
margin-top: 250px;
background-color: #C4C4C4;
color: #fff;
padding-top: 24px;
height: 74px;
}
.icon-style{
color: #000;
padding-left: 10px;
width: 30px;
height: 30px;
}
svg{
margin-top: 10px;
}
/* Responsiveness */
@media (min-device-width: 768px) and (max-device-width: 1200px){
#topnav a.active{
margin-right: 42%;
}
ellipse {
cx: 110;
}
}
@media (max-device-width: 767px) {
footer{
height: 141px;
}
ellipse {
cx: 160;
}
.word{
margin-left: 10px;
}
h2{
margin-left: 10px;
}
#topnav{
height: 82px;
}
}
</style>
</head>
<body>
<nav class="navbar-expand-lg navbar-custom bg-custom" id="topnav">
<a class="active text-left" href="#DOCUFIX">DOCUFIX</a>
<a class="navigation" href="#">About Us</a>
<a class="navigation" href="#">How it works</a>
<a class="navigation" href="#">Team</a>
</nav>
<h2>Document Analysis</h2>
<div>
<p class="word">Words in document: 250</p>
<p class="text-right" style="margin-bottom:0px;padding-right:70px;">Suspected words</p>
<p class="text-right"style="margin-bottom:0px;padding-right:70px;color:#FF0505;">100%</p>
<p class="text-right"style="margin-bottom:0px;padding-right:70px;">50 words copied</p>
</div>
<div class="container">
<div class="row">
<div class="col-md-4">
<h4>Identical</h4>
<svg height="314" width="314">
<ellipse cx="200" cy="130" rx="110" ry="100"
style="fill:transparent;stroke:#FF0505;stroke-width:2" content="100%"/>
</svg>
</div>
<div class="col-md-4">
<h4>Related</h4>
<svg height="314" width="314">
<ellipse cx="200" cy="130" rx="110" ry="100"
style="fill:transparent;stroke:#8A6123;stroke-width:2" />
</svg>
</div>
<div class="col-md-4">
<h4>Minor Changes</h4>
<svg height="314" width="314">
<ellipse cx="200" cy="130" rx="110" ry="100"
style="fill:transparent;stroke:rgba(255, 5, 5, 0.5);stroke-width:2" />
</svg>
</div>
</div>
</div>
<footer>
<div class="container-fluid">
<div class="row">
<div class="col-md-4 text-left">
<h4>DOCUFIX</h4>
</div>
<div class="col-md-4 text-center">
<h6>copyright 2019 Docufix.io and HNG6 affiliates</h6>
</div>
<div class="col-md-4 text-right">
<a href="#"><i class='fa fa-twitter icon-style' aria-hidden="true"></i></a>
<a href="#"><i class='fa fa-instagram icon-style' aria-hidden="true"></i></a>
<a href="#"><i class="fa fa-facebook icon-style" aria-hidden="true"></i></a>
</div>
</div>
</div>
</footer>
<!-- bootstrap js -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>