-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemail-sign.css
More file actions
76 lines (64 loc) · 1.22 KB
/
email-sign.css
File metadata and controls
76 lines (64 loc) · 1.22 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
body {
background-color: #FFFFFF;
color: #000000;
font-family: Arial, sans-serif;
}
.signature-container {
display: flex;
flex-direction: row;
align-items: center;
border: 1px solid #DDD;
padding: 10px;
max-width: 600px;
margin: 0 auto;
background-color: #FFFFFF;
}
.signature-image {
margin-right: 5px; /* Add space between image and text */
margin-left: 5px;
}
.signature-image img {
border: 0;
height: 200px;
width: 200px;
}
.signature-info {
padding-left: 15px;
line-height: 1.5;
}
.signature-name {
font-size: 11pt;
font-weight: bold;
color: #333;
}
.signature-position, .signature-organization {
font-size: 10pt;
font-weight: bold;
color: #666;
}
.signature-tagline {
font-size: 9pt;
font-style: italic;
color: #333;
}
.signature-address, .signature-contact, .signature-links {
font-size: 9pt;
color: #333;
}
.signature-links a {
color: #1a0dab;
text-decoration: none;
}
.signature-links a:hover {
text-decoration: underline;
}
.signature-social img {
border: none;
height: 20px;
width: 20px;
margin-right: 5px;
}
.signature-social a {
display: inline-block;
margin-right: 5px;
}