-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.scss
63 lines (51 loc) · 1.09 KB
/
styles.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
@import "mixins.scss";
@import "variables.scss";
@import "extensions.scss";
body {
@extend %starry-night;
}
#sun {
background-color: #ffea54;
border-radius: 50px;
height: 80px;
left: calc(50% - 40px);
position: absolute;
top: calc(50% - 40px);
width: 80px;
}
#mercury {
@include planet($mercury);
}
#venus {
@include planet($venus);
}
#earth {
@include planet($earth);
}
#mars {
@include planet($mars);
}
#jupiter {
@include planet($jupiter);
}
#saturn {
@include planet($saturn);
}
#uranus {
@include planet($uranus);
}
#neptune {
@include planet($neptune);
}
#pluto {
@include planet($pluto);
}
@include orbit("mercury", map-get($mercury, 'orbit'));
@include orbit("venus", map-get($venus, 'orbit'));
@include orbit("earth", map-get($earth, 'orbit'));
@include orbit("mars", map-get($mars, 'orbit'));
@include orbit("jupiter", map-get($jupiter, 'orbit'));
@include orbit("saturn", map-get($saturn, 'orbit'));
@include orbit("uranus", map-get($uranus, 'orbit'));
@include orbit("neptune", map-get($neptune, 'orbit'));
@include orbit("pluto", map-get($pluto, 'orbit'));