Update index.html
Browse files- index.html +44 -1
index.html
CHANGED
@@ -77,6 +77,41 @@
|
|
77 |
width: 20px;
|
78 |
height: 20px;
|
79 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
</style>
|
81 |
</head>
|
82 |
<body>
|
@@ -88,7 +123,15 @@
|
|
88 |
<div class="graph-container">
|
89 |
<iframe src="co_user.html" width="100%" height="100%" frameborder="0"></iframe>
|
90 |
</div>
|
91 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
<footer>
|
93 |
<img src="https://huggingface.co/spaces/bunkalab/README/raw/main/bunka_logo.png" alt="Bunka Logo" class="logo">
|
94 |
<div class="social-links">
|
|
|
77 |
width: 20px;
|
78 |
height: 20px;
|
79 |
}
|
80 |
+
.pagination {
|
81 |
+
display: flex;
|
82 |
+
justify-content: center;
|
83 |
+
align-items: center;
|
84 |
+
padding: 15px 0;
|
85 |
+
background-color: white;
|
86 |
+
box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
|
87 |
+
}
|
88 |
+
.pagination button {
|
89 |
+
background-color: transparent;
|
90 |
+
border: none;
|
91 |
+
color: var(--secondary-color);
|
92 |
+
font-size: 16px;
|
93 |
+
padding: 5px 10px;
|
94 |
+
margin: 0 5px;
|
95 |
+
cursor: pointer;
|
96 |
+
transition: color 0.3s ease;
|
97 |
+
}
|
98 |
+
.pagination button:hover {
|
99 |
+
color: var(--hover-color);
|
100 |
+
}
|
101 |
+
.pagination button.active {
|
102 |
+
color: var(--primary-color);
|
103 |
+
font-weight: bold;
|
104 |
+
}
|
105 |
+
.pagination .page-numbers {
|
106 |
+
display: flex;
|
107 |
+
align-items: center;
|
108 |
+
}
|
109 |
+
.pagination .divider {
|
110 |
+
width: 1px;
|
111 |
+
height: 20px;
|
112 |
+
background-color: var(--secondary-color);
|
113 |
+
margin: 0 10px;
|
114 |
+
}
|
115 |
</style>
|
116 |
</head>
|
117 |
<body>
|
|
|
123 |
<div class="graph-container">
|
124 |
<iframe src="co_user.html" width="100%" height="100%" frameborder="0"></iframe>
|
125 |
</div>
|
126 |
+
<div class="pagination">
|
127 |
+
<button id="prev"><</button>
|
128 |
+
<div class="page-numbers">
|
129 |
+
<button id="page1" class="active">1</button>
|
130 |
+
<div class="divider"></div>
|
131 |
+
<button id="page2">2</button>
|
132 |
+
</div>
|
133 |
+
<button id="next">></button>
|
134 |
+
</div>
|
135 |
<footer>
|
136 |
<img src="https://huggingface.co/spaces/bunkalab/README/raw/main/bunka_logo.png" alt="Bunka Logo" class="logo">
|
137 |
<div class="social-links">
|