-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
81 lines (69 loc) · 1.15 KB
/
styles.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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f9;
color: #333;
}
.header {
text-align: center;
background: #1e1e2e;
color: #fff;
padding: 1.5rem 0;
}
.main-content {
padding: 2rem;
}
.timeline {
margin-bottom: 2rem;
}
.timeline h2 {
text-align: center;
margin-bottom: 1rem;
}
.timeline-item {
display: flex;
justify-content: space-between;
margin: 0.5rem 0;
padding: 0.5rem;
background: #fff;
border: 1px solid #ddd;
border-radius: 5px;
}
.movie-cards {
display: flex;
justify-content: center;
gap: 1rem;
}
.card {
background: #fff;
border: 1px solid #ddd;
border-radius: 5px;
padding: 1rem;
width: 200px;
text-align: center;
}
.card-img {
width: 100%;
border-radius: 5px;
}
.card-title {
margin: 0.5rem 0;
}
.play-button {
background: #007bff;
color: #fff;
border: none;
padding: 0.5rem 1rem;
border-radius: 5px;
cursor: pointer;
}
.play-button:hover {
background: #0056b3;
}
.footer {
text-align: center;
padding: 1rem;
background: #1e1e2e;
color: #fff;
}