-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbeybuilder.css
More file actions
127 lines (109 loc) · 2.54 KB
/
beybuilder.css
File metadata and controls
127 lines (109 loc) · 2.54 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
/*=========================================================*
*BeyBuilder v1.1 for Dynamite Battle and Burst Ultimate *
*Author: Fabel *
*Copyright 2022 *
*=========================================================*/
/* styling for drop downs */
.select-basic{
color: #000;
background-color: #67becf;
border-color: #59298c;
padding: 3px;
margin: 3px;
}
.select-basic:hover{
color: #fff;
background-color: #59298c;
border-color: #67becf;
}
.select-list{
color:#fff;
background-color: #59298c;
border-color: #59298c;
padding: 3px;
margin: 3px;
}
.select-list:hover{
color: #fff;
background-color: #59298c;
border-color: #67becf;
}
/* styling for delete buttons */
.btn-danger {
color: #000;
background-color: #67becf;
border-color: #59298c;
padding: 4px;
margin: 3px;
}
.btn-danger:hover {
color: #fff;
background-color: #8c2930;
border-color: #67becf;
}
.btn-danger:focus,
.btn-danger.focus {
box-shadow: 0 0 0 .2rem #8c2930;
}
/* styling for basic buttons */
.btn-basic {
color: #000;
background-color: #67becf;
border-color: #59298c;
padding: 4px;
margin: 3px;
}
.btn-basic:hover {
color: #fff;
background-color: #59298c;
border-color: #67becf;
}
.btn-basic:focus,
.btn-basic.focus {
box-shadow: 0 0 0 .2rem #67becf;
}
.btn-basic:focus-visible,
.btn-basic.focus-visible {
background-color: #67becf;
box-shadow: 0 0 0 .2rem #59298c;
}
.btn-basic.disabled,
.btn-basic:disabled {
color: #000;
background-color: #f8f9fa;
border-color: #f8f9fa;
}
.btn-basic:not(:disabled):not(.disabled):active,
.btn-basic:not(:disabled):not(.disabled).active,
.show>.btn-basic.dropdown-toggle {
color: #000;
background-color: #d0d0d0;
border-color: #c0c0c0;
}
.btn-basic:not(:disabled):not(.disabled):active:focus,
.btn-basic:not(:disabled):not(.disabled).active:focus,
.show>.btn-basic.dropdown-toggle:focus {
box-shadow: 0 0 0 .2rem rgba(190, 190, 190, 0.5);
}
/* make sure tables and table elements have the proper borders */
td, tr {
border-bottom: 1px solid black;
border-top: 1px solid black;
border-color: #fff;
}
table{
border: 1px solid #fff;
}
/* make modal headers and footers sticky */
.modal-header--sticky {
position: sticky;
top: 0;
background-color: inherit;
z-index: 1055;
}
.modal-footer--sticky {
position: sticky;
bottom: 0;
background-color: inherit;
z-index: 1055;
}