37 lines
546 B
SCSS
37 lines
546 B
SCSS
/*julianne example*/
|
|
|
|
#julianneexample.future, #julianneexample.past {
|
|
opacity:0;
|
|
}
|
|
|
|
#julianneexample {
|
|
text-align:center;
|
|
}
|
|
|
|
#julianneexample small {
|
|
font-size:30px;
|
|
font-style:italic;
|
|
}
|
|
|
|
#example3 {
|
|
width: 219px;
|
|
height: 43px;
|
|
position: absolute;
|
|
top: -114px;
|
|
left: 48px;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
// name font
|
|
@mixin examplenamefont() {
|
|
font-family: "Dancing Script", cursive;
|
|
font-weight: bolder;
|
|
}
|
|
|
|
#julianneexample i {
|
|
@include examplenamefont();
|
|
}
|
|
|
|
#twoexamples i {
|
|
@include examplenamefont();
|
|
} |