-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
146 lines (125 loc) · 2.2 KB
/
popup.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
:root {
--icims_primary_teal: #48A8AF;
--icims_primary_gold: #F9A84C;
--icims_primary_purple: #A773B0;
--icims_primary_red: #EC1D31;
--icims_primary_gray: #63666A;
--icims_primary_white: #FFFFFF;
--icims_primary_black: #000000;
--icims_tinted_teal: #007D8A;
--icims_tinted_gold: #B47E00;
--icims_tinted_purple: #7E5475;
--icims_tinted_gray: #63666A;
--icims_font_family: poppins;
}
body {
font-family: var(--icims_font_family);
width: 300px;
height: fit-content;
}
#images {
display: flex;
justify-content: center;
margin: 0px;
border: 0px;
padding: 0px;
}
img:hover {
cursor:pointer;
}
#logo {
box-sizing: border-box;
padding: 5px 0px 5px 10px;
}
.links {
margin-top: 0px;
margin-bottom: 5px;
}
ul {
margin: 0px;
padding-left: 20px;
}
h1 {
margin: 0px;
margin-top: 0px;
font-size: 1.5em;
}
a {
font-style: none;
font-weight: 600;
font-size: 1.35em;
text-decoration: none;
}
/* unvisited link */
a:link {
color: var(--icims_primary_teal);
}
/* visited link */
a:visited {
color: var(--icims_primary_teal);
}
/* mouse over link */
a:hover {
color: var(--icims_tinted_teal);
}
/* selected link */
a:active {
color: var(--icims_tinted_teal);
}
#search_button {
margin: 0;
border: 0;
padding: 5px 7px 5px 7px;
}
#search_bar {
margin: 0;
padding: 0;
height: 34px;
}
p {
margin: 0px;
border: 0px;
padding: 0 0 0 1.35rem;
font-weight: 600;
font-size: 1.35em;
}
form {
width: 100%;
display: flex;
font-family: poppins;
font-size: 1.35em;
}
input[type=text] {
flex-grow: 2;
box-sizing: border-box;
margin: 0px 5px 0px 0px;
padding: 4px;
font-weight: 400;
border-radius: 5px;
}
#portal_pass_button {
flex-grow: 1;
box-sizing: border-box;
margin: 0px 5px 0px 0px;
border: 0px;
padding: 0px;
}
input[type=submit] {
border-radius: 10px;
border-width: 0px;
/* padding: 8px 24px; */
background-color: var(--icims_primary_teal);
color: var(--icims_primary_white);
width: 25%;
}
input[type=submit]:hover {
border-radius: 10px;
border-width: 0px;
/* padding: 8px 24px; */
background-color: var(--icims_tinted_teal);
color: var(--icims_primary_white);
width: 25%;
}
#search_care_site {
margin-top: 5px;
}