-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhoollywood.css
150 lines (121 loc) · 2.43 KB
/
hoollywood.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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: black;
}
.logo {
background-color: brown;
}
.header a {
text-align: right;
/* Center-align text */
padding: 16px;
/* Add some padding */
transition: all 0.3s ease;
/* Add transition for hover effects */
color: white;
/* White text color */
font-size: 24px;
/* Increased font-size */
}
.header ul li {
display: inline-block;
list-style: none;
font-size: 20px;
}
.header ul li a {
color: white;
display: flex;
text-decoration: none;
}
.header a.active {
background-color: blue;
}
.header a:hover {
background-color: black;
}
.text-image {
color: white;
display: flex;
flex-wrap: wrap;
align-items: center;
padding: 20px;
flex-direction: column;
}
.text-image img {
width: 100%;
height: auto;
}
h1 {
text-align: center;
}
p,
ul li {
list-style: none;
font-size: 1.6rem;
}
.buttons {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
padding: 20px;
}
.btn1 {
display: flex;
background-color: red;
padding: 10px 30px;
border-radius: 5px;
text-decoration: none;
color: white;
}
.btn2 {
background-color: green;
padding: 10px 30px;
border-radius: 5px;
text-decoration: none;
color: white;
}
.video-responsive {
width: 100%;
height: auto;
}
/* Style the buttons that are used to open and close the accordion panel */
.accordion {
background-color: #eee;
color: black;
cursor: pointer;
padding: 18px;
width: 100%;
text-align: left;
border: none;
outline: none;
transition: 0.4s;
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active,
.accordion:hover {
background-color: #ccc;
}
.panel {
padding: 0 18px;
background-color: white;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
}
.accordion:after {
content: '\02795';
/* Unicode character for "plus" sign (+) */
font-size: 13px;
color: #777;
float: right;
margin-left: 5px;
}
.active:after {
content: "\2796";
/* Unicode character for "minus" sign (-) */
}