2022-01-25 23:49:52 -05:00
|
|
|
body{
|
|
|
|
--theme-primary-color:white;
|
|
|
|
--theme-secondary-color:black;
|
|
|
|
background-color:var(--theme-primary-color);
|
|
|
|
color:var(--theme-secondary-color);
|
|
|
|
overflow-x:hidden;
|
|
|
|
margin:0;
|
|
|
|
display:flex;
|
|
|
|
flex-direction: column;
|
2022-01-26 04:20:24 -05:00
|
|
|
font-size:100%;
|
2022-01-25 23:49:52 -05:00
|
|
|
|
|
|
|
}
|
|
|
|
@media screen and (min-width:1000px) {
|
|
|
|
body{
|
|
|
|
font-size:100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2022-01-26 04:20:24 -05:00
|
|
|
img {
|
|
|
|
max-width:15rem;
|
2022-01-25 23:49:52 -05:00
|
|
|
}
|
|
|
|
.inververse{
|
|
|
|
display:flex;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#interverse-details{
|
|
|
|
display:flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#interverse-resources{
|
|
|
|
flex-wrap: wrap;
|
|
|
|
display:flex;
|
|
|
|
flex-direction: row;
|
|
|
|
|
|
|
|
}
|
|
|
|
.interverse-resource{
|
2022-01-26 04:20:24 -05:00
|
|
|
padding:2rem;
|
2022-01-25 23:49:52 -05:00
|
|
|
}
|
2022-01-26 04:20:24 -05:00
|
|
|
|
2022-01-25 23:49:52 -05:00
|
|
|
.interverse-resource-icon{
|
|
|
|
height:3rem;
|
|
|
|
width:3rem;
|
|
|
|
}
|
2022-01-30 12:01:20 -05:00
|
|
|
#interverse-groups{
|
|
|
|
display:flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
.interverse-group{
|
|
|
|
display:flex;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
2022-01-25 23:49:52 -05:00
|
|
|
#interverse-connections{
|
|
|
|
display:flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: flex-start;
|
|
|
|
}
|
|
|
|
.interverse-connection{
|
|
|
|
width:fit-content;
|
|
|
|
border: 1px solid var(--theme-secondary-color);
|
2022-01-26 04:20:24 -05:00
|
|
|
padding:1rem;
|
2022-01-25 23:49:52 -05:00
|
|
|
margin:0.25rem;
|
|
|
|
}
|
2022-01-30 12:01:20 -05:00
|
|
|
.interverse-connection-preview{
|
|
|
|
display:flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
2022-01-25 23:49:52 -05:00
|
|
|
|
|
|
|
.interverse-widget{
|
|
|
|
width:50vw;
|
|
|
|
height:60vh;
|
|
|
|
}
|