-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
101 lines (83 loc) · 1.55 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
.search-bar {
margin-top: 20px;
display: flex;
border-radius: 25px;
}
#search {
flex: 1;
max-width: 600px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 16px;
}
#search-button {
background-color: #007bff;
color: #fff;
padding: 10px 16px;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
}
#search-button:hover {
background-color: #0055cc;
}
.category-buttons {
display: flex;
gap: 10px;
margin-top: 10px;
}
.category-button {
background-color: lightgray;
padding: 8px 16px;
border: none;
border-radius: 16px;
cursor: pointer;
transition: background-color 0.3s;
}
.category-button.selected {
background-color: black;
color: #fff;
}
.category-button:hover {
background-color: darkgray;
}
.video-container {
margin: 10px;
text-align: center;
}
.video-title {
font-weight: bold;
}
.add-button {
width: 50px;
height: 50px;
background-color: #007bff;
color: #fff;
font-size: 24px;
border: none;
border-radius: 50%; /* Makes it circular */
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
margin-left: 10px;
}
.add-button:hover {
background-color: #0055cc;
}
.notes-section {
margin-left: 20px;
}
.header-container {
display: flex;
align-items: center;
}
.a {
color: #007bff;
text-decoration: underline;
cursor: pointer;
font-family: Arial;
margin-left: 1700px;
}