-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvideo.css
129 lines (105 loc) · 1.58 KB
/
video.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
#main {
width: 70%;
height: 300px;
}
#video_details {
flex: 3;
height: 600px;
}
#recomm {
flex: 1;
}
.input {
display: flex;
}
.result {
display: flex;
cursor: pointer;
}
/* ==================================== */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Roboto", sans-serif;
}
.searchBox {
width: 40%;
display: flex;
}
.searchBox input {
width: 100%;
height: 30px;
margin-top: 3%;
/* border: none; */
}
.searchBox button {
width: 7%;
height: 30px;
margin-top: 3%;
border: none;
border-radius: 5px;
}
.material-icons {
color: grey;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
height: 70px;
padding: 15px;
}
.header_left img {
width: 100px;
margin-left: 15px;
}
.header_left {
display: flex;
align-items: center;
cursor: pointer;
}
.header i {
padding: 0px 7px;
cursor: pointer;
}
button {
margin-top: -9%;
}
.mainBody {
display: flex;
}
.sidebar {
height: 100%;
width: 310px;
background-color: white;
overflow-y: hidden;
overflow-x: hidden;
}
.sidebar_categories {
width: 100%;
display: flex;
flex-direction: column;
margin: 15px;
margin-top: 15px;
}
.sidebar_category {
display: flex;
align-items: center;
padding: 12px 25px;
}
.sidebar_category span {
margin-left: 2%;
}
.sidebar_category:hover {
background: rgb(226, 215, 215);
cursor: pointer;
}
hr {
height: 1px;
background-color: rgb(190, 198, 204);
border: none;
}