-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
139 lines (120 loc) · 3.37 KB
/
style.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/* Custom jQuery Confirm Styles */
.jconfirm .jconfirm-box {
background-color: rgba(0, 0, 0, 0.9);
border: 1px solid #ffd700;
border-radius: 10px;
box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}
.jconfirm .jconfirm-box .jconfirm-title-c {
color: #ffd700;
font-weight: bold;
text-align: center;
}
.jconfirm .jconfirm-box .jconfirm-content {
color: #ffffff;
text-align: center;
}
.jconfirm .jconfirm-box .jconfirm-buttons {
text-align: center;
}
.jconfirm .jconfirm-box .jconfirm-buttons .btn.btn-default, .jconfirm-content button {
background-color: #c9b458;
border: none;
border-radius: 5px;
color: #000000 !important;
cursor: pointer;
font-size: 14px;
font-weight: bold !important;
margin: 0 5px;
padding: 10px 20px;
transition: background-color 0.3s ease, color 0.3s ease;
}
.jconfirm .jconfirm-box .jconfirm-buttons .btn.btn-default:hover, .jconfirm-content button:hover {
background-color: #d4c16a;
}
.jconfirm .jconfirm-box input[type="text"],
.jconfirm .jconfirm-box input[type="number"],
.jconfirm .jconfirm-box textarea {
background-color: #000000;
border: 1px solid #ffd700;
border-radius: 5px;
color: #ffffff;
margin-bottom: 10px;
padding: 8px;
width: 100%;
box-sizing: border-box;
}
.jconfirm .jconfirm-box input[type="text"]:focus,
.jconfirm .jconfirm-box input[type="number"]:focus,
.jconfirm .jconfirm-box textarea:focus {
outline: none;
width: 100%;
}
.jconfirm .jconfirm-box input[type="text"]::placeholder,
.jconfirm .jconfirm-box input[type="number"]::placeholder,
.jconfirm .jconfirm-box textarea::placeholder {
color: rgba(255, 255, 255, 0.5);
}
.caption-word {
transition: text-shadow 0.1s ease-in, text-shadow 0.5s ease-out;
text-shadow: 0 0 5px rgba(255,255,255,0);
}
.caption-word.highlighted {
text-shadow: 0 0 5px rgba(255,255,255,0.7);
}
.overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
transition: all 1s ease-in-out;
background-color: rgba(0, 0, 0, 0);
backdrop-filter: blur(0px);
-webkit-backdrop-filter: blur(0px);
z-index: 10;
display: flex;
justify-content: center;
align-items: center;
color: #ffffff;
font-size: 18px;
font-weight: bold;
}
/* Tippy theme for FableVoice */
.tippy-box[data-theme~='fablevoice'] {
background-color: black;
color: #ffffff;
border: 1px solid black;
border-radius: 5px;
font-size: 14px;
padding: 8px 12px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.tippy-box[data-theme~='fablevoice'][data-placement^='top'] > .tippy-arrow::before {
border-top-color: black;
}
.tippy-box[data-theme~='fablevoice'][data-placement^='bottom'] > .tippy-arrow::before {
border-bottom-color: black;
}
.tippy-box[data-theme~='fablevoice'][data-placement^='left'] > .tippy-arrow::before {
border-left-color: black;
}
.tippy-box[data-theme~='fablevoice'][data-placement^='right'] > .tippy-arrow::before {
border-right-color: black;
}
.tippy-box[data-theme~='fablevoice'] .tippy-content {
padding: 0;
background-color: hsl(204deg 35.71% 5.49%);
}
.tippy-box[data-theme~='fablevoice'] .tippy-content .quest-tooltip {
display: flex;
align-items: center;
padding: 8px 12px;
}
.character-tooltip {
width: 200px;
height: 200px;
position: relative;
overflow: hidden;
border-radius: 10px;
}