-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphppot-style.css
175 lines (150 loc) · 3.01 KB
/
phppot-style.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
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
/* version 3.0 table added */
.phppot-container {
-webkit-font-smoothing: antialiased;
font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
font-size: .9em;
color: #1e2a28;
width: 740px;
margin: 0 auto;
padding: 0px 20px 20px 20px;
}
.phppot-container table {
border-collapse: collapse;
width: 100%;
margin-bottom: 30px;
}
.phppot-container td, .phppot-container th {
text-align: left;
padding: 8px;
}
.phppot-container h1 {
font-weight: normal;
}
input[type=text].phppot-input, .phppot-container input,
.phppot-container textarea, .phppot-container select, .phppot-input,
.phppot-select {
box-sizing: border-box;
width: 200px;
height: initial;
padding: 8px 5px;
border: 1px solid #9a9a9a;
border-radius: 3px;
}
.phppot-container input[type="checkbox"] {
width: auto;
vertical-align: text-bottom;
display: initial;
opacity: initial;
position: inherit;
pointer-events: initial;
}
.phppot-container textarea, .phppot-textarea {
width: 300px;
}
.phppot-container select, .phppot-select {
display: initial;
height: 30px;
background-color: #fff;
padding: 2px 5px;
}
.phppot-container button, .phppot-container input[type=submit] {
padding: 8px 0px;
font-size: 1em;
cursor: pointer;
border-radius: 3px;
color: #565656;
font-weight: bold;
background-color: #ffc72c;
border-color: #ffd98e #ffbe3d #de9300;
}
.phppot-container button, .phppot-container input[type=submit]:hover {
background-color: #f7c027;
}
.phppot-container button:focus {
outline: none;
}
.phppot-container .phppot-row {
padding-top: 15px;
}
#phppot-message {
padding: 6px 20px;
font-size: 1em;
color: rgb(40, 40, 40);
box-sizing: border-box;
margin: 0px;
border-radius: 3px;
width: 100%;
overflow: auto;
}
.phppot-container .error {
padding: 6px 20px;
border-radius: 3px;
background-color: #fb817c;
border: 1px solid #e46b66;
}
.phppot-container .success {
background-color: #48e0a4;
border: #40cc94 1px solid;
}
#phppot-loader-icon {
color: #1871e6;
font-weight: bold;
padding: 6px 20px 6px 0;
display: none;
vertical-align: middle;
}
#phppot-loader-ack-icon {
color: #1871e6;
font-weight: bold;
padding: 6px 20px 6px 0;
display: none;
vertical-align: middle;
}
#phppot-btn-send:hover {
background: #1363cc;
border: #105bbd 1px solid;
}
.phppot-container .validation-message {
color: #e20900;
display: inline-block;
}
.phppot-container .label {
margin-bottom: 3px;
}
.phppot-form, .phppot-section {
border: #eaeaea 1px solid;
padding: 10px 25px 10px 30px;
border-radius: 3px;
}
.phppot-container .display-none {
display: none;
}
.icon-add-more-attachemnt {
cursor: pointer;
font-style: italic;
font-size: .9em;
}
.inline-block {
display: inline-block;
}
@media all and (max-width: 780px) {
.phppot-container {
width: auto;
}
}
@media all and (max-width: 400px) {
.phppot-container {
padding: 0px 20px;
}
.phppot-container h1 {
font-size: 1.2em;
}
.phppot-container input, .phppot-container textarea, .phppot-container select
{
width: 100%;
}
.phppot-form {
border: none;
padding: 0;
}
}