forked from WG-SpaceCoder/AutoTrimps
-
Notifications
You must be signed in to change notification settings - Fork 51
/
tabs.css
115 lines (102 loc) · 2.75 KB
/
tabs.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
108
109
110
111
112
113
114
115
/*For the autotrimps Top right Story/Loot/Unlocks/Combat/Settings/AutoTrimps Tabs, so they dont overlap*/
#logBtnGroup div {
width: 19%!important;
}
div#logConfigHolder.btn-group {
width: 5%!important; /* overriding like 3 previous things :/ */
}
#logConfigBtn {
padding: 6px 0px!important;
}
/*For the SettingsGUI.js settings window*/
/* Style the list */
ul.tab {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
border: 1px solid #ccc;
background-color: #f1f1f1;
border-radius: .5ex;
}
/* Rounded corners on AT inner tabs*/
div.tabcontent { border-radius: 1ex; }
/* Rounded corners for AT menu buttons + shadow */
div.ATbtn {
border-radius: 1ex;
box-shadow: 2px 2px 4px -2px #007bb7;
}
/* Rounded corners(small) for ALL menu buttons - no.
.settingsBtn { border-radius: 0.25ex; }
*/
/* spacing in map/world GRID between icons of
new Fast >> Icon and original loot icon */
span.glyphicon {
padding-left: 3px;
}
/* Float the list items side by side */
ul.tab li { float: left; }
/* Style the links inside the list items */
ul.tab li a {
display: inline-block;
color: black;
text-align: center;
padding: 0.5vh 1vw;
text-decoration: none;
transition: 0.3s;
font-size: 2vh;
}
/* Create an active/current tablink class */
ul.tab li a.active {background-color: #ccc;}
/* Change background color of links on hover */
ul.tab li a:hover {background-color: #ddd;}
/* Create a pause red notification */
ul.tab li a.PauseAT.active {background-color: #A91B0D;}
/* Style the tab content */
.tabcontent {
display: none;
border: 1px solid #ccc;
border-top: none;
-webkit-animation: fadeEffect 1s;
animation: fadeEffect 1s; /* Fading effect takes 1 second */
transform: translateZ(0);
}
@-webkit-keyframes fadeEffect {
from {opacity: 0;}
to {opacity: 1;}
}
@keyframes fadeEffect {
from {opacity: 0;}
to {opacity: 1;}
}
#tipText b.AutoEggs,
#AutoEggs.settingBtntrue {
-webkit-animation: eggGradient 3s infinite;
animation: eggGradient 3s infinite;
color: black;
}
@keyframes eggGradient {
0% { background-color: #83ddd6; }
25% { background-color: #f4c7c7; }
50% { background-color: #8beab7; }
75% { background-color: #f6f297; }
100% { background-color: #83ddd6; }
}
/* stop the additional breed timer we added from pushing down the whole Breeding area and pushing Traps out */
#trapArea {
border: 1px solid white;
display: inline-block;
margin-bottom: 2%;
margin-top: 0;
padding: 0;
}
/* stop the Traps building progress from showing through the AT settings screen */
#animationDiv {
z-index: -1!important;
}
.queueItemName, #queueTimeRemaining {
z-index: 0!important;
}
select#AutoPortal.ATbtn {
font-size: 0.9vw!important;
}