File tree 3 files changed +16
-3
lines changed
3 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 62
62
// Add the year label; the value is set on transition.
63
63
var label = svg . append ( "text" )
64
64
. attr ( "class" , "year label" )
65
- . attr ( "text-anchor" , "end " )
66
- . attr ( "y" , height - 24 )
67
- . attr ( "x" , width )
65
+ . attr ( "text-anchor" , "start " )
66
+ . attr ( "y" , 28 )
67
+ . attr ( "x" , 30 )
68
68
. text ( 1800 ) ;
69
69
70
70
// Load the data.
Original file line number Diff line number Diff line change @@ -82,6 +82,7 @@ require([
82
82
widget . placeAt ( 'cesiumContainer' ) ;
83
83
widget . startup ( ) ;
84
84
widget . fullscreen . viewModel . fullscreenElement ( document . body ) ;
85
+ widget . sceneTransitioner . toColumbusView ( ) ;
85
86
86
87
var providerViewModels = widget . baseLayerPicker . viewModel . imageryProviderViewModels ;
87
88
widget . baseLayerPicker . viewModel . selectedItem ( providerViewModels ( ) [ 8 ] ) ;
Original file line number Diff line number Diff line change 74
74
transition-duration : 1s ;
75
75
}
76
76
77
+ @media only screen and (min-width : 1920px ) {
78
+ # chart {
79
+ -webkit-transform : scale (0.75 );
80
+ -moz-transform : scale (0.75 );
81
+ transform : scale (0.75 );
82
+ }
83
+ }
84
+
77
85
# chart : hover {
78
86
-webkit-transform : scale (1 );
79
87
-moz-transform : scale (1 );
84
92
fill : # eee ;
85
93
}
86
94
95
+ .year {
96
+ font-size : 40px ;
97
+ }
98
+
87
99
.domain {
88
100
fill : none;
89
101
stroke : # eee ;
You can’t perform that action at this time.
0 commit comments