File tree Expand file tree Collapse file tree 2 files changed +36
-1
lines changed Expand file tree Collapse file tree 2 files changed +36
-1
lines changed Original file line number Diff line number Diff line change
1
+ @import ' functions' ;
2
+
3
+ .cube {
4
+ position :relative ;
5
+ display :block ;
6
+ transform-style :preserve-3d ;
7
+ transform :rotateX (-33.5deg ) rotateY (45deg );
8
+
9
+ & __inner ,
10
+ & __outer {
11
+ display :inline-block ;
12
+ transform-style :preserve-3d ;
13
+ transition :transform 1000ms ;
14
+ }
15
+
16
+ & __inner {
17
+ position :absolute ;
18
+ top :-2px ;
19
+ left :0 ;
20
+ }
21
+
22
+ & __face {
23
+ position :absolute ;
24
+ width :100% ;
25
+ height :100% ;
26
+ border : 3px solid getColor (white );
27
+ }
28
+
29
+ .cube__outer .cube__face {
30
+ background :transparentize (getColor (malibu ), 0.5 );
31
+ }
32
+
33
+ .cube__inner .cube__face {
34
+ background :getColor (denim );
35
+ }
36
+ }
Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ import SplashViz from '../splash-viz/splash-viz';
5
5
import '../../styles' ;
6
6
import './splash-style' ;
7
7
import '../splash-viz/splash-viz-style' ;
8
- import '../splash-file/splash-file-style' ;
9
8
import Support from '../support/support' ;
10
9
11
10
export default props => {
You can’t perform that action at this time.
0 commit comments