mirror of
https://github.com/szimek/sharedrop.git
synced 2026-06-28 21:00:35 +08:00
55 lines
941 B
Sass
55 lines
941 B
Sass
html
|
|
height: 100%
|
|
// The html and body elements cannot have any padding or margin.
|
|
|
|
body
|
|
height: 100%
|
|
// The html and body elements cannot have any padding or margin.
|
|
> .ember-view
|
|
height: 100%
|
|
// The html and body elements cannot have any padding or margin.
|
|
|
|
.navbar-nav.navbar-right:last-child
|
|
margin-right: 0
|
|
|
|
#wrap
|
|
min-height: 100%
|
|
height: auto
|
|
// Negative indent footer by its height
|
|
margin: 0 auto -50px
|
|
padding: 0
|
|
|
|
#footer
|
|
position: fixed
|
|
bottom: 0
|
|
width: 100%
|
|
height: 50px
|
|
background-color: rgba(#f0f0f0,.8)
|
|
|
|
.invisible
|
|
height: 0
|
|
width: 0
|
|
opacity: 0
|
|
|
|
.circles
|
|
position: absolute
|
|
bottom: 0
|
|
left: 50%
|
|
width: 1140px
|
|
margin-left: -570px
|
|
height: 700px
|
|
z-index: -1
|
|
+transform-origin(570px, 570px)
|
|
+animation(grow 1.5s ease-out)
|
|
.circle
|
|
stroke-width: .4
|
|
fill: rgba(0,0,0,0)
|
|
|
|
+keyframes(grow)
|
|
50%
|
|
+scale(1.5)
|
|
opacity: .2
|
|
51%
|
|
+scale(.5)
|
|
opacity: 0
|