-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
112 lines (101 loc) · 6.44 KB
/
main.html
File metadata and controls
112 lines (101 loc) · 6.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>See</title>
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
<script src='assets/bootstrap/js/bootstrap.min.js'></script>
<style>
.line-clamp {
max-width: 70%;
display: -webkit-box;
-webkit-box-orient: vertical;
overflow: hidden;
-webkit-line-clamp: 4;
}
.line-clamp-2 {
max-width: 100%;
display: -webkit-box;
-webkit-box-orient: vertical;
overflow: hidden;
-webkit-line-clamp: 2;
}
</style>
</head>
<body style="background-color: #202124;">
<div class="vh-100 overflow-x-hidden">
<div class="m-0 p-0 container container-fluid" style="width: max-content;">
<div class="row col vh-100 vw-100 pt-3 overflow-hidden-lg">
<div id="loader" class=" z-1 vh-100 d-flex justify-content-center align-items-center d-flex flex-column">
<img src="./assets/images/loading.gif" alt="" style="height: 20vh;">
<div class="text-white">Loading</div>
</div>
<div id="info" class="col-12 col-md-3" style="">
</div>
<div id="other" class="col-12 col-lg-9 rounded-start-3 text-xl overflow-scroll" style="background-color: #303134;">
<div class="d-flex flex-wrap mt-5 ms-5">
<div class="d-flex align-items-center bg-dark p-3 rounded-3 me-4 mb-3" style="width: max-content;">
<img src="./assets/images/repo.png" alt="" class="img-fluid" style="width: 3.5rem; height:auto;">
<div class="text-white d-flex align-items-center justify-content-center ms-3">
<p id="public_repos" class="m-0 p-0 fs-3 me-2">0</p>
</div>
</div>
<div class="d-flex align-items-center bg-dark p-3 rounded-3 me-4 mb-3" style="width: max-content;">
<img src="./assets/images/star.png" alt="" class="img-fluid" style="width: 3.5rem; height:auto;">
<div class="text-white d-flex align-items-center justify-content-center ms-3">
<p id="starred" class="m-0 p-0 fs-3 me-2">0</p>
</div>
</div>
<div class="d-flex align-items-center bg-dark p-3 rounded-3 me-4 mb-3" style="width: max-content;">
<img src="./assets/images/followers.png" alt="" class="img-fluid" style="width: 3.5rem; height:auto;">
<div class="text-white d-flex align-items-center justify-content-center ms-3">
<p id="followers" class="m-0 p-0 fs-3 me-2">0</p>
</div>
</div>
<div class="d-flex align-items-center bg-dark p-3 rounded-3 me-4 mb-3" style="width: max-content;">
<img src="./assets/images/following.png" alt="" class="img-fluid" style="width: 3.5rem; height:auto;">
<div class="text-white d-flex align-items-center justify-content-center ms-3">
<p id="following" class="m-0 p-0 fs-3 me-2">0</p>
</div>
</div>
</div>
<div class="text-white ms-5 -5 mt-4"><p class="fs-4">Public Repositories</p></div>
<div class="d-flex justify-content-between ms-5">
<div>
<button id="changeButton" class="btn btn-dark"> Click to Change Requests Per Page</button>
<div id="sliderContainer" class="p-2 text-white rounded-4" style="display: none; background: linear-gradient(90deg, #FF7155 0%, #ED257D 100%);">
<label for="requestsPerPage" class="ms-2 mb-2">Requests Per Page: <span id="requestsPerPageValue">10</span></label>
<input type="range" id="requestsPerPage" name="requestsPerPage" class="ms-lg-2" style="color: blue;" min="1" max="100" value="10">
<button id="submitChanges" class="btn btn-dark ms-lg-4 mt-lg-0 mt-md-3 mt-sm-3">Submit Changes</button>
</div>
</div>
<div id="search" class="d-flex justify-content-center align-items-center gap-2 px-2 rounded-3">
<input type="text" id="searchBox" class="rounded-3 px-3" placeholder="Search the user's repositories..." style="width: 100%;" />
<button id="searchButton" class="btn btn-dark">Search</button>
</div>
</div>
<div id="pagination" class="mt-4 ms-5 d-flex justify-content-center align-items-center">
<button id="prevPageBtn" class="btn btn-dark" disabled><img src="./assets/images/previous.png" style="height:1.3rem;"></button>
<div id="paginationContainer" class="d-flex"></div>
<button id="nextPageBtn" class="btn btn-dark"><img src="./assets/images/next.png" style="height:1.3rem;"></button>
</div>
<div id="searches" class="mt-4 ms-5 px-2 py-3 rounded-3" style="border:2px solid white;">
<button id="hide-search" class="btn btn-dark mt-2 mb-3 ">Hide Searches</button>
<div id="searchesContainer" class="d-flex flex-wrap" style="width:60vw; height:auto;"></div>
</div>
<div id="repos" class="mt-4 ms-5">
<div id="loader2" class=" z-1 d-flex justify-content-center align-items-center d-flex flex-column">
<img src="./assets/images/loading.gif" alt="" style="height: 20vh;">
<div class="text-white">Loading</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
<script src="jquery-3.7.1.min.js"></script>
<script src="./script.js"></script>
</html>