-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkbd-navigation.css
103 lines (90 loc) · 1.9 KB
/
kbd-navigation.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
@import 'photon-colors.css';
@font-face {
font-family: 'Fira Sans Heavy';
src: url('fonts/FiraSans-Heavy.ttf');
}
@font-face {
font-family: 'Fira Sans';
src: url('fonts/FiraSans-Regular.ttf');
}
#navCurtain {
all: initial;
position: fixed;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
display: none;
justify-content: center;
align-items: center;
z-index: 9999;
}
#previewRect {
all: initial;
position: relative;
min-width: 700px;
max-width: 90%;
height: auto; /*200px*/
overflow: hidden;
background-color: var(--grey-90-a90);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#closeBtn {
all: initial;
position: absolute;
top: 16px;
right: 16px;
width: 32px;
height: 32px;
background-image: url(icons/close.svg);
cursor: pointer;
}
#addressLabel, #captionLabel {
all: initial;
text-decoration: none;
font-weight: normal;
}
#addressLabel {
font-family: 'Fira Sans Heavy';
font-size: 40pt;
text-shadow: 0px 0px 3px var(--white-100);
margin: 0px 64px 0px 64px;
color: transparent;
-webkit-text-stroke: 2px black; /*Non-standard*/
}
#miniature {
all: initial;
width: 550px;
height: 200px;
background-position: center top;
background-repeat: no-repeat;
background-size: cover;
}
#iconPlusCaption {
all: initial;
margin: 8px;
}
#iconImg {
all: initial;
height: 20px;
}
#iconImg[src=''] {
display: none;
}
#captionLabel {
margin-left: 8px;
font-family: 'Fira Sans';
font-size: 16pt;
color: var(--grey-10);
}
#hints {
all: initial;
font-family: 'Fira Sans';
font-size: 10pt;
font-style: italic;
text-align: center;
color: var(--grey-40);
}