-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
98 lines (82 loc) · 1.76 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
*,
*::before,
*::after
{
box-sizing: border-box;
padding:0;
margin:0;
}
:root {
font-family: monospace;
--ff-primary: 'Source Sans Pro', sans-serif;
--ff-secondary: 'Source Code Pro', monospace;
--fw-reg: 300;
--fw-bold: 900;
--clr-light: #fff;
--clr-dark: #303030;
--clr-accent: #16e0bd;
--fs-h1: 3rem;
--fs-h2: 2.25rem;
--fs-h3: 1.25rem;
--fs-body: 1rem;
}
.menu_bar{
background-image: linear-gradient(to right, #a0ff92,var(--clr-accent));
}
.navbar-nav {
font-size: var(--fs-h3);
font-weight: var(--fw-bold);
}
.carousel-item{
height: 500px;
}
.carousel-item img{
height: 500px;
background-image:linear-gradient(to right, #a0ff92,var(--clr-accent));
background-size: cover;
}
.search-job{
position:relative;
padding:30px 0;
margin:2px 0% 10px;
background-image:linear-gradient(to right, #a0ff92,var(--clr-accent));
}
.search-job .form-control{
max-width: 400px;
display: inline-flex;
margin:10px 5px;
border-radius:0;
box-shadow: none;
}
.search-job .btn-primary{
border-radius:0;
box-shadow:none;
border:none;
display:inline-flex;
margin:5px;
padding:5px 20px;
}
@media (max-width:800px){
.carousel-item img{
height:300px;
}
.search-job{
margin-top: -200px;
}
}
@media(max-width:1400px){
.search-job .btn-primary{
display: block;
margin:0 auto;
}
}
.company_details{
box-shadow: 0 2px 70px 0 rgba(110, 130, 208, .18);
border-radius: 5px;
margin-bottom: 15px;
}
.job-update{
background: #fff;
padding:10px 20px;
border-radius:5px;
}