-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.css
More file actions
108 lines (91 loc) · 2.07 KB
/
Copy pathtest.css
File metadata and controls
108 lines (91 loc) · 2.07 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
body {
font-family: Arial, sans-serif;
/* background-color: #fc0000; */
color: #333;
margin: 0;
padding: 0;
box-sizing: border-box;
overflow-x: hidden;
position: relative;
}
h1 {
text-align: center;
margin-top: 20px;
color: rgba(255, 159, 64, 1);
animation: fadeIn 2s ease-in-out;
}
.image-container {
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
gap: 20px;
}
.image-container img {
width: 45%;
height: auto;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s, box-shadow 0.3s;
}
.comparison-table {
display: flex;
justify-content: center;
margin-top: 50px;
animation: fadeInUp 1s ease-in-out;
}
table {
width: 80%;
border: 2px solid rgba(255, 159, 64, 1);
border-radius: 15px;
overflow: hidden;
}
th, td {
border: 1px solid #f2f2f2;
padding: 15px;
text-align: center;
}
th {
background-color: #f2f2f2;
}
ul {
list-style-type: none;
padding: 0;
margin: 20px auto;
width: 80%;
}
ul li {
background-color: rgba(255, 159, 64, 0.1);
border-left: 5px solid rgba(255, 159, 64, 1);
padding: 15px;
margin: 10px 0;
border-radius: 5px;
transition: background-color 0.3s, transform 0.3s;
}
ul li:hover {
background-color: rgba(255, 159, 64, 0.2);
transform: translateX(5px);
}
.background-animation {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: 400% 400%;
z-index: -1;
animation: gradientAnimation 15s ease infinite;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes gradientAnimation {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}