-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (90 loc) · 3.34 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Josephine's Plex</title>
<link rel="apple-touch-icon" sizes="180x180" href="https://josephinesplex.com/images/favicon/plex-favicon-256x256.ico"/>
<link rel="icon" type="image/png" sizes="32x32" href="https://josephinesplex.com/images/favicon/plex-favicon-32x32.ico"/>
<link rel="icon" type="image/png" sizes="16x16" href="https://josephinesplex.com/images/favicon/plex-favicon.png/plex-favicon-16x16.ico"/>
<link href='https://fonts.googleapis.com/css?family=Playfair Display' rel='stylesheet'>
<link href="https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
<style>
body {
background-color: #E3E0E5; /* pale grayish-pink */
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.button-container {
text-align: center;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.button {
display: flex; /* Change display to flex */
flex-direction: column; /* Arrange children vertically */
align-items: center; /* Center children horizontally */
justify-content: center; /* Center children vertically */
width: 80%; /* Adjust button width for mobile */
height: 50%;
max-width: 350px; /* Set maximum width */
background-color: #EAE6EC;
margin: 10px;
border-radius: 10px;
padding: 20px 10px 20px 10px;
box-sizing: border-box;
transition: background-color 0.3s ease;
position: relative;
text-decoration: none; /* Remove default underline */
color: inherit; /* Inherit text color from parent */
text-align: center;
overflow: hidden;
}
@media (max-width: 768px) {
.button {
width: 80%; /* Adjust button width for mobile */
max-width: 250px; /* Set maximum width */
padding: 10px; /* Adjust padding for smaller buttons */
height: auto; /* Allow height to adjust based on content */
}
}
.button:hover {
background-color: #DEDBE0;
}
.button img {
max-width: 80%; /* Ensure images don't exceed button width */
max-height: 50%; /* Adjust height of the image for mobile */
margin-bottom: 10px;
}
.button .label {
font-family: "Playfair";
font-weight: 900;
font-size: 24px; /* Adjust font size for mobile */
margin-bottom: 5px; /* Reduce margin for smaller screens */
}
.button .small-text {
font-family: "Courier Prime";
font-size: 18px; /* Adjust font size for mobile */
}
</style>
</head>
<body>
<div class="button-container">
<a href="https://watch.josephinesplex.com:32400/web" class="button">
<img src="https://static-00.iconduck.com/assets.00/plex-icon-2048x2048-kdgfrhh9.png" alt="Plex">
<div class="label">Plex</div>
<div class="small-text">Watch Media</div>
</a>
<a href="http://request.josephinesplex.com:5055" class="button">
<img src="https://static-00.iconduck.com/assets.00/overseerr-icon-1024x1024-vs89p8jo.png" alt="Overseer">
<div class="label">Overseer</div>
<div class="small-text">Request Media</div>
</a>
</div>
</body>
</html>