-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from iwhe/main
Added Internships Page and change in Employer SignUp page
- Loading branch information
Showing
16 changed files
with
1,894 additions
and
214 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,367 @@ | ||
.nav-content{ | ||
position: relative; | ||
min-height: 70px; | ||
width:100%; | ||
background:#c0f7de; | ||
display: flex; | ||
justify-content: space-around; | ||
align-items: center; | ||
box-shadow: 0 4px 8px -4px rgba(0, 0, 0, 0.5); | ||
|
||
} | ||
|
||
|
||
.center{ | ||
background-color: #fafafa; | ||
display: flex; | ||
flex-direction:column; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
.search-section{ | ||
margin-top: 20px; | ||
padding: 10px 20px; | ||
background-color: #4faf8e; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: self-start; | ||
width: 80%; | ||
box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.5); | ||
} | ||
|
||
.search-text{ | ||
color: white; | ||
font-size: 18px; | ||
font-weight: bold; | ||
} | ||
|
||
.search-container{ | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
width: 100%; | ||
gap: 2px; | ||
} | ||
|
||
#searchInput{ | ||
margin: auto; | ||
display: block; | ||
height: 40px; | ||
font-size: 16px; | ||
width: 100%; | ||
border-style: none; | ||
border-radius: 3px; | ||
outline: none; | ||
} | ||
|
||
.search-container button{ | ||
height: 50px; | ||
width: 50px; | ||
font-size: 16px; | ||
background-color: #4faf8e; | ||
border: solid 1px white; | ||
color:white; | ||
border-radius: 16px; | ||
} | ||
|
||
|
||
.internship-section{ | ||
width: 80%; | ||
margin-top:40px; | ||
/* margin-left: 20px; | ||
margin-right: 20px; */ | ||
display: flex; | ||
flex-direction: row; | ||
align-items: flex-start; | ||
justify-content: space-between; | ||
} | ||
|
||
/* Filter Box Style */ | ||
.filter-box{ | ||
width: 30%; | ||
max-width: 700px; | ||
display: flex; | ||
flex-direction: column; | ||
gap: 2rem; | ||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); | ||
/* box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.5); */ | ||
border-radius: 10px; | ||
padding: 30px; | ||
position: relative; | ||
} | ||
.close-btn { | ||
position: absolute; | ||
top: 10px; | ||
right: 10px; | ||
cursor: pointer; | ||
font-size: 24px; | ||
color: #333; | ||
} | ||
.filter-topic .heading{ | ||
border-bottom: #4faf8e solid 2px; | ||
margin-bottom: 10px; | ||
} | ||
.filter-header{ | ||
text-align: left; | ||
color: #4faf8e; | ||
border-bottom: #ddd solid 1px; | ||
font-size: 18px; | ||
|
||
} | ||
.searchLocation input,.searchCategory input{ | ||
width: 100%; | ||
height: 25px; | ||
margin-bottom: 10px; | ||
/* font-size: 16px; */ | ||
outline: none; | ||
border: 1px solid lightgrey; | ||
border-radius: 5px; | ||
} | ||
.location-option, .category-option{ | ||
list-style: none; | ||
height: 150px; | ||
overflow:auto; | ||
padding-bottom: 10px; | ||
} | ||
|
||
/* Internship Card Styles */ | ||
|
||
.internship-card-list{ | ||
width: 70%; | ||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); | ||
border-radius: 10px; | ||
padding: 30px; | ||
margin-left: 10px; | ||
display: flex; | ||
flex-direction: column; | ||
gap: 3rem; | ||
} | ||
.intern-header{ | ||
display: flex; | ||
justify-content: space-between; | ||
border-bottom: #4faf8e solid 4px; | ||
} | ||
.dates{ | ||
display: flex; | ||
justify-content: space-around; | ||
align-items: center; | ||
gap: 0.5rem; | ||
} | ||
|
||
.intern-header .date, .applyby{ | ||
color: #4faf8e; | ||
font-weight: bold; | ||
} | ||
.intern-header span{ | ||
color: #1e1e1ec8; | ||
|
||
|
||
} | ||
.intern-header .domain{ | ||
text-transform: capitalize; | ||
letter-spacing: 1px; | ||
font-weight: 600; | ||
color: #1e1e1ec8; | ||
} | ||
.intern-openings{ | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: space-between; | ||
align-items: center; | ||
|
||
} | ||
.internship-detail{ | ||
list-style: none; | ||
width: 100%; | ||
gap: 1rem; | ||
/* line-height: 30px; */ | ||
float:inline-start; | ||
font-size: 14px; | ||
margin: 1px 0; | ||
text-transform: capitalize; | ||
color: #666; | ||
text-align: left; | ||
display: flex; | ||
flex-direction: column; | ||
|
||
} | ||
.internship-detail-list{ | ||
width: 100%; | ||
display: flex; | ||
flex-direction:row; | ||
|
||
/* gap: 5rem; */ | ||
|
||
} | ||
.internship-detail .about-left{ | ||
width: 50%; | ||
font-weight: 700; | ||
color: #1e1e1ec8; | ||
/* text-overflow: ellipsis; */ | ||
|
||
} | ||
|
||
|
||
.internship-detail .about-right { | ||
width: 100%; | ||
} | ||
|
||
|
||
.internship-title{ | ||
color: #666; | ||
font-size: 18px; | ||
font-weight: 700; | ||
margin: 7px 0; | ||
text-transform: uppercase; | ||
} | ||
|
||
.company-image{ | ||
margin-right:10px; | ||
padding-right: 20px; | ||
/* background-color: grey; */ | ||
max-height: 180px; | ||
max-width: 180px; | ||
|
||
} | ||
.company-image img{ | ||
object-fit: contain; | ||
overflow: hidden; | ||
} | ||
|
||
.action-buttons{ | ||
display: flex; | ||
justify-content: flex-end; | ||
gap:0.5rem; | ||
} | ||
.submitFilter button, .action-buttons button, .filter-btn button{ | ||
border-style: none; | ||
border-radius: 10px; | ||
background-color: #4faf8e; | ||
color: white; | ||
padding: 0.75rem; | ||
cursor: pointer; | ||
|
||
|
||
} | ||
button:hover{ | ||
background: #1e1e1e; | ||
box-shadow: inset 0 5px 0 rgba(0, 0, 0, .12); | ||
outline: 0; | ||
} | ||
.action-buttons .more-button{ | ||
text-decoration: underline; | ||
} | ||
.filter-btn { | ||
width: 120px; | ||
} | ||
.filter-btn button{ | ||
width: 100%; | ||
font-size: 15px; | ||
} | ||
@media (min-width: 768px) { | ||
|
||
.filter-box{ | ||
display: flex; | ||
} | ||
.filter-btn{ | ||
display: none; | ||
} | ||
.filter-box .close-btn{ | ||
display: none; | ||
} | ||
} | ||
@media (max-width: 768px) { | ||
.filter-btn{ | ||
display: flex; | ||
} | ||
.close-btn { | ||
display: block; | ||
} | ||
.close-btn span :hover :active{ | ||
color: red; | ||
} | ||
.filter-box{ | ||
display: none; | ||
} | ||
.internship-section{ | ||
width: 95%; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
} | ||
.internship-card-list{ | ||
width: 100%; | ||
box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.5); | ||
border-radius: 10px; | ||
padding: 10px; | ||
} | ||
.company-image{ | ||
max-height: 60px; | ||
max-width: 60px; | ||
/* overflow: auto; */ | ||
object-fit: fill; | ||
} | ||
.company-image img{ | ||
width: 70px; | ||
height: 70px; | ||
|
||
} | ||
} | ||
|
||
.nav-btn{ | ||
cursor: pointer; | ||
} | ||
/* Login-Section */ | ||
.login-section{ | ||
background-color: #fafafa; | ||
/* color: white; */ | ||
width: 30%; | ||
height: 500px; | ||
position:absolute; | ||
top: 50px; | ||
z-index: 999; | ||
border-radius: 20px; | ||
border: solid 1px #4faf8e; | ||
box-shadow: 0 4px 8px rgba(0,0,0,0.1); | ||
display: none; | ||
|
||
} | ||
|
||
.overlay { | ||
display: none; | ||
position: absolute; | ||
filter: blur(2px) brightness(0.7); | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
height: 100%; | ||
background-color: rgba(0, 0, 0, 0.7); | ||
z-index: 99; | ||
} | ||
|
||
|
||
.login-head{ | ||
color: #4faf8e; | ||
} | ||
.form-container{ | ||
padding: 20px; | ||
width: 100%; | ||
|
||
} | ||
.form-check-label{ | ||
text-align: left; | ||
} | ||
@media (max-width: 768px) { | ||
.login-section{ | ||
width: 80%; | ||
} | ||
} | ||
.login-section .nav-item :hover{ | ||
background-color: #4faf8e !important; | ||
|
||
|
||
} | ||
/* p, li{ | ||
font-size: 15px; | ||
} */ |
Oops, something went wrong.