Files
NodeBB/public/less/install.less

101 lines
1.5 KiB
Plaintext
Raw Normal View History

2020-06-01 09:06:23 -06:00
@import "./admin/vars";
.working {
width: 24px;
height: 24px;
position: relative;
display: inline-block;
vertical-align: bottom;
&::before, &::after {
content: ' ';
width: 100%;
height: 100%;
border-radius: 50%;
background-color: #fff;
opacity: 0.6;
position: absolute;
top: 0;
left: 0;
-webkit-animation: sk-bounce 2.0s infinite ease-in-out;
animation: sk-bounce 2.0s infinite ease-in-out;
}
&::after {
-webkit-animation-delay: -1.0s;
animation-delay: -1.0s;
}
}
@-webkit-keyframes sk-bounce {
0%, 100% { -webkit-transform: scale(0.0) }
50% { -webkit-transform: scale(1.0) }
}
@keyframes sk-bounce {
0%, 100% {
transform: scale(0.0);
-webkit-transform: scale(0.0);
} 50% {
transform: scale(1.0);
-webkit-transform: scale(1.0);
}
}
2015-04-21 18:48:58 -04:00
.btn, .form-control, .navbar {
border-radius: 0;
}
.container {
font-size: 18px;
margin-bottom: 100px;
}
body, small, p, div {
2020-06-01 09:06:23 -06:00
font-family: @font-family-sans-serif;
2015-04-21 18:48:58 -04:00
}
2015-04-21 17:14:27 -04:00
2015-04-21 16:21:04 -04:00
.input-row {
margin-bottom: 20px;
2015-04-21 17:14:27 -04:00
2015-04-21 18:00:01 -04:00
.form-control {
margin-bottom: 5px;
}
.help-text {
pointer-events: none;
2015-04-21 18:48:58 -04:00
line-height: 20px;
color: #888;
font-size: 85%;
display: none;
2015-04-21 18:00:01 -04:00
}
.input-field {
border-right: 5px solid #FFF;
}
2015-04-21 17:14:27 -04:00
&.active {
.input-field {
2015-04-21 18:00:01 -04:00
border-right-color: #38B44A;
2015-04-21 17:14:27 -04:00
padding-right: 20px;
}
.help-text {
display: block;
}
}
&.error {
.input-field {
2015-04-21 18:00:01 -04:00
border-right-color: #BF3E11;
2015-04-21 17:14:27 -04:00
padding-right: 20px;
}
.help-text {
display: block;
}
}
2015-04-21 16:21:04 -04:00
}