main.css 693 B

1234567891011121314151617181920212223242526272829
  1. .glyphicon.spinning {
  2. animation: spin 1s infinite linear;
  3. -webkit-animation: spin2 1s infinite linear;
  4. }
  5. @keyframes spin {
  6. from { transform: scale(1) rotate(0deg); }
  7. to { transform: scale(1) rotate(360deg); }
  8. }
  9. @-webkit-keyframes spin2 {
  10. from { -webkit-transform: rotate(0deg); }
  11. to { -webkit-transform: rotate(360deg); }
  12. }
  13. .pre {
  14. display: block;
  15. padding: 9.5px;
  16. margin: 0 0 10px;
  17. font-size: 13px;
  18. line-height: 1.42857143;
  19. color: #333;
  20. word-break: break-all;
  21. word-wrap: break-word;
  22. background-color: #f5f5f5;
  23. border: 1px solid #ccc;
  24. border-radius: 4px;
  25. font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  26. }