forked from ACK-J/MailFail
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.css
More file actions
153 lines (136 loc) · 2.98 KB
/
Copy pathpopup.css
File metadata and controls
153 lines (136 loc) · 2.98 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
141
142
143
144
145
146
147
148
149
150
151
152
153
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f0f0f0;
width: 400px;
line-height: 1.2;
}
.container {
position: relative;
width: 355px;
margin: 10px auto;
padding: 15px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.Logocontainer {
display: flex;
justify-content: space-evenly;
align-items: center;
position: relative;
width: 270px;
margin: 0 auto;
padding: 13px;
margin-top: 10px;
background-color: #fff;
border: 1px solid #ddd; /* Lighter gray border */
border-radius: 8px; /* Smoother border radius */
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Slight box shadow for depth */
}
.loading-bar-container {
display: flex;
justify-content: center;
align-items: center;
padding: 10px 0;
box-sizing: border-box;
position: relative; /* position the percentage text relative to the container */
}
progress {
width: 80%;
height: 20px;
background-color: white;
border: none;
border-radius: 10px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.loading-percentage {
position: absolute; /* Position the percentage text absolutely relative to the container */
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 14px;
font-weight: bold;
color: #333;
z-index: 1; /* Ensure the percentage text appears above the progress bar */
}
.inline-command {
background-color: #f0f0f0;
border: 1px solid #ccc;
padding: 5px 10px;
border-radius: 5px;
font-family: Arial, sans-serif;
display: inline-block;
margin-right: 5px; /* Add some space between inline commands */
}
.command-container {
width: 100%;
overflow-x: auto;
white-space: nowrap;
margin-top: 6px;
scrollbar-width: thin;
position: relative;
}
.inline-command svg {
position: absolute;
left: 100px;
top: 50%;
transform: translateY(-50%);
z-index: 1;
}
.centered {
display: flex;
justify-content: center;
align-items: center;
}
#mxlink {
display: flex;
align-items: center;
}
a {
text-decoration: none;
color: inherit;
}
/* Prevent visited links from being highlighted */
a:visited {
color: inherit; /* Use the same color as normal links */
}
h1 {
color: #333;
text-align: center;
margin-top: 0px;
}
label {
display: block;
margin-bottom: 10px;
font-weight: bold;
}
select {
width: 100%;
padding: 8px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
#results {
margin-top: 20px;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin-bottom: 10px;
padding: 10px;
background-color: #f9f9f9;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
word-wrap: break-word; /* Enable text wrapping */
}
h2 {
color: #555;
margin-bottom: 10px;
text-align: center;
}