forked from theodo/signature
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
149 lines (131 loc) · 2.28 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
body {
margin: 20px;
font-family: Arial;
}
#upToDate {
color: green;
display: none;
}
#notUpToDate {
color: red;
display: none;
}
#warning {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(255,255,255,0.5);
text-align: center;
padding-top: 5vh;
box-sizing: border-box;
}
#warning > div {
background-color: white;
max-width: 500px;
margin: auto;
padding: 10px;
border: 2px solid red;
box-shadow: 10px 10px 5px grey;
}
#warning ol {
text-align: left;
}
#warning ol>li {
margin-bottom: 20px;
}
#warning #gotItButton {
text-align: right;
cursor: pointer;
padding: 20px;
font-weight: bold;
}
#signatureForm {
margin: 0 50px;
display: inline-block;
vertical-align: middle;
}
#signatureForm tr td:nth-child(2) {
text-align: right;
}
#signatureForm tr td:last-child {
padding: 0;
}
#signatureForm tr td:last-child * {
box-sizing: border-box;
width: 230px;
}
#m33-startup-choice {
height: 80px;
line-height: 80px;
margin: 0 0 30px 50px;
}
#m33-startup-choice div {
height: 100%;
display: inline-block;
margin-right: 30px;
vertical-align: middle;
padding-bottom: 5px;
border-bottom: 3px solid transparent;
cursor: pointer;
}
#m33-startup-choice img {
max-height: 80px;
max-width: 120px;
vertical-align: middle;
}
#m33-startup-choice div:hover {
border-bottom: 3px solid black;
}
#jobHelp {
cursor: help;
margin-left: 1em;
background-color: gray;
color: white;
border-radius: 50%;
display: inline-block;
height: 20px;
width: 20px;
text-align: center;
vertical-align: middle;
}
#jobHelp:hover::after {
content: "If your job title is not in the list, contact GiregK";
background-color: gray;
width: 250px;
position: absolute;
padding: 10px;
}
#signature-renderer {
display: inline-block;
vertical-align: middle;
}
#tutorial {
border-collapse: collapse;
width: 100%;
margin-top: 30px;
}
#tutorial tr {
border-top: 1px solid grey;
border-bottom: 1px solid grey;
}
#tutorial tr td > ol {
display: inline-block;
vertical-align: middle;
width: 500px;
}
#tutorial tr td ul {
list-style-type: square;
}
#tutorial tr td img {
vertical-align: middle;
max-height: 400px;
max-width: 600px;
}
strong {
color: red;
}
.hidden {
display: none;
}