-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathfloat-window.css
More file actions
61 lines (53 loc) · 1.7 KB
/
float-window.css
File metadata and controls
61 lines (53 loc) · 1.7 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
.go-top {
position: fixed; /* 设置fixed固定定位 */
bottom: 20px; /* 距离浏览器窗口下边框20px */
left: 20px; /* 距离浏览器窗口左边框20px */
z-index: 2147483646; /* z-index设置到最大以置于顶层 */
}
.go-top #ext-recoder-href {
display: block; /* 将<a>标签设为块元素,用于美化样式 */
text-decoration: none; /* 取消超链接下画线 */
color: #333; /* 设置文本颜色 */
background-color: #f2f2f2; /* 设置背景颜色 */
border: 1px solid #ccc; /* 设置边框样式 */
padding: 10px 20px; /* 设置内边距 */
border-radius: 5px; /* 设置圆角矩形 */
letter-spacing: 2px; /* 设置文字间距 */
}
.go-top a:hover, .go-top a:active {
text-decoration: none; /* 取消超链接下画线 */
}
.go-top a:visited {
color: #333;
}
.go-top#panel{
position: fixed; /* 设置fixed固定定位 */
bottom: 100px; /* 距离浏览器窗口下边框20px */
left: 35px; /* 距离浏览器窗口左边框120px */
}
.go-top#panel button{
border: 1px solid #ccc; /* 设置边框样式 */
padding: 10px 15px; /* 设置内边距 */
border-radius: 5px; /* 设置圆角矩形 */
}
.go-top.window {
position: fixed;
bottom: 20px;
left: 120px;
width: fit-content;
height: fit-content;
border: 1px solid #ccc; /* 设置边框样式 */
padding: 10px 20px; /* 设置内边距 */
background-color: #f2f2f2;
border-radius: 5px; /* 设置圆角矩形 */
}
#scroll-window form .form-group input {
width: 40px;
}
#text-window form .form-group textarea {
width: 300px;
}
.hidden {
display: none;
visibility: collapse;
}