Aohanah commited on
Commit
64fb338
1 Parent(s): 4507e65

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +6 -4
index.html CHANGED
@@ -18,15 +18,17 @@
18
  .btn {
19
  display: inline-block;
20
  margin: 10px;
21
- padding: 10px 20px;
22
  background-color: #00B4F4;
23
  color: #fff;
24
  text-decoration: none;
25
  border-radius: 5px;
26
  }
27
  .btn:hover {
28
- background-color: #008CBA
29
- ;
 
 
30
  }
31
  </style>
32
  </head>
@@ -36,7 +38,7 @@
36
  <p>Welcome to Multi-Glau! Please click on the required model to proceed to the next step.</p>
37
  <a href="javascript:void(0)" onclick="customRedirect('https://huggingface.co/spaces/Aohanah/Exp1')" class="btn">Screening module</a>
38
  <a href="javascript:void(0)" onclick="customRedirect('https://huggingface.co/spaces/Aohanah/Exp2')" class="btn">Pre-Diagnosis Module</a>
39
- <a class="btn">Definitive diagnosis module is being deployed.</a>
40
  </div>
41
 
42
  <script>
 
18
  .btn {
19
  display: inline-block;
20
  margin: 10px;
21
+ padding: 10px 50px; /* 修改按钮的宽度 */
22
  background-color: #00B4F4;
23
  color: #fff;
24
  text-decoration: none;
25
  border-radius: 5px;
26
  }
27
  .btn:hover {
28
+ background-color: #008CBA;
29
+ }
30
+ .btn.gray {
31
+ background-color: #808080; /* 修改第三个按钮的颜色为灰色 */
32
  }
33
  </style>
34
  </head>
 
38
  <p>Welcome to Multi-Glau! Please click on the required model to proceed to the next step.</p>
39
  <a href="javascript:void(0)" onclick="customRedirect('https://huggingface.co/spaces/Aohanah/Exp1')" class="btn">Screening module</a>
40
  <a href="javascript:void(0)" onclick="customRedirect('https://huggingface.co/spaces/Aohanah/Exp2')" class="btn">Pre-Diagnosis Module</a>
41
+ <a class="btn gray">Definitive diagnosis module is being deployed.</a> <!-- 添加了 "gray" 类 -->
42
  </div>
43
 
44
  <script>