1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- html, body{
- position: relative;
- margin: 0; padding: 0;
- overflow: hidden;
- width:100%; height:100%;
- background-color: black;
- }
- #root{
- position: relative;
- width:100%; height:100%;
- }
- #header{
- position: absolute; z-index: 10;
- top:0; left:0;
- }
- #pictures{
- position: relative; z-index: 5;
- width:100%; height:100%;
- overflow: hidden;
- // border: 1px solid blue;
- video {
- width:100%; height:100%;
- source:not(.1080p){
- display:none;
- }
- }
- }
- #timeline{
- position: absolute; z-index: 9;
- bottom:0; left:0; width:67%; margin:1% 0 1% 32%; height:3em;
- background-color: rgba(255, 255, 255, 0.6);
- border-radius: 2px;
- }
- #map{
- position: absolute; z-index: 9;
- bottom:0; left:0; width:30%; margin:1%; height:40%;
- background-color: rgba(255, 255, 255, 0.6);
- border-radius: 2px;
- }
|