forked from quisquous/cactbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfisher.css
107 lines (94 loc) · 1.62 KB
/
fisher.css
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#fisher {
display: none;
padding: 0.1em;
font-size: 19px;
color: #fff;
height: 100%;
width: 100%;
background-color: rgb(0 0 0 / 10%);
text-shadow:
1px -1px 0 #000,
-1px 1px 0 #000,
1px 1px 0 #000,
-1px -1px 0 #000;
}
#fisher-head {
display: flex;
justify-content: space-between;
border-bottom: 1px solid #000;
padding: 0.1em 1em;
box-sizing: border-box;
height: 2.6em;
}
#cast-duration::before {
content: "Cast time";
display: block;
font-size: 0.5em;
}
#cast-duration {
text-align: right;
font-size: 1.3em;
}
#place-name::before {
content: "@ ";
}
#fisher-depth {
display: flex;
position: relative;
height: calc(100% - 2.6em);
}
#fisher-arrow-well {
position: relative;
width: 5%;
text-align: right;
height: calc(100% - 8px);
}
#fisher-depth-well {
width: 20%;
display: flex;
height: 100%;
justify-content: space-between;
}
#fisher-arrow {
position: absolute;
width: 100%;
top: 0;
line-height: 10px;
}
#fisher-arrow::before {
content: " ";
display: block;
position: absolute;
width: 360%;
border-bottom: 1px solid #000;
border-top: 1px solid #fff;
left: 100%;
top: 50%;
transform: translateY(-50%);
box-sizing: border-box;
z-index: 20;
}
.fisher-well {
width: 32%;
height: calc(100% - 4px);
margin-top: 4px;
position: relative;
}
.well-entry {
position: absolute;
width: calc(100% - 2px);
border: 1px solid #000;
border-radius: 3px;
z-index: 10;
}
#fisher-table {
width: 75%;
height: 100%;
color: #fff;
text-align: center;
position: relative;
}
#fisher-table .table-row {
opacity: 0.7;
height: 10%;
}