Files
Backend-Api/ServiceHost/wwwroot/ClientTheme/css/employerSelect.css
2024-07-05 21:36:15 +03:30

114 lines
2.2 KiB
CSS

.content-page > .content {
margin-top: 100px !important;
}
.employer-main-content {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
width: 65rem;
border: 3px solid #fbb305;
border-radius: 16px;
top: 8rem;
position: relative;
margin: auto;
background: #eaecef;
height: 35rem;
align-items: center;
}
.employer-choose {
flex-basis: 50%;
max-width: 50%;
padding: 20px;
box-sizing: border-box;
}
.employer-choose a {
height: 8rem;
font-size: 1.8rem;
border-radius: 16px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
background: #3ac53c;
box-shadow: 1px 1px 8px 1px #9d9999;
animation: blink 1s infinite;
}
@keyframes blink {
0% {
background-color: #43d745;
}
50% {
background-color: #3ac53c;
}
100% {
background-color: #43d745;
}
}
.employer-choose a:hover {
background: #41d543;
}
.mainTitle {
position: absolute;
top: -41px;
background: #fbb305;
padding: 10px;
border-radius: 12px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
font-weight: bold;
color: #2a2a2a;
}
.information {
background: white;
font-size: 1.7rem;
text-align: justify;
padding: 15px;
white-space-collapse: break-spaces;
word-spacing: -1px;
letter-spacing: -1px;
color: #5a5e63;
border-bottom-right-radius: 16px;
border-bottom-left-radius: 16px;
box-shadow: 1px 1px 8px 1px #9d9999;
}
@media (max-width: 1150px) and (min-width: 600px) {
/* #myWrapper .content-page > .content {
margin-right: 60px;
}*/
/* #myWrapper.enlarged .content-page > .content {
margin-right: 230px;
}*/
}
@media (max-width: 1150px){
.employer-choose {
padding: 20px 6px;
}
.employer-main-content {
width: 53rem;
height: 33rem;
}
.mainTitle {
font-size: 1rem;
top: -36px;
}
.employer-choose a, .information {
font-size: 1.5rem;
}
}
@media (max-width: 800px) {
.employer-choose {
flex-basis: 100%;
max-width: 100%;
}
.employer-main-content {
height: 58rem;
width: 35rem;
}
}