2024-09-17 10:10:06 +00:00
|
|
|
.graph {
|
|
|
|
width: 100%;
|
|
|
|
height: 70vh;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.graph-toolbar {
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-around;
|
|
|
|
gap: 30px;
|
|
|
|
|
|
|
|
.toolbar-column{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 20px;
|
|
|
|
min-width: 30%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toolbar-input {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
gap: 20px;
|
|
|
|
align-items: center;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
label {
|
|
|
|
max-width: 70%;
|
|
|
|
text-align: left;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.depth-choice {
|
|
|
|
white-space: nowrap;
|
|
|
|
input[type="number"] {
|
|
|
|
-webkit-appearance: textfield;
|
|
|
|
-moz-appearance: textfield;
|
|
|
|
appearance: textfield;
|
|
|
|
&::-webkit-inner-spin-button,
|
|
|
|
&::-webkit-outer-spin-button {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
button {
|
|
|
|
background: none;
|
|
|
|
& > .fa {
|
|
|
|
border-radius: 50%;
|
|
|
|
font-size: 12px;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
&:enabled > .fa {
|
|
|
|
background-color: #354a5f;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
&:enabled:hover > .fa {
|
|
|
|
color: white;
|
|
|
|
background-color: #35405f; // just a bit darker
|
|
|
|
}
|
|
|
|
&:disabled > .fa {
|
|
|
|
background-color: gray;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
|
|
|
align-self: center;
|
|
|
|
max-width: 40px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 500px) {
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 20px;
|
|
|
|
.toolbar-column {
|
|
|
|
min-width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-30 12:38:40 +00:00
|
|
|
.container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 10px;
|
|
|
|
padding: 10px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
|
|
> form {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
2024-09-17 10:10:06 +00:00
|
|
|
#family-tree-link {
|
|
|
|
display: inline-block;
|
|
|
|
margin-top: 10px;
|
|
|
|
text-align: center;
|
|
|
|
@media (min-width: 450px) {
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
}
|
2023-03-30 12:38:40 +00:00
|
|
|
|
|
|
|
.users {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
list-style-type: none;
|
|
|
|
margin: 0;
|
|
|
|
gap: 10px
|
|
|
|
}
|
|
|
|
|
|
|
|
.users-card {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 10px;
|
|
|
|
width: 150px;
|
|
|
|
padding: 10px;
|
|
|
|
background-color: rgba(0, 0, 0, .05);
|
|
|
|
border-radius: 10px;
|
|
|
|
|
|
|
|
@media (max-width: 375px) {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
> div.mini_profile_link {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
> a {
|
|
|
|
&.mini_profile_link {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
gap: 10px;
|
|
|
|
|
|
|
|
@media (max-width: 375px) {
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: flex-start;
|
|
|
|
max-height: 65px;
|
|
|
|
}
|
2024-07-23 22:16:31 +00:00
|
|
|
|
2023-03-30 12:38:40 +00:00
|
|
|
> span {
|
|
|
|
height: 150px;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
@media (max-width: 375px) {
|
|
|
|
height: 80px;
|
|
|
|
width: 80px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> img {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 100%;
|
|
|
|
max-height: 100%;
|
|
|
|
height: auto;
|
|
|
|
object-fit: contain;
|
2024-07-23 22:16:31 +00:00
|
|
|
|
2023-03-30 12:38:40 +00:00
|
|
|
@media (max-width: 375px) {
|
|
|
|
max-width: 100%;
|
2023-04-08 18:58:55 +00:00
|
|
|
max-height: 65px;
|
2023-03-30 12:38:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-07-23 22:16:31 +00:00
|
|
|
|
2023-03-30 12:38:40 +00:00
|
|
|
> em {
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 0 5px;
|
|
|
|
text-align: center;
|
|
|
|
max-width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
|
|
@media (max-width: 375px) {
|
|
|
|
margin-top: 10px;
|
|
|
|
text-align: left;
|
|
|
|
max-width: none;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-09-17 10:10:06 +00:00
|
|
|
&.delete {
|
2023-03-30 12:38:40 +00:00
|
|
|
margin-top: 10px;
|
|
|
|
display: block;
|
|
|
|
text-align: center;
|
|
|
|
color: orangered;
|
|
|
|
|
|
|
|
@media (max-width: 375px) {
|
|
|
|
position: absolute;
|
2024-09-17 10:10:06 +00:00
|
|
|
bottom: 0;
|
2023-03-30 12:38:40 +00:00
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> a.mini_profile_link {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|