-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.css
More file actions
120 lines (109 loc) · 3.19 KB
/
Copy pathcontent.css
File metadata and controls
120 lines (109 loc) · 3.19 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
#drafted-overlay,
#drafted-hud,
#drafted-emergency-exit {
box-sizing: border-box !important;
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace !important;
letter-spacing: 0.08em !important;
text-transform: uppercase !important;
z-index: 2147483647 !important;
}
#drafted-overlay {
position: fixed !important;
inset: 0 !important;
display: flex !important;
flex-direction: column !important;
align-items: center !important;
justify-content: center !important;
gap: 18px !important;
padding: 32px !important;
color: #ece5c7 !important;
background: rgba(40, 46, 31, 0.96) !important;
text-align: center !important;
pointer-events: none !important;
}
.drafted-overlay-title {
font-size: clamp(28px, 5vw, 72px) !important;
font-weight: 900 !important;
line-height: 1 !important;
text-shadow: 0 0 18px rgba(0, 0, 0, 0.35) !important;
}
.drafted-overlay-subtitle {
font-size: clamp(15px, 2vw, 28px) !important;
font-weight: 700 !important;
line-height: 1.2 !important;
color: #c1c79a !important;
}
#drafted-hud {
position: fixed !important;
top: 14px !important;
right: 14px !important;
width: max-content !important;
max-width: calc(100vw - 16px) !important;
white-space: nowrap !important;
padding: 10px 13px !important;
border: 2px solid #a5ac75 !important;
color: #ece5c7 !important;
background: #2e3523 !important;
font-size: 12px !important;
font-weight: 800 !important;
line-height: 1 !important;
box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.35) !important;
pointer-events: auto !important;
cursor: grab !important;
user-select: none !important;
touch-action: none !important;
transition: opacity 180ms ease, transform 180ms ease !important;
}
#drafted-hud.is-dragging {
cursor: grabbing !important;
box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.35) !important;
}
#drafted-hud.is-disappearing {
opacity: 0 !important;
transform: translateY(-6px) !important;
}
#drafted-emergency-exit {
position: absolute !important;
top: 8px !important;
left: 8px !important;
width: 26px !important;
height: 24px !important;
margin: 0 !important;
padding: 0 !important;
border: 1px solid rgba(165, 172, 117, 0.72) !important;
border-radius: 2px !important;
color: #d8d1b5 !important;
background: rgba(46, 53, 35, 0.84) !important;
box-shadow: none !important;
cursor: pointer !important;
pointer-events: auto !important;
opacity: 0.58 !important;
transition: opacity 120ms ease, background 120ms ease !important;
}
#drafted-emergency-exit:hover,
#drafted-emergency-exit:focus-visible {
opacity: 1 !important;
background: #39412b !important;
}
#drafted-emergency-exit:disabled {
opacity: 0.2 !important;
cursor: default !important;
}
.drafted-exit-door {
position: absolute !important;
top: 5px !important;
right: 4px !important;
width: 8px !important;
height: 12px !important;
border: 1px solid currentColor !important;
border-left-width: 2px !important;
}
.drafted-exit-arrow {
position: absolute !important;
left: 3px !important;
top: 2px !important;
font-size: 13px !important;
font-weight: 900 !important;
line-height: 18px !important;
letter-spacing: 0 !important;
}