-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.css
More file actions
148 lines (134 loc) · 4.4 KB
/
Copy pathpopup.css
File metadata and controls
148 lines (134 loc) · 4.4 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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
hr {
border: 0;
border-top: 1px solid #000;
opacity: .15;
width: 95%;
}
.btn {
width: 180px;
height: 50px;
text-align: center;
background: #ffffff;
border: 2px solid;
border-radius: 5px;
font-weight: bold;
margin-left: 10px;
margin-right: 10px;
-webkit-transition: background-color 0.3s ease-out;
-moz-transition: background-color 0.3s ease-out;
-o-transition: background-color 0.3s ease-out;
transition: background-color 0.3s ease-out;
}
.btn-large {
width: 380px;
height: 50px;
text-align: center;
background: #ffffff;
border: 2px solid;
border-radius: 5px;
font-weight: bold;
margin-left: 10px;
margin-right: 10px;
-webkit-transition: background-color 0.3s ease-out;
-moz-transition: background-color 0.3s ease-out;
-o-transition: background-color 0.3s ease-out;
transition: background-color 0.3s ease-out;
}
.btn-circle {
width: 50px;
height: 50px;
text-align: center;
background: #ffffff;
border: 2px solid;
border-radius: 5px;
font-weight: bold;
margin-left: 10px;
margin-right: 10px;
-webkit-transition: background-color 0.3s ease-out;
-moz-transition: background-color 0.3s ease-out;
-o-transition: background-color 0.3s ease-out;
transition: background-color 0.3s ease-out;
border-radius: 50%;
}
.row {
width: 400px;
height: 50px;
display: flex;
flex-direction: row;
justify-content: center;
margin-top: 20px;
margin-bottom: 20px;
}
#coalition-theme-btn { color: black; border-color: black; }
#onoff-btn { color: #B22222; border-color: #B22222; }
#darkmode-btn { color: #243447; border-color: #243447; }
#fixednav-btn { color: rgb(112,128,144); border-color: rgb(112,128,144); }
.coalition-theme-btn-enabled {
color: white !important;
background-color: black;
-webkit-transition: background-color 0.3s ease-out;
-moz-transition: background-color 0.3s ease-out;
-o-transition: background-color 0.3s ease-out;
transition: background-color 0.3s ease-out;
}
.onoff-btn-enabled {
color: white !important;
border-color: #3CB371 !important;
background-color: #3CB371;
-webkit-transition: background-color 0.3s ease-out;
-moz-transition: background-color 0.3s ease-out;
-o-transition: background-color 0.3s ease-out;
transition: background-color 0.3s ease-out;
}
.darkmode-btn-enabled {
color: white !important;
background-color: #243447;
-webkit-transition: background-color 0.3s ease-out;
-moz-transition: background-color 0.3s ease-out;
-o-transition: background-color 0.3s ease-out;
transition: background-color 0.3s ease-out;
}
.fixednav-btn-enabled {
color: white !important;
background-color: rgb(112,128,144);
-webkit-transition: background-color 0.3s ease-out;
-moz-transition: background-color 0.3s ease-out;
-o-transition: background-color 0.3s ease-out;
transition: background-color 0.3s ease-out;
}
#federation-btn { color: rgb(65, 128, 219); border-color: rgb(65, 128, 219); }
#assembly-btn { color: rgb(160, 97, 209); border-color: rgb(160, 97, 209); }
#order-btn { color: rgb(255, 105, 80); border-color: rgb(255, 105, 80); }
#alliance-btn { color: rgb(51, 196, 127); border-color: rgb(51, 196, 127); }
.federation-btn-enabled {
color: white !important;
background-color: rgb(65, 128, 219);
-webkit-transition: background-color 0.3s ease-out;
-moz-transition: background-color 0.3s ease-out;
-o-transition: background-color 0.3s ease-out;
transition: background-color 0.3s ease-out;
}
.assembly-btn-enabled {
color: white !important;
background-color: rgb(160, 97, 209);
-webkit-transition: background-color 0.3s ease-out;
-moz-transition: background-color 0.3s ease-out;
-o-transition: background-color 0.3s ease-out;
transition: background-color 0.3s ease-out;
}
.order-btn-enabled {
color: white !important;
background-color: rgb(255, 105, 80);
-webkit-transition: background-color 0.3s ease-out;
-moz-transition: background-color 0.3s ease-out;
-o-transition: background-color 0.3s ease-out;
transition: background-color 0.3s ease-out;
}
.alliance-btn-enabled {
color: white !important;
background-color: rgb(51, 196, 127);
-webkit-transition: background-color 0.3s ease-out;
-moz-transition: background-color 0.3s ease-out;
-o-transition: background-color 0.3s ease-out;
transition: background-color 0.3s ease-out;
}