-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
99 lines (98 loc) · 1.62 KB
/
style.css
File metadata and controls
99 lines (98 loc) · 1.62 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
/* AUTHOR : ABDUL WAHID NAAFI
INSTAGRAM : @IAM_NAAFI
INSTAGRAM : @WEB.IO */
@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');
body
{
background-color:#00A676;
}
.maincont
{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
}
.tofullpagecard
{
background-image:url('https://i.ytimg.com/an_webp/Z9VoDwy-3Lc/mqdefault_6s.webp?du=3000&sqp=CKjIv-oF&rs=AOn4CLD34QC3Qg_rW4NK-_ycM1QYAVsxsQ');
background-repeat: no-repeat;
background-size: 100% 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
margin: 20px;
height: 260px;
width: 250px;
border-radius: 10px;
color:white;
transition:box-shadow 0.5s,transform 0.8s,background-color 1s;
box-shadow: 0px 10px 25px #00000064;
}
.tofullpagecard:hover
{
cursor: pointer;
box-shadow:-79px 100px 74px -10px #00000064;
transform: rotate(15deg);
}
#vidtitle
{
font-family: 'Montserrat';
font-size: 2rem;
font-weight: bolder !important;
text-align: center;
}
#athr
{
font-family: 'Montserrat';
font-size: 1rem;
margin-top: 5px;
}
#playbutton i
{
font-size: 5rem;
color:white;
}
#emb
{
display: none;
box-shadow:-79px 100px 74px -10px #00000061;
}
iframe
{
animation-name: rot;
animation-duration: 1s;
height: 315px !important;
width: 560px !important;
}
#closebutton
{
color: white;
display: none;
}
#closebutton:hover
{
cursor: pointer;
}
@keyframes rot
{
0%
{
transform: rotate(15deg);
border-radius: 10px;
height: 260px;
width: 250px;
}
50%
{
border-radius: 10px;
}
100%
{
transform: rotate(0deg);
border-radius: 0px;
height: 315px;
width: 560px;
}
}