-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvideo_page.css
125 lines (105 loc) · 1.85 KB
/
video_page.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
/* Blocks */
.player {
min-height: calc(100vh - 70px);
display: flex;
flex-direction: column;
}
/* Elements */
.player__video {
display: grid;
width: 100%;
height: 30vw;
grid-template-columns: 1fr;
}
.player__stats {
display: flex;
flex-direction: column;
/* border: 1px solid red; */
padding: 0.75rem 1.5rem;
gap: 1.25rem;
font-size: 1rem;
}
.player__stats__sub__left,
.player__stats__ratings__left {
display: flex;
flex-direction: row;
align-items: center;
gap: 1.2rem;
}
.player__stats__sub,
.player__stats__ratings {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.player__description {
padding: 1.5rem;
/* border: 1px solid red; */
background-color: rgb(16, 16, 16);
font-size: 1.25rem;
text-align: justify;
}
.video__title {
font-size: 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.report__container {
width: auto;
display: inline;
}
.report__btn {
background-color: #f44336;
border: none;
color: white;
width: 30px;
height: 30px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
cursor: pointer;
border-radius: 4px;
display: flex;
justify-content: center;
align-items: center;
}
.report__btn:hover {
background-color: #d32f2f;
}
.user__name,
.video__views,
.ratings,
.rate,
.stars {
font-size: 1.3rem;
}
.user__name__link {
color: white;
}
.subscribe__btn {
padding: 0.25rem 1.25rem;
font-size: 1.2rem;
cursor: pointer;
}
.star i {
color: rgba(243, 211, 28, 0.966);
transition: color 0.3s ease;
font-size: 1.25rem;
}
.star:hover i {
color: rgba(243, 211, 28, 0.966);
cursor: pointer;
}
.star:hover~.star i {
color: rgba(243, 211, 28, 0.966);
}
.video__id__span {
display: none;
}
.previous__rating {
font-size: 1.2rem;
}
/* Modifiers */