-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathmain.css
More file actions
140 lines (119 loc) · 2.91 KB
/
main.css
File metadata and controls
140 lines (119 loc) · 2.91 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
body {
font-family: "Inv Maison Neue","Maison Neue",-apple-system,BlinkMacSystemFont,"Open Sans",open-sans,sans-serif;
}
.has-advanced-upload {
outline: 2px dashed #92b0b3;
outline-offset: -10px;
-webkit-transition: outline-offset .25s ease-in-out, background-color .25s linear;
transition: outline-offset .25s ease-in-out, background-color .25s linear;
}
.adding-signature {
height: 14px;
color: #000000;
font-size: 32px;
font-weight: bold;
letter-spacing: 0;
line-height: 14px;
}
.welcome-line {
height: 40px;
color: #000000;
font-size: 14px;
letter-spacing: 0;
line-height: 20px;
margin-top: 1rem;
}
#webeid-logout-button {
height: 2.5rem;
}
#file-drop-area {
margin: 0 10rem;
padding-top: 2rem;
box-sizing: border-box;
outline: 2px dashed #92b0b3;
outline-offset: -10px;
border-radius: 3px;
background-color: #F5F5F5;
}
.is-dragover {
background-color: #b7dbde !important;
outline-offset: -20px !important;
outline-color: #ffffff !important;
}
#file-name, #file-drop-area, .welcome-line {
text-align: center;
}
.eu-logo-fixed {
display: block;
position: fixed;
background: #fff;
bottom: 0;
left: 0;
margin: 0;
padding: 5px 20px;
text-align: center;
z-index: 1000;
}
.eu-logo-fixed img {
height: 120px;
}
/* Remove blue focus outline from accordion buttons */
.accordion-button:focus {
box-shadow: none !important;
border-color: rgba(0,0,0,.125);
}
/* Remove blue highlight from active/open accordion buttons */
.accordion-button:not(.collapsed) {
box-shadow: none !important;
border-color: rgba(0,0,0,.125);
}
/* Remove any focus-visible styles */
.accordion-button:focus-visible {
box-shadow: none !important;
outline: none !important;
}
/* Remove outline from accordion items */
.accordion-button {
outline: none !important;
font-weight: bold !important;
}
/* Remove background color from opened accordion sections */
.accordion-button:not(.collapsed) {
background-color: transparent !important;
color: inherit !important;
}
/* Keep consistent background for all accordion states */
.accordion-button,
.accordion-button.collapsed,
.accordion-button:hover,
.accordion-button:active {
background-color: transparent !important;
}
/* Remove any highlighting from accordion body and items */
.accordion-item {
background-color: transparent !important;
border: none !important;
}
.accordion-body {
background-color: transparent !important;
}
/* Mobile callback loading styles */
.loading-page {
text-align: center;
padding-top: 3rem;
font-family: system-ui, sans-serif;
}
.spinner {
width: 40px;
height: 40px;
border: 4px solid #ccc;
border-top-color: #007bff;
border-radius: 50%;
animation: spin 1s linear infinite;
margin: 1rem auto;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}