-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (63 loc) · 1.29 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
63
@keyframes pulse {
0% {
transform: scale(1);
box-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}
50% {
transform: scale(1.05);
box-shadow: 0 0 20px rgba(255, 204, 0, 0.8);
}
100% {
transform: scale(1);
box-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}
}
body {
font-family: 'Poppins', sans-serif;
text-align: center;
margin: 50px;
background: linear-gradient(to right, #ff9966, #ff5e62);
color: white;
}
.container {
background: rgba(255, 255, 255, 0.2);
padding: 20px;
border-radius: 10px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
display: inline-block;
}
input {
padding: 10px;
margin: 10px;
width: 120px;
border: none;
border-radius: 5px;
text-align: center;
}
button {
padding: 10px 20px;
border: none;
border-radius: 5px;
background: #ffcc00;
color: black;
font-weight: bold;
cursor: pointer;
transition: 0.3s;
animation: pulse 1.5s infinite;
}
button:hover {
background: #ffdd33;
transform: scale(1.1);
box-shadow: 0 0 25px rgba(255, 221, 51, 1);
}
ul {
list-style-type: none;
padding: 0;
margin-top: 20px;
}
li {
background: rgba(255, 255, 255, 0.3);
padding: 10px;
margin: 5px 0;
border-radius: 5px;
}