-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
62 lines (54 loc) · 1.02 KB
/
style.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
body {
background: linear-gradient(45deg, #ff0018, #ff8c00, #ffd300, #4caf50, #0066ff, #a864a8);
background-size: 400% 400%;
animation: gradient 15s infinite;
font-family: Arial, sans-serif;
}
@keyframes gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
header {
background-color: #333;
color: white;
padding: 20px;
text-align: center;
}
h1 {
margin: 0;
}
p {
margin-bottom: 20px;
}
#definition,
#comparison,
#opinions {
background-color: white;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
margin: 20px auto;
max-width: 800px;
padding: 20px;
}
h2 {
border-bottom: 1px solid #ccc;
color: #333;
font-size: 24px;
margin-bottom: 10px;
padding-bottom: 5px;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
li {
margin-bottom: 10px;
}