-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
90 lines (61 loc) · 895 Bytes
/
style.css
File metadata and controls
90 lines (61 loc) · 895 Bytes
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
78
79
80
81
82
83
84
85
86
87
88
89
90
.description {
color: grey;
font-size: 30px;
border-left: 4px solid black;
// border-style: solid;
border-width: 10px;
border-left-style: solid;
padding: 25px;
width: 500px;
}
.chart {
width: 1000px;
height: 1000px;
background-color: pink;
}
.circ1 {
stroke: green;
fill: white;
stroke-width: 5;
}
.circ2 {
stroke: red;
fill: blue;
stroke-width: 5;
}
.sun {
stroke: yellow;
fill: yellow;
stroke-width: 5;
}
.jupiter {
stroke: blue;
fill: white;
stroke-width: 5;
}
.saturn {
stroke: orange;
fill: white;
stroke-width: 5;
}
.uranus {
stroke: green;
fill: white;
stroke-width: 5;
}
.neptune {
stroke: blue;
fill: white;
stroke-width: 5;
}
.earth {
stroke: blue;
fill: white;
stroke-width: 5;
}
.moon {
stroke: grey;
fill: grey;
stroke-width: 5;
}
<circle class="circ2" cx="200" cy="100" r="10"></circle>