-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
151 lines (133 loc) · 3.25 KB
/
styles.css
File metadata and controls
151 lines (133 loc) · 3.25 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
149
150
151
body {
background-color: #1b1b1b;
color: #d3d3d3;
font-family: Arial, sans-serif;
}
.container {
display: flex;
justify-content: space-between;
padding: 20px;
}
#filterSidebar {
background-color: #333;
padding: 20px;
border-radius: 8px;
width: 25%;
}
#spellFilters, #classFilters {
margin-bottom: 20px;
}
#spellFilters h2, #classFilters h2 {
color: #ffffff;
}
/* Ensures the label and checkbox are aligned */
#filterSidebar label {
display: inline-flex;
align-items: center;
margin-bottom: 10px;
cursor: pointer;
font-size: 16px; /* Font size for all labels */
}
#filterSidebar input[type="checkbox"] {
margin-right: 10px;
}
#filterSidebar button {
display: block;
width: 100%;
margin-top: 10px;
margin-bottom: 10px;
padding: 10px;
background-color: #007bff;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
.class-group {
display: flex;
align-items: center;
margin-bottom: 10px;
}
.class-icon {
width: 24px;
height: 24px;
margin-right: 10px;
}
#spellViewer {
background-color: #333;
padding: 20px;
border-radius: 8px;
width: 70%;
}
#spellViewer h1 {
color: #ffffff;
}
#spellViewer input[type="file"],
#spellViewer input[type="text"],
#spellViewer select,
#spellViewer textarea {
width: calc(100% - 20px);
margin-bottom: 5px;
padding: 10px;
background-color: #222;
color: white;
border: 1px solid #444;
border-radius: 4px;
}
#spellViewer button {
display: inline-block;
margin: 10px 0;
padding: 10px;
background-color: #007bff;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
width: auto;
transition: background-color 0.3s ease; /* Smooth background color transition */
}
#spellViewer button:hover {
background-color: #0056b3; /* Darker shade on hover */
}
#copyAllSpellsButton {
width: 100%; /* Full width */
padding: 15px; /* Adjust padding for better size */
font-size: 24px; /* Set font size */
border: 1px solid #007bff; /* Add border styling */
border-radius: 5px; /* Rounded corners */
background-color: #007bff; /* Button color */
color: white; /* Text color */
cursor: pointer; /* Pointer cursor on hover */
text-align: center; /* Center text */
box-sizing: border-box; /* Include padding and border in element's total width and height */
margin-top: 30px; /* Add space above the button */
transition: background-color 0.3s ease; /* Smooth background color transition */
}
#copyAllSpellsButton:hover {
background-color: #0056b3; /* Darker shade on hover */
}
.copy-input {
width: auto;
display: inline-block;
margin-left: 0px;
padding: 10px;
background-color: #222;
color: white;
border: 1px solid #444;
border-radius: 4px;
}
.tooltip {
display: none;
background-color: #333;
color: white;
padding: 5px;
border-radius: 4px;
position: absolute;
z-index: 1;
left: 50%;
transform: translateX(-50%);
white-space: nowrap;
}
.show-tooltip {
display: inline-block;
}