mirror of https://github.com/sgoudham/carbon.git
Merge branch 'master' into toolbar
commit
459ede6765
@ -0,0 +1,6 @@
|
||||
# Code
|
||||
|
||||
### Usage
|
||||
- Drag a file onto the editor
|
||||
- Append a GitHub Gist id to the url
|
||||
- Paste your code directly!
|
@ -0,0 +1,35 @@
|
||||
.react-spinner {
|
||||
position: relative;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
}
|
||||
|
||||
.react-spinner_bar {
|
||||
-webkit-animation: react-spinner_spin 1.2s linear infinite;
|
||||
-moz-animation: react-spinner_spin 1.2s linear infinite;
|
||||
animation: react-spinner_spin 1.2s linear infinite;
|
||||
border-radius: 5px;
|
||||
background-color: white;
|
||||
position: absolute;
|
||||
width: 20%;
|
||||
height: 7.8%;
|
||||
top: -3.9%;
|
||||
left: -10%;
|
||||
}
|
||||
|
||||
@keyframes react-spinner_spin {
|
||||
0% { opacity: 1; }
|
||||
100% { opacity: 0.15; }
|
||||
}
|
||||
|
||||
@-moz-keyframes react-spinner_spin {
|
||||
0% { opacity: 1; }
|
||||
100% { opacity: 0.15; }
|
||||
}
|
||||
|
||||
@-webkit-keyframes react-spinner_spin {
|
||||
0% { opacity: 1; }
|
||||
100% { opacity: 0.15; }
|
||||
}
|
Loading…
Reference in New Issue