-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (67 loc) · 1.17 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: #333;
font-family: Arial, sans-serif;
}
.container {
position: relative;
background: #fff;
padding: 50px;
border-radius: 25px;
text-align: center;
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}
h1 {
margin-bottom: 15px;
color: #333;
}
h3 {
margin-bottom: 30px;
color: #777;
font-weight: normal;
}
.rating {
display: flex;
align-items: center;
gap: 15px;
}
i {
color: #e6e6e6;
font-size: 40px;
cursor: pointer;
transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}
i:hover {
transform: scale(1.2);
}
h2 {
margin-top: 30px;
color: #333;
}
button {
margin-top: 20px;
padding: 10px 20px;
border: none;
border-radius: 5px;
background-color: #ff5733;
color: white;
cursor: pointer;
transition: background-color 0.3s ease-in-out;
}
button:hover {
background-color: #c73e24;
}
i.active {
color: orange;
}
i.hover {
color: #ffc107; /* Lighter shade for hover */
}