-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (47 loc) · 862 Bytes
/
style.css
File metadata and controls
52 lines (47 loc) · 862 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
p {
color: #efefef;
font-size: 14px;
margin: 0;
padding: 5px 10px;
}
select {
margin-top: 12px;
width: 100%;
}
#container {
position: relative;
overflow: hidden;
display: flex;
justify-content: center;
/* 水平居中 */
align-items: center;
/* 垂直居中 */
height: 100vh;
/* 使容器高度占满整个视口 */
}
/*t提示框*/
#tip {
border-radius: 5px;
cursor: pointer;
position: absolute;
right: 30px;
top: 40px;
background: rgba(30, 30, 30, 0.6);
width: 200px;
min-height: 300px;
z-index: 3;
}
#srcColor {
display: inline-block;
width: 16px;
height: 16px;
margin-left: 5px;
background-color: #ff3366;
}
#dstColor {
display: inline-block;
width: 16px;
height: 16px;
margin-left: 5px;
background-color: #3366ff;
}