-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathparticles.css
80 lines (68 loc) · 1.22 KB
/
particles.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
78
79
80
body {
font-family: sans-serif;
background: black;
color: salmon;
text-align: center;
}
canvas {
border: 1px solid gray;
display: inline-block;
cursor: none;
}
h1 {
font-size: 24px;
margin: 0;
}
.description {
width: 500px;
margin: auto;
text-align: justify;
font-size: 14px;
}
.count, .fps {
font-weight: bold;
}
.controls {
text-align: left;
width: 550px;
margin: auto;
}
.controls button, .controls input {
width: 100px;
height: 25px;
margin: 2px 0;
vertical-align: middle;
background: #555;
border-radius: 4px;
text-shadow: 1px 1px 2px #000;
border: none;
color: #ccc;
cursor: pointer;
box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.2) inset,
0px 0px 0px 3px rgba(0, 0, 0, 0.1) inset;
}
.controls button:hover, .controls input:hover {
background: #558;
}
.controls label {
display: inline-block;
width: 90px;
color: pink;
font-weight: bold;
}
a:link, a:visited {
color: pink;
}
.controls .slider label {
font-weight: normal;
width: 100px;
height: 25px;
margin: 2px 0;
}
.controls .slider {
margin-left: 94px;
display: block;
}
.slider input {
width: 308px;
}