job-scraper
Version:
An api that returns job prospect data scraped from indeed and monster
71 lines (67 loc) • 1.39 kB
CSS
.job-scraper__items-container {
padding: 20px 5px;
position: absolute;
width: 100%;
left: 0;
box-sizing: border-box;
}
.job-scraper__item-wrapper {
width: 100%;
display: inline-block;
padding: 20px;
box-sizing: border-box;
vertical-align:top;
}
.job-scraper__item-header {
background-color: whitesmoke;
border-radius: 5px 5px 0px 0px;
padding: 10px 10px;
text-align: center;
}
@media only screen and (min-width: 640px) {
.job-scraper__item-wrapper {
width: 49%;
}
.job-scraper__items-container {
padding: 20px;
}
}
@media only screen and (min-width: 960px) {
.job-scraper__item-wrapper {
width: 32%;
}
}
.job-scraper__item {
box-sizing: border-box;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
transition: 0.3s;
width: 100%;
height: auto;
margin: auto;
border-radius: 5px;
background-color: white;
}
.job-scraper__item-content {
padding-left: 15px;
padding-right: 15px;
}
.job-scraper__item-footer {
text-align: center;
padding: 20px;
}
.job-scraper__item-button {
padding: 10px 20px;
border: 2px black solid;
border-radius: 5px;
}
.job-scraper__item-location {
float: left;
}
.job-scraper__item-date {
float: right;
}
.job-scraper__item-button:hover {
color: white;
background-color: black;
cursor: pointer;
}