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
|
.newbg {
background: rgb(37, 37, 37);
background: radial-gradient(circle, rgb(41, 41, 41) 2%, rgb(12, 12, 12) 30%);
}
.header {
position: fixed;
top: 0;
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
background-color: #121212;
font-family: "Lexend Deca", serif;
z-index: 2;
}
.left {
color: white;
font-size: 24px;
}
.left p {
margin: 0;
padding: 1rem;
}
.right a {
text-decoration: none;
color: white;
margin: 0 0.4rem 0 0.5rem;
transition: opacity 400ms ease;
font-size: 16px;
}
.header:hover>.right a {
opacity: 0.5;
}
.header:hover>.right a:hover {
opacity: 1;
cursor: pointer;
}
.footer {
bottom: 0;
width: 100%;
position: fixed;
background-color: #121212;
color: white;
font-family: "Poppins", serif;
z-index: 2;
}
.footer p {
text-align: center;
font-size: 14px;
margin: 0;
padding: 0.6rem;
font-family: "Poppins", serif;
}
.content {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.contentContainer {
display: block;
}
.contentContainer a {
text-decoration: none;
color: white;
}
.manga,
.anime,
.kdrama,
.netlify {
background-color: #121212e0;
color: white;
margin-top: 5px;
border-radius: 5px;
transition: opacity 400ms ease, transform 200ms ease;
padding: 0.4rem 2rem;
font-family: "Lexend Deca", serif;
}
.content:hover>.contentContainer div {
opacity: 0.5;
}
.content:hover>.contentContainer div:hover {
opacity: 1;
cursor: pointer;
transform: scale(0.96)
}
|