-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
181 lines (145 loc) · 2.38 KB
/
style.css
File metadata and controls
181 lines (145 loc) · 2.38 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
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
151
152
153
154
155
156
157
158
159
@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;
}
.material-icons{
color: grey;
}
h1{
color: rgb(8, 8, 8);
margin-bottom: 14px;
font-size: 20px;
}
.header{
display: flex;
justify-content: space-between;
align-items: center;
height: 70px;
padding: 15px;
}
.header-left{
display: flex;
align-items: center ;
}
.header-left img{
width: 100px;
margin-left: 15px;
}
.header span{
padding: 0px 7px;
cursor: pointer ;
}
.header-search form{
border: 1px solid #ddd;
height: 35px;
margin:0;
padding:0;
display:flex;
}
.header-search input{
width: 500px;
padding: 10px;
margin: 0;
border:none;
}
.header-search button{
padding: 0;
margin: 0;
height: 100%;
}
.mainbody{
height: calc(100vh - 70px);
display: flex;
overflow: hidden;
}
.sb{
height: 100%;
width: 230px;
background-color: #fff;
overflow-y: scroll;
}
.sbcs{
width: 100%;
display: flex;
flex-direction: column;
margin-top: 15px;
margin-bottom: 15px;
}
.sbc{
display: flex;
align-items: center;
padding: 12px 25px;
}
.sbc span{
margin-left: 15px;
}
.sbc:hover{
background: whitesmoke;
cursor: pointer;
}
.sb::-webkit-scrollbar{
display: flex;
}
hr{
height: 1px;
background-color: gray;
border: none;
}
.videos{
background-color: whitesmoke;
width: 100%;
height: 100%;
padding: 15px 25px;
border-top: 1px solid #ddd;
overflow-y: scroll;
}
.videos_container{
display: flex;
flex-direction: row;
justify-content: space-around;
flex-wrap: wrap;
}
.video{
width: 320px;
margin-right: 10px;
margin-bottom: 30px;
}
.video_thumbnail{
width: 100%;
height: 170px;
}
.video_thumbnail img{
object-fit: cover;
height: 100%;
width: 100%;
}
.author img{
object-fit: cover;
border-radius: 50%;
height: 40px;
width: 40px;
margin-right: 10px;
}
.details{
display: flex;
margin-top: 10px;
}
.title{
display: flex;
flex-direction: column;
}
.title h3{
color: rgb(8, 8, 8);
font-size: 14px;
line-height: 16px;
margin-bottom: 8px;
}
.title a,span{
color: rgb(88, 80, 80);
font-size: 14px;
}