aboutsummaryrefslogtreecommitdiff
path: root/src/app/anime/styles/buttons.module.css
diff options
context:
space:
mode:
authorreal-zephex <[email protected]>2024-05-14 01:02:50 +0530
committerreal-zephex <[email protected]>2024-05-14 01:02:50 +0530
commitc0e1e1a5ab734d254392e8bfcc7ace0e0ff3b6fa (patch)
tree271228b9cf8ba5bd80a79145216c84ee1144457d /src/app/anime/styles/buttons.module.css
parentminor changes to the kdrama page (diff)
parentMerge pull request #27 from real-zephex/improvement-2 (diff)
downloaddramalama-c0e1e1a5ab734d254392e8bfcc7ace0e0ff3b6fa.tar.xz
dramalama-c0e1e1a5ab734d254392e8bfcc7ace0e0ff3b6fa.zip
Merge branch 'master' of https://github.com/real-zephex/Dramalama-Next
Diffstat (limited to 'src/app/anime/styles/buttons.module.css')
-rw-r--r--src/app/anime/styles/buttons.module.css98
1 files changed, 98 insertions, 0 deletions
diff --git a/src/app/anime/styles/buttons.module.css b/src/app/anime/styles/buttons.module.css
new file mode 100644
index 0000000..d0b8e78
--- /dev/null
+++ b/src/app/anime/styles/buttons.module.css
@@ -0,0 +1,98 @@
+.animeButtonContainer {
+ margin-top: 1rem;
+}
+
+.dramaButton {
+ background-color: #1f1f1fd2;
+ outline: none;
+ border: none;
+ color: white;
+ font-family: "Atkinson Hyperlegible", serif;
+ width: 50px;
+ padding: 0.5rem;
+ margin: 0 0.2rem 0.2rem 0;
+ border-radius: 0.5rem;
+ cursor: pointer;
+ transition: background-color 200ms ease, scale 200ms ease;
+}
+
+.dramaButton:hover {
+ background-color: #121212;
+ scale: 0.95;
+}
+
+.dramaButton:focus {
+ background-color: var(--soft-purple);
+ scale: 0.95;
+}
+
+.Main {
+ display: flex;
+ align-items: center;
+ flex-direction: column;
+ text-align: center;
+}
+
+.SelectClass {
+ text-align: center;
+ outline: none;
+ border: none;
+ padding: 0.4rem;
+ font-family: "Lexend Deca", serif;
+ background-color: #1f1f1fd2;
+ color: white;
+ border-radius: 0.5rem;
+}
+
+.SelectClass::-webkit-scrollbar {
+ width: 0;
+}
+
+/* Video Player */
+
+.videoPopUp {
+ height: 100dvh;
+ width: 100dvw;
+ background-color: #141414ee;
+ 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%;
+}
+
+@media screen and (max-width: 1024px) {
+
+ .dramaButton {
+ font-size: 14px;
+ }
+
+ .video {
+ width: 100%;
+ }
+} \ No newline at end of file