Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
typo3
qfq
Commits
791fc9ce
Commit
791fc9ce
authored
Apr 20, 2017
by
bbaer
Browse files
css classes for spinning, etc
parent
cfd1f3fa
Changes
1
Hide whitespace changes
Inline
Side-by-side
less/qfq-bs.css.less
View file @
791fc9ce
...
...
@@ -193,4 +193,47 @@ i.@{spinner_class} {
//
//.text-note {
// padding-top: 7px;
//}
\ No newline at end of file
//}
/* classes for toggleable note mockup, bb */
.qfq-icon-inside {
position: relative;
top: -22px;
left: calc(100% - 26px);
}
.qfq-margin-top {
margin-top: 10px;
}
/* spinning icons */
.text-large-with-margin {
font-size: 8em;
margin: 0.4em;
}
.glyphicon-spin {
-webkit-animation: spin 2000ms infinite linear;
animation: spin 2000ms infinite linear;
}
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@keyframes spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment