blob: 08cc9deedc7b9ef1af96063a5e56217ff16aad54 (
plain)
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
|
@CHARSET "UTF-8";
#postman-main-menu.welcome-panel {
padding: 0px 10px 5px;
}
#postman-main-menu.advanced_config {
margin: 0;
}
form#postman_wizard legend, form#postman_test_email_wizard legend {
font-weight: bold;
}
form label {
font-weight: bold;
margin-right: 10px;
}
form span.postman_input_description {
font-size: 0.8em;
}
table#connectivity_test_table {
width: 100%;
display: none;
border: solid 1px #ddd;
}
table#connectivity_test_table tr {
background-color: #fff;
}
table#connectivity_test_table tr td {
padding: 5px;
margin: 0;
text-align: center;
}
table th.port_25, table th.port_443, table th.port_465, table th.port_587
{
width: 17%;
}
table#testing_table td.port {
width: 100px;
}
p#wizard_oauth2_help span.error {
color: red;
}
form#postman_wizard span.postman_input_description + label {
margin-top:2em;
}
fine_print {
font-size: 0.9em;
}
input.input_plugin_radio {
margin-left: 20px;
}
.wizard>.content {
min-height: 32em;
}
dt {
font-style: italic;
}
dt em {
font-style: normal;
}
p#back_to_main_menu {
text-align: right;
margin-top: 10px
}
.welcome-panel-column welcome-panel-last {
padding-bottom: 10px;
}
.new-item {
display: inline-block;
padding: 5px;
border-radius: 20px;
background-color: red;
margin-right: 10px;
}
.new-item span {
font-weight: bold;
color: white;
animation: pulse 2s linear 0s infinite;
}
.align-middle {
display: inline-block;
vertical-align: middle;
}
@keyframes pulse {
0% {
opacity: 0;
}
25% {
opacity: 0.25;
}
50% {
opacity: 0.5;
}
75% {
opacity: 0.75;
}
100% {
opacity: 1;
}
}
|