-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (88 loc) · 2.38 KB
/
index.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
<html>
<link rel="stylesheet" href="https://unpkg.com/chota@latest">
<style>
:root {
--bg-color: #ffffff;
--bg-secondary-color: #f3f3f6;
--color-primary: #1e73be;
--color-lightGrey: #d2d6dd;
--color-grey: #747681;
--color-darkGrey: #3f4144;
--color-error: #d43939;
--color-success: #28bd14;
--grid-maxWidth: 120rem;
--grid-gutter: 2rem;
--font-size: 1.6rem;
--font-color: #333333;
--font-family-sans: sans-serif;
--font-family-mono: monaco, "Consolas", "Lucida Console", monospace;
}
body {
padding: 50px 50px 150px 50px;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: lightgray;
color: white;
text-align: center;
}
img {
max-width:200px;
max-height:200px;
}
.ribbon-wrapper {
width: 115px;
height: 108px;
overflow: hidden;
position: absolute;
top: -3px;
left: 3px;
.ribbon {
font: bold 15px sans-serif;
color: #333;
text-align: center;
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
position: relative;
padding: 9px 0;
top: 15px;
left: -40px;
width: 150px;
background-color: #ebb134;
color: #fff;
}
}
</style>
<head>
<script src="jquery-3.7.1.min.js"></script>
<link rel="stylesheet" href="styles.css">
<script type="module" src="app.js"></script>
</head>
<body>
<div class="ribbon-wrapper">
<div class="ribbon">no API <br> just <a href="https://edu.yovisto.com/sparql" target="_blank">SPARQL</a></div>
</div>
<div id="searchfor">
<h1>OER Recommender</h1>
<input type="text" id="query" placeholder="Keywords suchen...">
<input type="checkbox" id="curriculum">curriculum</input><br>
<input type="button" id="searchButton" value="suchen" />
</div>
<div class="popup" id="pop">
<span class="popuptext" id="myPopup">Laden ... </span>
</div>
<div id="overlay" class="overlay"></div>
<div id="stage" style="background-color:#fff;">
</div>
<div class="footer">
<p>created with <a href="https://www.wikidata.org/wiki/Q316"><span>❤</span></a> for <a href="https://its.jointly.info/">ITsJOINTLY</a> by <a href="https://yovisto.com">yovisto.com</a> </p>
<img src="https://its.jointly.info/wp-content/uploads/sites/32/2023/09/logos_horizontal-3.svg"><br>
<a href="https://yovisto.com/de/impressum/">Imprint</a>
</div>
</body>
</html>