colouring-montreal/app/src/frontend/welcome.css

24 lines
416 B
CSS
Raw Normal View History

/**
* Welcome jumbotron
*/
.welcome-float {
position: absolute;
z-index: 10000;
top: 0;
width: 100%;
border-radius: 0;
2018-11-13 05:44:32 -05:00
padding: 1.5em 2.5em 2.5em;
2018-09-13 17:13:53 -04:00
}
.welcome-float.jumbotron {
background: #fff;
background-color: rgba(255,255,255,0.95);
}
@media (min-width: 768px){
.welcome-float {
left: 50%;
2018-11-13 05:44:32 -05:00
margin-left: -22.5em;
width: 45em;
top: 1em;
}
}