forked from practical-solutions/addressbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
205 lines (170 loc) · 4.04 KB
/
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
.plugin_addressbook_singlecontact {
background-color:#efefef;
display:block;
max-width:600px;
min-width:350px;
vertical-align:top;
margin:6px;
display:inline-block;
border-radius:4px;
padding:8px 12px 12px;
font-size:15px;
box-shadow: 0 3px 5px rgba(0,0,0,.12),0 3px 5px rgba(0,0,0,.24);
}
.plugin_addressbook_singlecontact b{
font-size:115%;
}
.plugin_addressbook_singlecontact .footer{
color:gray;
padding:0 7px 0px 5px;
font-size:12px;
margin-top:2px;
}
.plugin_addressbook_singlecontact .footer .buttons{
float:right;
}
.plugin_addressbook_singlecontact .footer .buttons a {
padding-left:6px;
}
.plugin_addressbook_singlecontact .content{
width:100%;
display:block;
}
.plugin_addressbook_singlecontact .data {
float:left;
}
.plugin_addressbook_singlecontact .photo{
float:right;
padding:3px;
max-width:150px;
}
.plugin_addressbook_singlecontact .content:after{
content:"";
display:table;
clear:both;
}
.plugin_addressbook_editform{
padding:1em;
border:1px dotted gray;
}
.plugin_addressbook_editform h2 {
margin-bottom:0;
padding-bottom:0;
}
.plugin_addressbook_editform input[type=text]{
all:initial;
font: normal 87.5%/1.4 Arial,sans-serif;
background:linen;
color:gray;
border: 2px solid #ccc;
font-size:16px;
padding:3px;
margin:3px;
width:40%;
max-width:300px;
}
.plugin_addressbook_searchbox input[type=text]{
all:initial;
font: normal 87.5%/1.4 Arial,sans-serif;
color:gray;
border:1px solid gray;
font-size:16px;
padding:3px 6px;
margin:3px 6px;
width:40%;
max-width:300px;
}
.plugin_addressbook_searchbox input[type=text]:focus{
background-color:linen;
color:black;
}
.plugin_addressbook_editform input[type=text]:focus{
background-color: lightblue;
}
.plugin_addressbook_editform textarea{
all:initial;
font: normal 87.5%/1.4 Arial,sans-serif;
height: 150px;
width:100%;
max-width:500px;
padding: 12px 10px;
box-sizing: border-box;
border: 2px solid #ccc;
border-radius: 4px;
background-color: #f8f8f8;
resize: none;
}
.plugin_addressbook_editform .photoupload{
padding:5px;
}
.plugin_addressbook_editform .photoupload img{
padding-right:10px;
}
.plugin_addressbook_editform .photoupload:after{
content:"";
display:table;
clear:both;
}
.plugin_addressbook_editform input[type=submit],
.plugin_addressbook_editform input[type=submit]:hover,
.plugin_addressbook_searchbox input[type=submit],
.plugin_addressbook_searchbox input[type=submit]:hover {
all:initial;
font: normal 16px/1.4 Arial,sans-serif;
background-color: lightsteelblue; /*#4CAF50;*/
border: none;
color: white;
padding: 5px 20px;
text-decoration: none;
margin: 4px 2px;
cursor: pointer;
}
.plugin_addressbook_editform .id{
float:right;
color:gray;
font-size:85%;
}
.plugin_addressbook_searchbox {
/*display:inline-block;*/
/*border:1px dotted gray;*/
padding:15px;
margin-bottom:1em;
}
.plugin_addressbook_searchbox span {
font-weight:bold;
font-size:18px;
}
.addressbook_list span{
margin-bottom:8px;
display:inline-block;
color:gray;
border-left:4px solid lightgray;
padding:2px 0 2px 4px;
background:#f2f2e2;
width:95%;
}
.addressbook_list h3{
margin-top:2em;
}
.plugin_addressbook_print {
width:100% !important;
max-width:800px;
}
.plugin_addressbook_print tbody td {
border:1px solid white;
padding:0;
text-align:center;
min-width:20px;
}
.plugin_addressbook_print tr,
.plugin_addressbook_print tbody,
.plugin_addressbook_print
{
border:0px !important;
font-size:10px;
}
.plugin_addressbook_searchpage {
padding:10px;
border:1px dotted gray;
margin-bottom:1em;
}