-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
90 lines (84 loc) · 1.31 KB
/
style.css
File metadata and controls
90 lines (84 loc) · 1.31 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
*
{
margin: 0;
padding: 0;
}
body
{
background-color: black;
}
.dil
{
text-shadow: 0 0 10px red,0 0 20px red,0 0 40px red;
}
.fa
{
margin-right: 5px;
color: #fff;
}
#vdo
{
margin-right: 5px;
}
.add
{
background-color: white;
padding: 3px;
color: black;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
box-sizing: border-box;
}
.add-to-btn
{
border: solid 2px black;
margin-top: 100px;
background-color: #fff;
}
#yt
{
height: 230px;
width: 380px;
margin: 10px 10px;
padding: 20px;
box-sizing: border-box;
border-radius: 40px;
}
.vdobox
{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
background-color: #181818;
}
p
{
color: #fff;
font-family: Courier New;
font-size: 22px;
text-shadow: 0 0 10px #fff,0 0 20px #fff,0 0 30px #fff;
}
.intro {
background-color: #181818 ;
color: white;
border: solid silver 2px;
border-radius: 15px;
margin-top: 100px;
margin-bottom: 30px;
padding: 10px;
font-weight: bold;
transition: all 1.5s ease;
}
/* hover */
.intro:hover
{
letter-spacing: 3px;
background-color: #fff;
box-shadow: 0 3px 10px #fff,0 3px 15px #fff;
color: black;
boder: none;
}