File size: 3,225 Bytes
6c9ff9d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 |
.viewer-container {
display: flex;
gap: 20px;
justify-content: center;
}
model-viewer {
width: 50%;
height: 500px;
background-color: #eeeeee;
}
iframe {
width: 50%;
height: 500px;
background-color: #eeeeee;
border: none;
border-radius: 5px;
}
.js-plotly-plot {
width: 100%;
display: flex;
justify-content: center;
}
@font-face {
font-family: 'Glyphicons Halflings';
src: url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/fonts/glyphicons-halflings-regular.eot');
src: url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/fonts/glyphicons-halflings-regular.woff') format('woff'), url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}
.glyphicon {
position: relative;
top: 2px;
display: inline-block;
font-family: 'Glyphicons Halflings';
font-style: normal;
font-weight: normal;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.glyphicon-question-sign:before {
content: "\e085";
}
.popup-btn {
position: relative;
display: inline-block;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
overflow: visible !important;
font-size: 20px;
border: none;
text-align: center;
text-decoration: none;
padding-left: 10px;
}
.popup-text {
visibility: hidden;
width: 300px;
background-color: #e4e4e7;
color: #000;
text-align: center;
border-radius: 10px;
padding: 20px 10px;
position: absolute;
z-index: 1;
bottom: 150%;
left: 50%;
margin-left: -145px;
overflow: visible !important;
font-size: 17px;
font-family: Arial, sans-serif;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: visibility 0.3s, opacity 0.3s ease-in-out;
opacity: 0;
}
.popup-text.dark {
background-color: #52525b;
color: #fff;
}
/* Popup arrow */
.popup-text::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #e4e4e7 transparent transparent transparent;
}
.popup-text.dark::after {
border-color: #52525b transparent transparent transparent;
}
.popup-text.show {
visibility: visible;
opacity: 1;
}
.thumbnail-btn {
height:75px;
width: auto;
overflow: hidden;
display: flex;
}
.thumbnail-btn:hover {
cursor: pointer;
transform: scale(1.05);
transition: transform 0.5s;
}
.thumbnail {
width: auto;
height: 100%;
object-fit: cover;
border-radius: 5px;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: flex-start;
align-items: flex-start;
} |