91 lines
2.4 KiB
CSS
91 lines
2.4 KiB
CSS
.Profile__container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
margin: 30px 0 0 0;
|
|
}
|
|
.Profile__row {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
word-wrap: break-word;
|
|
box-shadow: 0px 0px 6px 6px rgba(0, 0, 0, .25);
|
|
border: 1px solid black;
|
|
border-radius: 1rem;
|
|
margin-bottom: 50px;
|
|
}
|
|
.Profile__logo {
|
|
border-radius: 50%;
|
|
object-fit: cover;
|
|
width: 150px;
|
|
height: 150px;
|
|
}
|
|
.Profile__comment {
|
|
margin: 0 0 50px 0;
|
|
}
|
|
.Profile__Modal-top-container {
|
|
margin: 20px 0;
|
|
}
|
|
.custom-control {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
.custom-control-input {
|
|
position: absolute;
|
|
z-index: -1;
|
|
opacity: 0;
|
|
}
|
|
.custom-control-label {
|
|
position: relative;
|
|
margin-bottom: 0;
|
|
vertical-align: top;
|
|
}
|
|
.custom-control-input:checked~.custom-control-label::before {
|
|
color: #fff;
|
|
border-color: #007bff;
|
|
background-color: #007bff;
|
|
}
|
|
.custom-switch .custom-control-label::before {
|
|
left: -2.25rem;
|
|
width: 1.75rem;
|
|
pointer-events: all;
|
|
border-radius: .5rem;
|
|
}
|
|
.custom-control-label::before {
|
|
position: absolute;
|
|
top: .25rem;
|
|
left: -1.5rem;
|
|
display: block;
|
|
width: 1rem;
|
|
height: 1rem;
|
|
pointer-events: none;
|
|
content: "";
|
|
background-color: #fff;
|
|
border: #adb5bd solid 1px;
|
|
}
|
|
.custom-switch .custom-control-input:checked~.custom-control-label::after {
|
|
background-color: #fff;
|
|
-webkit-transform: translateX(.75rem);
|
|
transform: translateX(.75rem);
|
|
}
|
|
.custom-switch .custom-control-label::after {
|
|
top: calc(.25rem + 2px);
|
|
left: calc(-2.25rem + 2px);
|
|
width: calc(1rem - 4px);
|
|
height: calc(1rem - 4px);
|
|
background-color: #adb5bd;
|
|
border-radius: .5rem;
|
|
transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out;
|
|
transition: transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
|
|
transition: transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out;
|
|
}
|
|
.custom-control-label::after {
|
|
position: absolute;
|
|
top: .25rem;
|
|
left: -1.5rem;
|
|
display: block;
|
|
width: 1rem;
|
|
height: 1rem;
|
|
content: "";
|
|
background: no-repeat 50%/50% 50%;
|
|
} |