23 lines
379 B
CSS
23 lines
379 B
CSS
|
.hero-profile {
|
||
|
border: 1px solid gray;
|
||
|
padding: 5px;
|
||
|
padding-bottom: 20px;
|
||
|
padding-left: 20px;
|
||
|
border-radius: 10px;
|
||
|
background-color: lightgreen;
|
||
|
color: black;
|
||
|
}
|
||
|
|
||
|
.job-ad {
|
||
|
border: 1px solid gray;
|
||
|
padding: 5px;
|
||
|
padding-bottom: 20px;
|
||
|
padding-left: 20px;
|
||
|
border-radius: 10px;
|
||
|
background-color: lightblue;
|
||
|
color: black;
|
||
|
}
|
||
|
|
||
|
.ad-banner {
|
||
|
width: 400px;
|
||
|
}
|