-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathstyle.css
More file actions
99 lines (87 loc) · 1.54 KB
/
style.css
File metadata and controls
99 lines (87 loc) · 1.54 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
body{
font-family: Helvetica, Arial, sans-serif;
background-color: rgb(0, 7, 1);
color: rgb(222, 255, 221);
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
h2 {
font-weight: normal;
}
img {
width: 300px;
}
.bee-movie {
font-family: Arial, sans-serif;
font-size: 16px;
color: #333;
background-color: #f7f7f7;
border: 1px solid #ccc;
padding: 10px;
margin: 10px;
width: 200px;
height: 150px;
display: block;
text-align: center;
box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease;
border-radius: 5px;
overflow: hidden;
position: relative;
z-index: 1;
transform: scale(1);
cursor: pointer;
outline: none;
}
.bee-movie:hover {
background-color: #ddd;
transform: scale(1.05);
}
.bee-movie:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 50%;
background-color: rgba(255, 0, 0, 0.1);
z-index: -1;
}
.bee-movie:after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 50%;
background-color: rgba(0, 0, 255, 0.1);
z-index: -1;
}
.bee-movie p {
margin: 0;
padding: 5px;
}
.bee-movie ul {
list-style-type: disc;
padding-left: 20px;
}
.bee-movie li {
margin-bottom: 5px;
}
.bee-movie .button {
background-color: #ff9900;
color: white;
padding: 8px 16px;
border: none;
border-radius: 3px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 14px;
margin-top: 10px;
}
.bee-movie .button:hover {
background-color: #e68a00;
}