-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathindex.html
More file actions
116 lines (98 loc) · 3.32 KB
/
index.html
File metadata and controls
116 lines (98 loc) · 3.32 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Recursion Hub</title>
</head>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
<!-- <link rel="stylesheet" href="/public/css/prisum.css"> -->
<style>
.container-list {
width: 70%;
margin: 0 auto;
}
.item * {
color: black !important;
font-family: var(--bs-body-font-family) !important;
}
.item .btn {
color: white !important;
}
.item a {
color: blue !important;
}
.item a,
.item div {
font-size: 1rem !important;
}
.card-body pre {
margin-top: -2rem !important;
margin-bottom: -4rem !important;
}
div.item div {
margin-top: 5px;
}
div.item {
border: 1px solid #a8a8a8;
padding: 1rem;
border-radius: 10px;
width: 90%;
}
div.item .btn {
margin-top: 5px;
}
div.item div.row {
display: flex;
}
</style>
<body>
<nav style="border-bottom:1px dashed black ;" id="top" class="navbar bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="#">
<img src="/public/RCHUB.png" width="30" height="30" class="d-inline-block align-top" alt="">
Recursion Hub
</a>
<div class="d-flex" role="search">
<input onkeyup="SetList(event)" class="form-control me-2 input" type="search" placeholder="Search"
aria-label="Search">
</div>
</div>
</nav>
<h3 style="padding: 5px;"> Count of Programs: <span class="count">0</span></h3>
<hr>
<div class="container-list">
<!-- <div class="item">
<div class="row">
<h3>Name</h3>
<a href="#">Github</a>
<a href="#">Website</a>
</div>
<div>Problem:</div>
<div>Description:</div>
<div>Explain:</div>
<p>
<a class="btn btn-primary" data-bs-toggle="collapse" href="#collapseExample" role="button" aria-expanded="false" aria-controls="collapseExample">
Code
</a>
</p>
<div class="collapse" id="collapseExample">
<div class="card card-body">
<pre><code class="language-css"></code></pre>
</div>
</div> -->
</div>
</div>
<!-- -->
<a style="left:5px;bottom:5px;position:fixed;" class='bot' href="#top"><img width="20px" class='top'
src="/public/top.png" alt="Back to Top"></a>
</body>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-/bQdsTh/da6pkI1MST/rWKFNjaCP5gBSY4sEBT38Q/9RBh9AH40zEOg7Hlq2THRZ"
crossorigin="anonymous"></script>
<script src="/public/js/index.js"></script>
<!-- <script src="/public/js/prisum.js"></script> -->
</html>