-
Notifications
You must be signed in to change notification settings - Fork 0
/
external.css
95 lines (82 loc) · 1.28 KB
/
external.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
body {
font-family: sans-serif;
background-color: #FAEBD7;
overflow-y: scroll;
}
h1 {
text-align: center;
color: #000;
}
.p1 {
margin: 0 auto;
margin-bottom: 30px;
text-align: center;
width: 1000px;
color: #666;
}
.p2{
margin: 10px;
margin-top: 40px;
text-align: left;
width: 1000px;
color: #666;
}
.p3{
margin: 0 auto;
margin-top: 20px;
text-align: left;
width: 1000px;
color: #666;
}
h2 {
margin:10px;
margin-top: 50px;
text-align: left;
color: #B8860B;
}
.p4{
margin: 10px;
margin-top: 20px;
text-align: left;
width: 1000px;
color: #666;
}
button {
background-color: #B8860B;
color: White;
width: 40%;
padding: 10px;
border: 1px solid #B8860B;
cursor: pointer;
}
.p5{
margin: 10px;
margin-top: 20px;
text-align: left;
width: 1000px;
color: #666;
}
.p6{
margin: 10px;
margin-top: 20px;
text-align: left;
width: 1000px;
color: #666;
}
.circle {
width: 20px;
height: 20px;
background-color: blue;
position: absolute;
animation: moveCircle 1s infinite;
}
@keyframes moveCircle {
0% {
left: random(100vw);
top: random(100vh);
}
100% {
left: random(100vw);
top: random(100vh);
}
}