Skip to content

Commit 815f0a7

Browse files
NFC-102 Web eID for Mobile authentication support for web-eid example
Signed-off-by: Sander Kondratjev <[email protected]>
1 parent 66602d7 commit 815f0a7

22 files changed

+1880
-199
lines changed

example/public/css/bootstrap.min.css

Lines changed: 4 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example/public/css/main.css

Lines changed: 140 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
1+
body {
2+
font-family: "Inv Maison Neue","Maison Neue",-apple-system,BlinkMacSystemFont,"Open Sans",open-sans,sans-serif;
3+
}
4+
5+
.has-advanced-upload {
6+
outline: 2px dashed #92b0b3;
7+
outline-offset: -10px;
8+
9+
-webkit-transition: outline-offset .25s ease-in-out, background-color .25s linear;
10+
transition: outline-offset .25s ease-in-out, background-color .25s linear;
11+
}
12+
13+
.adding-signature {
14+
height: 14px;
15+
color: #000000;
16+
font-size: 32px;
17+
font-weight: bold;
18+
letter-spacing: 0;
19+
line-height: 14px;
20+
}
21+
22+
.welcome-line {
23+
height: 40px;
24+
color: #000000;
25+
font-size: 14px;
26+
letter-spacing: 0;
27+
line-height: 20px;
28+
margin-top: 1rem;
29+
}
30+
31+
#webeid-logout-button {
32+
height: 2.5rem;
33+
}
34+
35+
#file-drop-area {
36+
margin: 0 10rem;
37+
padding-top: 2rem;
38+
box-sizing: border-box;
39+
outline: 2px dashed #92b0b3;
40+
outline-offset: -10px;
41+
border-radius: 3px;
42+
background-color: #F5F5F5;
43+
}
44+
45+
.is-dragover {
46+
background-color: #b7dbde !important;
47+
outline-offset: -20px !important;
48+
outline-color: #ffffff !important;
49+
}
50+
51+
#file-name, #file-drop-area, .welcome-line {
52+
text-align: center;
53+
}
54+
55+
.eu-logo-fixed {
56+
display: block;
57+
position: fixed;
58+
background: #fff;
59+
bottom: 0;
60+
left: 0;
61+
margin: 0;
62+
padding: 5px 20px;
63+
text-align: center;
64+
z-index: 1000;
65+
}
66+
67+
.eu-logo-fixed img {
68+
height: 86px;
69+
}
70+
71+
/* Remove blue focus outline from accordion buttons */
72+
.accordion-button:focus {
73+
box-shadow: none !important;
74+
border-color: rgba(0,0,0,.125);
75+
}
76+
77+
/* Remove blue highlight from active/open accordion buttons */
78+
.accordion-button:not(.collapsed) {
79+
box-shadow: none !important;
80+
border-color: rgba(0,0,0,.125);
81+
}
82+
83+
/* Remove any focus-visible styles */
84+
.accordion-button:focus-visible {
85+
box-shadow: none !important;
86+
outline: none !important;
87+
}
88+
89+
/* Remove outline from accordion items */
90+
.accordion-button {
91+
outline: none !important;
92+
font-weight: bold !important;
93+
}
94+
95+
/* Remove background color from opened accordion sections */
96+
.accordion-button:not(.collapsed) {
97+
background-color: transparent !important;
98+
color: inherit !important;
99+
}
100+
101+
/* Keep consistent background for all accordion states */
102+
.accordion-button,
103+
.accordion-button.collapsed,
104+
.accordion-button:hover,
105+
.accordion-button:active {
106+
background-color: transparent !important;
107+
}
108+
109+
/* Remove any highlighting from accordion body and items */
110+
.accordion-item {
111+
background-color: transparent !important;
112+
border: none !important;
113+
}
114+
115+
.accordion-body {
116+
background-color: transparent !important;
117+
}
118+
119+
/* Mobile callback loading styles */
120+
.loading-page {
121+
text-align: center;
122+
padding-top: 3rem;
123+
font-family: system-ui, sans-serif;
124+
}
125+
126+
.spinner {
127+
width: 40px;
128+
height: 40px;
129+
border: 4px solid #ccc;
130+
border-top-color: #007bff;
131+
border-radius: 50%;
132+
animation: spin 1s linear infinite;
133+
margin: 1rem auto;
134+
}
135+
136+
@keyframes spin {
137+
to {
138+
transform: rotate(360deg);
139+
}
140+
}
11.2 KB
Loading
45.4 KB
Loading
10.1 KB
Loading

example/public/img/eu-fund-flags.svg

Lines changed: 787 additions & 0 deletions
Loading
651 Bytes
Loading
1.26 KB
Loading

example/public/img/favicon.ico

15 KB
Binary file not shown.

example/public/js/bootstrap.bundle.min.js

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)