forked from Dregu/s2tracker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.css
105 lines (105 loc) · 2.02 KB
/
main.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
white-space: nowrap;
}
body {
background-color: #222222;
color: #eee;
font-family: 'Segoe UI', sans-serif;
}
#container {
position: relative;
height: 100vh;;
}
#journal {
display: block;
flex-direction: column;
position: absolute;
bottom: 0;
}
.cat {
display: flex;
float: left;
clear: both;
}
#cityofgold, #abzu, #duat, #tiamatsthrone, #eggplantworld, #hundunshideaway, #cosmicocean, #olmecslair {
clear: none;
}
.items {
display: flex;
flex-wrap: wrap;
}
.header {
width: 160px;
height: 32px;
flex-shrink: 0;
}
.header .name {
width: 80px;
font-size: 0.8em;
display: inline-block;
cursor: pointer;
}
.header .found {
text-align: right;
width: 30px;
display: inline-block;
}
.header .total {
width: 30px;
display: inline-block;
}
.break {
flex-basis: 100%;
order: 1;
}
.item {
width: auto;
height: 32px;
order: 0;
cursor: pointer;
}
.done {
display: none
}
.terra, .hh, .eggpants, .shoppie, .tun, .yang, .bodyguard, .cavemanshoppie, .ghistshoppie, .vanhorsing, .parsley, .parsnip, .parmesan, .sparrow, .beg {
order: 2;
}
.ana, .roffy, .colin, .margaret {
display: none;
}
.totemtrap, .liontrap, .slidingwall, .stickytrap {
height: 32px;
width: 16px;
margin: 0 8px;
order: 2;
}
.frogtrap {
height: 16px;
width: 32px;
margin: 8px 0;
order: 2;
}
.giantclam, .boulder, .giantcrushtrap, .logtrap, .bonedrop, .yama, .tusk, .waddler, .ammit, .anubis, .anubisii, .apep, .celestialjelly, .eggplantminister, .ghost, .giantfly, .giantspider, .goliathfrog, .greathumphead, .hundun, .kingu, .lahamu, .lamassu, .lavamander, .mechrider, .mummy, .olmec, .osiris, .pangxie, .queenbee, .quillback, .tiamat, .yetiking, .yetiqueen {
width: 32px;
height: 32px;
order: 3;
}
#percent {
width: 64px;
min-width: 64px;
text-align: center;
color: #eee;
font-size: 20px;
line-height: 32px;
font-weight: bold;
float: left;
}
@media only screen and (max-width: 799px) {
.cat {
clear: both!important;
display: block;
}
}