-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathApp.css
73 lines (63 loc) · 1.1 KB
/
App.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
@import url('https://fonts.googleapis.com/css?family=Ubuntu');
div{
font-family: 'Ubuntu', sans-serif;
}
p,h1,h2,h3,h4,h5,h6{
margin : 0px;
padding:0px;
}
/* Job list card */
.postings-parent{
bottom: 0;
float: left;
overflow-y: auto;
position: relative;
height: 100%;
}
.joblist-row{
padding : 4px;
border-bottom: 1px solid #E0E0E0;
}
.joblist-row:hover{
background-color:#E2F4FC;
border-bottom: 0px
}
/* Job Description */
#job-save-btn{
color:#0073b1;
border:0.3px solid #0073b1;
background-color:white;
font-style:bold;
font-size:13px;
margin-right:1rem;
border-radius:3px;
width:5rem;
}
#easy-apply-btn{
background-color:#0073b1;
color:white;
font-style:bold;
font-size:13px;
border-radius:3px;
width:6rem;
}
#job-detail-row{
border-bottom:1px solid #E0E0E0;
border-top:1px solid #E0E0E0;
}
#col-seperator{
border-left:1px solid #E0E0E0;
border-right:1px solid #E0E0E0;
}
/* connections css */
#all-connections-list{
columns: 3;
padding: 5px;
border: 0.5px solid grey;
}
.connection:hover{
background-color:#E2F4FC;
}
.body{
background-color: white;
}