This repository has been archived on 2019-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
Landingpage/assets/style/sphere.css

36 lines
568 B
CSS
Raw Permalink Normal View History

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
}