-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
99 lines (79 loc) · 1.66 KB
/
styles.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
body {
margin: 0;
padding: 0;
font-family: 'Elnath', Arial, sans-serif;
background-color: #000000;
height: 90vh;
overflow: hidden;
}
header {
background-color: #00000000;
color: #00ff84;
text-align: center;
padding: 10px;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
height: 10vh;
box-shadow: 0px 0px 5000px #00ff84;
}
.logo {
width: 100px;
height: 100px;
margin-right: 40%;
}
header a {
color: #746e6e07;
text-decoration: none;
margin-left: 30%;
padding: 10px;
border-radius: 10px;
}
header a:hover {
background-color: #ffffff;
transition: .5s;
}
.video-container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.video-wrapper {
text-align: center;
}
.video-player {
position: relative;
border: 0px solid #000000;
border-radius: 10px;
overflow: none ;
transition: transform 0.3s;
margin-left: 20px;
margin-right: 20px;
}
.video-player:hover {
transform: scale(1.1);
}
video {
width: 600px;
height: 340px;
border-radius: 20px;
border: 10px solid #000000;
background-color: #000000;
}
video:hover{
transition: .5s;
border-radius: 20px ;
box-shadow: 0px 0px 100px #00ff84;
}
.video-title {
margin-top: 20px;
font-weight: bold;
font-size: 30px;
color: #ffffff;
}
.video-title:hover {
transform: scale(1.1);
transition: 0.3s;
}