-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
87 lines (68 loc) · 1.06 KB
/
style.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
/* #movie-backdrop {
width: 100%;
}
.container {
padding-top: 32px;
}
#actors {
margin: 24px 16px 0 0;
} */
@import url('https://fonts.googleapis.com/css2?family=League+Gothic&display=swap');
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
font-family: 'League Gothic', sans-serif;
}
.bar1,
.bar2,
.bar3 {
width: 1.6rem;
height: 4px;
background-color: #ffeb3b;
margin: 6px 0;
transition: 0.4s;
}
.change .bar1 {
transform: translate(0, 10px) rotate(-45deg);
}
.change .bar2 {
opacity: 0;
}
.change .bar3 {
transform: translate(0, -10px) rotate(45deg);
}
.footerWrap {
width:100%;
bottom: 0px;
}
.footer {
width:100%;
margin:auto;
display: flex;
}
.footer h4 {
width:100%;
text-align:center;
}
.imgfooter {
height: 100px;
width: 100px;
/* padding: 10px; */
filter: grayscale(100%);
border-radius: 20px
}
.imgfooter:hover{
filter: grayscale(10%);
}
.bg-gray{
background-color: #D3D3D3;
}
.bg-black{
background-color: #020202;
}
.txt-yellow{
color: #ffeb3b;
}