-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUI_graph2.css
More file actions
79 lines (77 loc) · 1.42 KB
/
UI_graph2.css
File metadata and controls
79 lines (77 loc) · 1.42 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
.graph2BG {
position: absolute;
left: 60%;
top: 0%;
width: 40%;
height: 30%;
}
.graph2BG h1 {
font-family: Source Han Sans CN;
font-size: 16px;
color: black;
font-weight: normal;
}
.graph2BG select {
font-size: 14px;
display: inline-block;
width: 200px;
position: relative;
vertical-align: middle;
padding: 0;
overflow: hidden;
background-color: #fff;
color: #555;
border: 1px solid #aaa;
text-shadow: none;
border-radius: 4px;
transition: box-shadow 0.25s ease;
z-index: 2;
}
.graph2BG select:hover {
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}
.graph2BG select:before {
content: "";
position: absolute;
width: 0;
height: 0;
border: 10px solid transparent;
border-top-color: #ccc;
top: 14px;
right: 10px;
cursor: pointer;
z-index: -2;
}
.graph2BG select select {
cursor: pointer;
padding: 10px;
width: 100%;
border: none;
background: transparent;
background-image: none;
-webkit-appearance: none;
-moz-appearance: none;
}
.graph2BG select select:focus {
outline: none;
}
#timeLine {
position: absolute;
left: 60%;
top: 10%;
width: 40%;
height: 30%;
font-family: Source Han Sans CN;
font-size: 16px;
color: black;
}
#demo {
position: absolute;
left: 60%;
top: 5%;
width: 40%;
height: 30%;
font-family: Source Han Sans CN;
font-size: 16px;
color: black;
}