source: gs3-extensions/atea-nlp-tools/trunk/src/koreromaori-proxy/src/main/webapp/webContent/unauthorised.html@ 35239

Last change on this file since 35239 was 35239, checked in by davidb, 3 years ago

Adding proxy servlet for the Korero Maori Reo Tuhituhi API (initail commit)

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