aboutsummaryrefslogtreecommitdiff
path: root/src/app/kdrama/styles/info.module.css
blob: 9da303458585ea4f005e851ea69ebabe26ea76b5 (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
146
.Main {
	max-width: 98%;
	margin: 80px auto;
}

.TitleContainer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.TitleContainer p {
	color: white;
	font-size: 34px;
	font-weight: 500;
	color: var(--neon-green);
}

.TitleContainer img {
	border-radius: 0.5rem;
}

.DramaDescription h2 {
	color: gray;
}

.DramaDescription p {
	color: white;
	margin-top: -10px;
	color: rgba(255, 255, 255, 0.637);
}

.DramaGenre {
	display: flex;
	align-items: center;
	overflow-x: auto;
	color: white;
	margin-top: 1rem;
}
.DramaGenre p {
	background-color: #1f1f1f;
	margin: 0rem 0rem 0rem 0.4rem;
	padding: 0.4rem;
	border-radius: 0.2rem;
}

.DramaGenre::-webkit-scrollbar {
	height: 5px;
}

.DramaGenre::-webkit-scrollbar-thumb {
	background-color: var(--soft-purple);
	border-radius: 1rem;
}

.genreMain {
	color: var(--neon-green);
	font-size: 18px;
}

.EpisodesContainer {
	margin-top: -10px;
}

.EpisodesContainer h2 {
	color: gray;
}

.EpisodeButtons {
	margin: -10px 5px;
}

.EpisodeButtons button {
	margin: 3px;
	padding: 5px;
	border: none;
	outline: none;
	border-radius: 5px;
	background-color: #3d3d3d;
	transition: background-color 0.2s linear;
	color: white;
	cursor: pointer;
	width: 100px;
}

.EpisodeButtons button p {
	text-align: center;
	font-family: "Lexend Deca", serif;
	margin: 0;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.EpisodeButtons button:hover {
	background-color: #1f1f1f;
	transition: background-color 0.2s linear;
}

.videoPopUp {
	height: 100dvh;
	width: 100dvw;
	background-color: #141414ea;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 1;
	overflow-y: auto;
}

.closeButton {
	font-family: "Lexend Deca", serif;
	font-size: 16px;
	background-color: var(--pastel-red);
	padding: 0.5rem 1.5rem;
	border: 0;
	outline: 0;
	border-radius: 0.5rem;
	cursor: pointer;
	margin: 5px;
}

.video {
	width: 60vw;
}

.VideoPlayer {
	width: 100%;
	height: auto;
}

@media screen and (max-width: 768px) {
	.video {
		width: 100%;
	}

	.EpisodeButtons button {
		font-size: 14px;
		width: 80px;
	}
}