-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuying.css
138 lines (121 loc) · 2.27 KB
/
buying.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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f8f8f8;
color: #333;
}
/* Sticky header */
header {
background-color: #fff;
color: black;
/* padding: 10px 20px; */
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
border-radius: 10px;
position: sticky;
top: 0;
z-index: 1000;
}
/* Flexbox for header */
header .header-container {
display: flex;
justify-content: space-between;
align-items: center;
}
#login {
display: flex;
justify-content: flex-end;
}
#login button {
background-color: #ff9900;
color: white;
border: none;
padding: 10px 20px;
cursor: pointer;
border-radius: 5px;
font-weight: bold;
}
#login button:hover {
background-color: #e68a00;
}
nav ul {
list-style: none;
display: flex;
justify-content: center;
background-color: #333;
border-radius: 5px;
padding: 15px 0;
margin: 0;
}
nav ul li {
margin: 0 20px;
}
nav ul li a {
color: white;
text-decoration: none;
font-size: 18px;
transition: color 0.3s;
}
nav ul li a:hover {
color: #ff9900;
}
/* Search bar */
#search-bar {
width: 100%;
max-width: 400px;
padding: 8px;
border: 1px solid #ccc;
border-radius: 5px;
}
/* #video-summaries div {
font-family: Arial, sans-serif;
font-size: 14px;
color: #333;
} */
/* Main Content */
main {
max-width: 1900px;
height: auto;
margin: 20px auto;
padding: 20px;
background: #fff;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
border-radius: 80px;
}
main h2 {
text-align: center;
margin-bottom: 20px;
color: #007bff;
}
/* Video Summaries */
#video-summaries {
display: flex;
flex-direction: column;
gap: 20px;
}
.video-container {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
background: #f9f9f9;
border: 1px solid #ddd;
border-radius: 10px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
}
.summary-box {
margin-top: 10px;
text-align: center;
font-size: 0.9rem;
color: #555;
border-top: 1px solid #ddd;
padding: 10px;
}
/* Footer */
footer {
background-color: #222;
color: #fff;
text-align: center;
padding: 15px 0;
margin-top: 20px;
}