-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (28 loc) · 812 Bytes
/
Copy pathindex.html
File metadata and controls
32 lines (28 loc) · 812 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Gemini demo</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style>
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(0, 0, 0, 0.5);
}
button:active {
background-color: #f6f5f3;
border-color: rgba(0, 0, 0, 0.5);
}
</style>
</head>
<body>
<button>Я Кнопка. А чего добился ты?</button>
</body>
</html>