aboutsummaryrefslogtreecommitdiff
path: root/src/app/page.module.css
blob: 131bf0c6d725b3a71197c382af5d29a31afbd3db (plain) (blame)
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
.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;
	z-index: 999;
}

.left {
	color: white;
}

.left p {
	margin: 0;
	font-size: 1.5rem;
	padding: 1rem;
	color: transparent;
	background: linear-gradient(
		90deg,
		rgba(0, 151, 255, 0.9976365546218487) 3%,
		rgba(115, 154, 242, 1) 21%,
		rgba(255, 159, 224, 1) 40%,
		rgba(255, 194, 133, 1) 60%,
		rgba(245, 242, 81, 0.884) 80%,
		rgba(255, 179, 0, 0.842) 100%
	);
	background-size: 150% 50%;
	background-clip: text;
	animation: colorChange 3s linear infinite alternate-reverse;
}

@keyframes colorChange {
	0% {
		background-position: 0 50%;
	}
	100% {
		background-position: 100% 100%;
	}
}

.right a {
	text-decoration: none;
	color: white;
	margin: 0 0.4rem 0 0.5rem;
	transition: opacity 400ms ease;
	font-size: 1rem;
}

.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: 999;
}

.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: flex;
	align-items: center;
	justify-content: center;
}

.contentContainer a {
	text-decoration: none;
	color: white;
}

.manga,
.anime,
.kdrama,
.movies {
	background-color: #121212e0;
	color: white;
	border-radius: 0.5rem;
	transition: opacity 200ms ease, transform 200ms ease;
	padding: 0.4rem 2rem;
	margin: 0.2rem 0.2rem 0 0.2rem;
	border-color: rgb(80, 80, 80);
	border-style: groove;
	border-width: 0.1rem;
}

.content:hover > .contentContainer div {
	opacity: 0.5;
}

.content:hover > .contentContainer div:hover {
	opacity: 1;
	cursor: pointer;
	transform: scale(0.95) rotateX(12deg) rotateY(-8deg);
}

@media screen and (max-width: 1024px) {
	.contentContainer {
		display: block;
	}

	.content:hover > .contentContainer div {
		opacity: 0.5;
	}

	.content:hover > .contentContainer div:hover {
		opacity: 1;
		cursor: pointer;
		transform: scale(0.95);
	}
}