atom-beautify/examples/nested-jsbeautifyrc/less/expected/test2.less

169 lines
2.7 KiB
Plaintext
Raw Normal View History

// main: style.less
@import (reference)"variables.less";
@import (reference)"mixins.less";
2015-03-20 11:44:59 -06:00
.modal {
position: fixed;
height: 100%;
width: 100%;
background-color: fade(@black, 70%);
z-index: 10;
opacity: 0;
display: none;
2015-03-20 11:44:59 -06:00
.innerModal {
margin: auto;
background-color: @white;
overflow: hidden;
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%);
2015-03-20 11:44:59 -06:00
.fa {
float: right;
color: @white;
background-color: firebrick;
padding: 5px 7px;
border-radius: 20px;
2015-03-20 11:44:59 -06:00
&:hover {
background-color: lighten(@black, 50%);
cursor: pointer;
}
2015-03-20 11:44:59 -06:00
&:active {
background-color: lighten(@black, 25%);
}
}
}
2015-03-20 11:44:59 -06:00
&.modal-2text {
.innerModal {
width: @container-width;
margin-top: 50px;
height: 75%;
padding: 10px 25px;
background-color: gainsboro;
border-radius: 4px;
2015-03-20 11:44:59 -06:00
h2 {
margin: 0 0 7px;
}
2015-03-20 11:44:59 -06:00
div {
height: 70%;
overflow-y: scroll;
background-color: @white;
padding: 15px;
border-radius: 4px;
}
2015-03-20 11:44:59 -06:00
.large-cta {
margin-top: 25px;
}
}
}
}
2015-03-20 11:44:59 -06:00
#modal-video {
.innerModal {
left: 10%;
margin-top: 30px;
width: 1000px;
background-color: lighten(@black, 25%);
2015-03-20 11:44:59 -06:00
iframe {
width: 600px;
height: 340px;
margin: 2% auto;
}
//container
> div {
text-align: center;
2015-03-20 11:44:59 -06:00
a {
.styleLinks(@white, darken(@white, 10%));
padding: 5px;
text-transform: uppercase;
2015-03-20 11:44:59 -06:00
&:hover {
background-color: fade(@white, 15%);
}
2015-03-20 11:44:59 -06:00
&:active {
background-color: fade(@white, 30%);
}
}
2015-03-20 11:44:59 -06:00
h3 {
color: @white;
font-size: 3em;
margin: 20px auto;
}
2015-03-20 11:44:59 -06:00
button {
margin-bottom: 50px;
}
}
}
}
2015-03-20 11:44:59 -06:00
.slideIn {
.animation(SlideIn, 0.5s);
}
2015-03-20 11:44:59 -06:00
@-webkit-keyframes SlideIn {
0% {
.transform(translateY(-100%));
}
2015-03-20 11:44:59 -06:00
100% {
.transform(translateY(0px));
}
}
2015-03-20 11:44:59 -06:00
.fadeIn {
display: block;
.animation(FadeIn, 0.5s);
}
2015-03-20 11:44:59 -06:00
@-webkit-keyframes FadeIn {
0% {
opacity: 0;
}
2015-03-20 11:44:59 -06:00
100% {
opacity: 1;
}
}
2015-03-20 11:44:59 -06:00
.slideOut {
.animation(SlideOut, 0.5s);
}
2015-03-20 11:44:59 -06:00
@-webkit-keyframes SlideOut {
0% {
.transform(translateY(0%));
}
2015-03-20 11:44:59 -06:00
100% {
.transform(translateY(-100%));
}
}
2015-03-20 11:44:59 -06:00
.fadeOut {
.animation(FadeOut, 0.5s);
}
2015-03-20 11:44:59 -06:00
@-webkit-keyframes FadeOut {
0% {
opacity: 1;
}
2015-03-20 11:44:59 -06:00
100% {
opacity: 0;
display: none;
}
}