source: gs3-extensions/atea-nlp-tools/trunk/src/ocr/src/main/webapp/webContent/unauthorised.html@ 35733

Last change on this file since 35733 was 35733, checked in by cstephen, 2 years ago

Add OCR servlet

File size: 2.7 KB
Line 
1<html>
2 <head>
3 <title>Unauthorised</title>
4
5 <meta charset="utf-8" />
6
7 <link rel="preconnect" href="https://fonts.googleapis.com" />
8 <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
9 <link href="https://fonts.googleapis.com/css2?family=Oswald&display=swap" rel="stylesheet" />
10
11 <style>
12 body {
13 background-color: rgb(51, 6, 31);
14 font-family: 'Roboto', sans-serif;
15 margin: 0;
16 }
17
18 .container {
19 display: -webkit-box;
20 display: -ms-flexbox;
21 display: flex;
22
23 -webkit-box-pack: center;
24 -ms-flex-pack: center;
25 justify-content: center;
26
27 -webkit-box-align: center;
28 -ms-flex-align: center;
29 align-items: center;
30
31 height: 100vh;
32 }
33
34 .cover {
35 display: -webkit-box;
36 display: -ms-flexbox;
37 display: flex;
38
39 -webkit-box-pack: center;
40 -ms-flex-pack: center;
41 justify-content: center;
42
43 -webkit-box-align: center;
44 -ms-flex-align: center;
45 align-items: center;
46
47 padding: 2em 4em;
48 border-radius: 10px 30px;
49 border: 3px solid #c52a1f07;
50 background-color: #c52a1f3a;
51 }
52
53 .btn-primary {
54 color: white;
55 background-color: #c52a1f;
56 border: none;
57 font-family: 'Oswald', sans-serif;
58 font-size: 2em;
59 padding: 0.5em 1em;
60 margin: 0.5em;
61 border-radius: 5px;
62 cursor: pointer;
63 -webkit-transition-duration: 0.3s;
64 transition-duration: 0.3s;
65 }
66
67 .btn-primary:hover {
68 background-color: #a0231a;
69 -webkit-transform: translateY(-7px);
70 transform: translateY(-7px);
71 -webkit-box-shadow: 0 6px 30px -10px #e40a0a7e;
72 box-shadow: 0 6px 30px -10px #e40a0a7e;
73 }
74
75 .btn-primary:link, .btn-primary:visited, .btn-primary:hover, .btn-primary:active {
76 color: white;
77 text-decoration: none;
78 }
79 </style>
80 </head>
81 <body>
82 <div class="container">
83 <div class="cover">
84 <a class="btn-primary" href="/greenstone3/library/">Looking for Greenstone instead?</a>
85 </div>
86 </div>
87 </body>
88</html>
Note: See TracBrowser for help on using the repository browser.