Site: http://codepen.io/spacekat/pen/yjAen
Demo :
kodlar: html
.header
%h1.galaxy
MUJDAT SAYAR
Kodlar: Css
@import url(http://fonts.googleapis.com/css?family=Krona+One);
// Color
$blueDarkest: #87A09F;
.header {
h1 {
font-family: 'Krona One', sans-serif;
/* fallback color */
color: $blueDarkest;
font-style: italic;
letter-spacing: -0.1em;
font-size: 7em;
margin: 0 auto;
text-align: center;
padding: 0px 0;
&.galaxy {
/* Fill with galaxy art (in WebKit, only) */
/* overrides color with nothingness */
-webkit-text-fill-color: transparent;
/* remember non WebKit browsers will see all of this EXCEPT the text */
background: #000 url(http://rikeripsum.herokuapp.com/img/space-tile.jpg) repeat top center;
/* the magic */
-webkit-background-clip: text;
}
}
}