-
Notifications
You must be signed in to change notification settings - Fork 0
/
video.css
103 lines (98 loc) · 1.7 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
body{
position: relative;
background-color: #f0f0f0;
font-family: 'roboto',sans-serif;
}
.navbar{
position :fixed;
top: 0;
left: 0;
width:95%;
height:60px;
background-color: aliceblue;
display: flex;
align-items: center;
padding: 0 2.5vw;
margin-bottom:20px;
}
.toggle-btn{
width:20px;
height:10px;
position: relative;
cursor: pointer;
/* background-color: black; */
}
.toggle-btn span{
position:absolute;
width: 100%;
height:2px;
top:50%;
transform: translateY(-50%);
background-color: #0e0a0a;
}
.toggle-btn span:nth-child(1){
top:0
}
.toggle-btn span:nth-child(3){
top:100%
}
.logo{
height:30px;
margin:-10px 30px 0
}
.search-box{
position: relative;
max-width: 500px;
width: 50%;
height:35px;
display: flex;
}
#search{
width: 85%;
height: 100%;
border:2px solid #dbddbd;
padding: 0 22px;
font-size: 16px;
text-transform: capitalize;
}
#search-btn{
width: 15%;
height: 40px;
background-color: #dbddbd;
border: 2px solid #f0f0f0;
padding:5px 0;
border-left: none;
}
#search-btn img{
height:100%;
}
.user-options{
height: 35px;
display: flex;
margin-left: auto;
align-items: center;
}
.user-options .icon{
height: 80%;
margin-right: 20px;
cursor: pointer;
}
.user-dp{
cursor: pointer;
height: 30px;
width: 30px;
border-radius: 50%;
overflow: hidden;
}
.user-dp img{
width: 100%;
height: 100%;
object-fit: cover;
}
#Vedio{
margin-top:500px;
height:100%;
}
iframe{
margin-top:20px;
}