Skip to content

Instantly share code, notes, and snippets.

@skounis
Created October 5, 2015 10:40
Show Gist options
  • Select an option

  • Save skounis/991de05655200d57d697 to your computer and use it in GitHub Desktop.

Select an option

Save skounis/991de05655200d57d697 to your computer and use it in GitHub Desktop.
Shoutcast Ionic Tutorial - Styles
.stream-background {
background: url('../images/ionic.jpg') center center;
background-size: cover;
}
.play-button-icon.icon:before {
font-size: 200px;
color: wheat;
}
.center {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-direction: normal;
-moz-box-direction: normal;
-webkit-box-orient: horizontal;
-moz-box-orient: horizontal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-flex-wrap: nowrap;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-box-pack: center;
-moz-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-align-content: stretch;
-ms-flex-line-pack: stretch;
align-content: stretch;
-webkit-box-align: center;
-moz-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment