-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (34 loc) · 986 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Gemini demo</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style>
body {
font-family: Verdana, Geneva, sans-serif;
}
button {
position: relative;
background: #fff;
border: 0;
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
line-height: 31px;
font-size: 15px;
outline: 0;
}
button:hover {
border-color: rgba(55, 0, 0, 0.5);
color: rgb(255, 255, 250);
background-color: #39afff;
}
button:active {
background-color: #f6f5f3;
border-color: rgba(0, 0, 0, 0.5);
color: #39afff;
}
</style>
</head>
<body>
<button>Gemini Button</button>
</body>
</html>