2019-08-08 15:31:41 +00:00
|
|
|
.sphere-wrapper{
|
2019-08-08 16:22:08 +00:00
|
|
|
display: flex;
|
|
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
}
|
|
|
|
.sphere-content-warapper{
|
|
|
|
position: relative;
|
|
|
|
top: 50%;
|
|
|
|
-webkit-transform: translateY(-50%);
|
|
|
|
-ms-transform: translateY(-50%);
|
|
|
|
transform: translateY(-50%);
|
|
|
|
height: 90%;
|
|
|
|
width: 90%;
|
|
|
|
}
|
|
|
|
|
|
|
|
img{
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
max-width: 100%;
|
2019-08-08 15:31:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sphere{
|
|
|
|
margin: 1.5vw;
|
|
|
|
height: 10vw;
|
|
|
|
width: 10vw;
|
2019-08-08 16:22:08 +00:00
|
|
|
background-color:#707070;
|
2019-08-08 15:31:41 +00:00
|
|
|
border-radius: 50%;
|
2019-08-08 16:22:08 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
sphere:hover{
|
|
|
|
background-color: #E8E8E8 ;
|
2019-08-08 15:31:41 +00:00
|
|
|
}
|