-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisplay.css
77 lines (64 loc) · 979 Bytes
/
display.css
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
.black {
background-color: black;
}
.white {
background-color: white;
}
#celestial {
height: 300px;
width: 300px;
border-radius: 100%;
padding: 20px;
margin: auto;
position: absolute;
top: 0; left: 0; bottom: 0; right: 0;
}
#sky {
height: 100%;
widht: 100%;
}
#moonspot1 {
height: 40px;
width: 40px;
border-radius: 100%;
float: right;
margin: 20px;
}
#moonspot2 {
height: 80px;
width: 80px;
border-radius: 100%;
float: right;
margin: 20px;
}
#moonspot3 {
height: 180px;
width: 180px;
border-radius: 100%;
float: right;
margin: 20px;
}
.sun {
background-color: #ffdd00;
border: 10px solid #f1c40f;
}
.sun:hover {
border: 20px solid #f1c40f;
}
.moon {
background-color: #bdc3c7;
border: 10px solid #eaeff2;
}
.moon:hover {
border: 20px solid #eaeff2;
}
/* This class is used to toggle the visibility of the moonspots */
.visible {
background-color: #eaeff2;
}
.day {
background-color: #37d8e6;
}
.night {
background-color: #2c3e50;
}