This commit is contained in:
142
install.html
142
install.html
@@ -1,27 +1,30 @@
|
|||||||
<!doctype html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="hu">
|
||||||
<head>
|
<head>
|
||||||
<!-- Required meta tags -->
|
<meta charset="UTF-8" />
|
||||||
<meta charset="utf-8">
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
<title>Safebox - INSTALLER TOOL</title>
|
||||||
<title>INSTALLER TOOL</title>
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Switzer:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap"/>
|
||||||
<!-- Bootstrap CSS -->
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"/>
|
||||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.2.1/dist/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
|
<link rel="stylesheet" href="style.css?t=1" />
|
||||||
<!-- Custom styles for this template -->
|
|
||||||
<link href="installer.css?t=3" rel="stylesheet">
|
|
||||||
</head>
|
</head>
|
||||||
<body id="installer" class="text-center">
|
<body id="installer">
|
||||||
<div class="container-fluid">
|
<div class="main" >
|
||||||
<div class="col-md-12">
|
<div id="myAppsContainer">
|
||||||
|
<div class="logo">
|
||||||
|
<img src="/img/logo.png" alt="Safebox"/>
|
||||||
|
<span>Safebox</span>
|
||||||
|
</div>
|
||||||
|
<h3 style="text-align:center">No any previous deployed environment has found</h3>
|
||||||
|
<div class="main-header">
|
||||||
|
<h1>Base settings</h1>
|
||||||
|
</div>
|
||||||
|
|
||||||
<form class="form-install" action="install.php" method="post">
|
<form class="form-install" action="install.php" method="post">
|
||||||
|
<!-- base settings -->
|
||||||
<h1>No any previous deployed environment found</h1>
|
<div class="input-row">
|
||||||
|
|
||||||
<fieldset>
|
|
||||||
<legend>Base settings</legend>
|
|
||||||
<div class="row">
|
|
||||||
<div class="mb-3">
|
|
||||||
<label for="user_auth">User auth (homeguard) enable?</label>
|
<label for="user_auth">User auth (homeguard) enable?</label>
|
||||||
|
<div class="input-container">
|
||||||
<select class="custom-select d-block w-100" name="USER_AUTH" id="user_auth">
|
<select class="custom-select d-block w-100" name="USER_AUTH" id="user_auth">
|
||||||
<option value="yes">Yes</option>
|
<option value="yes">Yes</option>
|
||||||
<option value="no" selected>No</option>
|
<option value="no" selected>No</option>
|
||||||
@@ -29,30 +32,30 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="div_user_auth" class="hidden">
|
<div id="div_user_auth" class="hidden">
|
||||||
<div class="row">
|
<div class="input-row">
|
||||||
<div class="mb-3">
|
|
||||||
<label for="auth_username">Username:</label>
|
<label for="auth_username">Username:</label>
|
||||||
|
<div class="input-container">
|
||||||
<input type="text" class="form-control" name="AUTH_USERNAME" id="auth_username" value="" maxlength="20" size="20">
|
<input type="text" class="form-control" name="AUTH_USERNAME" id="auth_username" value="" maxlength="20" size="20">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="input-row">
|
||||||
<div class="mb-3">
|
|
||||||
<label for="auth_password">Password:</label>
|
<label for="auth_password">Password:</label>
|
||||||
|
<div class="input-container">
|
||||||
<input type="text" class="form-control" name="AUTH_PASSWORD" id="auth_password" value="" maxlength="20" size="20">
|
<input type="text" class="form-control" name="AUTH_PASSWORD" id="auth_password" value="" maxlength="20" size="20">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="input-row">
|
||||||
<div class="mb-3">
|
|
||||||
<label for="auth_role">Role:</label>
|
<label for="auth_role">Role:</label>
|
||||||
|
<div class="input-container">
|
||||||
<select class="custom-select d-block w-100" name="AUTH_ROLE" id="auth_role">
|
<select class="custom-select d-block w-100" name="AUTH_ROLE" id="auth_role">
|
||||||
<option value="admin">Admin</option>
|
<option value="admin">Admin</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="input-row">
|
||||||
<div class="mb-3">
|
|
||||||
<label for="vpn">Proxy enable?</label>
|
<label for="vpn">Proxy enable?</label>
|
||||||
|
<div class="input-container">
|
||||||
<select class="custom-select d-block w-100" name="VPN_PROXY" id="vpn">
|
<select class="custom-select d-block w-100" name="VPN_PROXY" id="vpn">
|
||||||
<option value="yes">Yes</option>
|
<option value="yes">Yes</option>
|
||||||
<option value="no" selected>No</option>
|
<option value="no" selected>No</option>
|
||||||
@@ -60,63 +63,57 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="div_vpn" class="hidden">
|
<div id="div_vpn" class="hidden">
|
||||||
<div class="row">
|
<div class="input-row">
|
||||||
<div class="mb-3">
|
<label for="vpn_domain">Please add domain url to download the VPN hash from:</label>
|
||||||
<label for="vpn_domain">Please add domain url to download the VPN hash from (default: https://portal.safebox.network):</label>
|
<div class="input-container">
|
||||||
<input type="text" class="form-control" name="VPN_DOMAIN" id="vpn_domain" value="https://portal.safebox.network">
|
<input type="text" class="form-control" name="VPN_DOMAIN" id="vpn_domain" value="https://portal.safebox.network" placeholder="https://portal.safebox.network" size="40">
|
||||||
<div class="invalid-feedback">
|
|
||||||
Please enter a valid domain.
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<div class="input-row">
|
||||||
<div class="row">
|
|
||||||
<div class="mb-3">
|
|
||||||
<label for="vpn_pass">Please type in the generated VPN passkey (8 digits):</label>
|
<label for="vpn_pass">Please type in the generated VPN passkey (8 digits):</label>
|
||||||
|
<div class="input-container">
|
||||||
<input type="text" class="form-control" name="VPN_PASS" id="vpn_pass" value="" maxlength="8" size="10">
|
<input type="text" class="form-control" name="VPN_PASS" id="vpn_pass" value="" maxlength="8" size="10">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="input-row">
|
||||||
<div class="mb-3">
|
|
||||||
<label for="letsencrypt_mail">Please add the letsencrypt mail address:</label>
|
<label for="letsencrypt_mail">Please add the letsencrypt mail address:</label>
|
||||||
|
<div class="input-container">
|
||||||
<input type="email" class="form-control" name="LETSENCRYPT_MAIL" id="letsencrypt_mail" value="">
|
<input type="email" class="form-control" name="LETSENCRYPT_MAIL" id="letsencrypt_mail" value="">
|
||||||
<div class="invalid-feedback">
|
|
||||||
Please enter a valid email.
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<div class="input-row">
|
||||||
<div class="row">
|
|
||||||
<div class="mb-3">
|
|
||||||
<label for="letsencrypt_servername">Please add letsencrypt server name (default is letsencrypt but you can add zerossl too):</label>
|
<label for="letsencrypt_servername">Please add letsencrypt server name (default is letsencrypt but you can add zerossl too):</label>
|
||||||
<input type="text" class="form-control" name="LETSENCRYPT_SERVERNAME" id="letsencrypt_servername" value="letsencrypt">
|
<div class="input-container">
|
||||||
|
<input type="text" class="form-control" name="LETSENCRYPT_SERVERNAME" id="letsencrypt_servername" value="letsencrypt" placeholder="letsencrypt">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="input-row">
|
||||||
<div class="mb-3">
|
|
||||||
<label for="diagnostic">Diagnostic mode enable?</label>
|
<label for="diagnostic">Diagnostic mode enable?</label>
|
||||||
|
<div class="input-container">
|
||||||
<select class="custom-select d-block w-100" name="DIAGNOSTIC" id="diagnostic">
|
<select class="custom-select d-block w-100" name="DIAGNOSTIC" id="diagnostic">
|
||||||
<option value="yes">Yes</option>
|
<option value="yes">Yes</option>
|
||||||
<option value="no" selected>No</option>
|
<option value="no" selected>No</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</fieldset>
|
<!-- base settings end -->
|
||||||
|
<br>
|
||||||
<fieldset>
|
<br>
|
||||||
<legend><a href="javascript:void()" id="advanced">Advanced settings</a></legend>
|
<div class="main-header">
|
||||||
|
<h1 id="advanced" style="cursor:pointer">Advanced settings</h1>
|
||||||
|
</div>
|
||||||
|
<!-- advanced settings -->
|
||||||
<div id="advanced_div" style="display:none">
|
<div id="advanced_div" style="display:none">
|
||||||
<div class="row">
|
<div class="input-row">
|
||||||
<div class="mb-3">
|
|
||||||
<label for="registry">Please fill in the docker registry name (default:safebox):</label>
|
<label for="registry">Please fill in the docker registry name (default:safebox):</label>
|
||||||
<input type="registry" class="form-control" name="DOCKER_REGISTRY_URL" id="registry" value="safebox" required>
|
<div class="input-container">
|
||||||
<div class="invalid-feedback">
|
<input type="registry" class="form-control" name="DOCKER_REGISTRY_URL" id="registry" value="safebox" placeholder="safebox" required>
|
||||||
Please enter a valid registry url.
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<div class="input-row">
|
||||||
<div class="row">
|
|
||||||
<div class="mb-3">
|
|
||||||
<label for="smarthost">Smarthost proxy?</label>
|
<label for="smarthost">Smarthost proxy?</label>
|
||||||
|
<div class="input-container">
|
||||||
<select class="custom-select d-block w-100" name="SMARTHOST_PROXY" id="smarthost">
|
<select class="custom-select d-block w-100" name="SMARTHOST_PROXY" id="smarthost">
|
||||||
<option value="yes" selected>Yes</option>
|
<option value="yes" selected>Yes</option>
|
||||||
<option value="no">No</option>
|
<option value="no">No</option>
|
||||||
@@ -124,18 +121,15 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="div_smarthost">
|
<div id="div_smarthost">
|
||||||
<div class="row">
|
<div class="input-row">
|
||||||
<div class="mb-3">
|
|
||||||
<label for="domain">Please fill in the domain name</label>
|
<label for="domain">Please fill in the domain name</label>
|
||||||
|
<div class="input-container">
|
||||||
<input type="domain" class="form-control" name="DOMAIN" id="domain" value="localhost">
|
<input type="domain" class="form-control" name="DOMAIN" id="domain" value="localhost">
|
||||||
<div class="invalid-feedback">
|
|
||||||
Please enter a valid domain.
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<div class="input-row">
|
||||||
<div class="row">
|
|
||||||
<div class="mb-3">
|
|
||||||
<label for="local_backend">Would you like to run local backend?</label>
|
<label for="local_backend">Would you like to run local backend?</label>
|
||||||
|
<div class="input-container">
|
||||||
<select class="custom-select d-block w-100" name="LOCAL_BACKEND" id="local_backend">
|
<select class="custom-select d-block w-100" name="LOCAL_BACKEND" id="local_backend">
|
||||||
<option value="yes">Yes</option>
|
<option value="yes">Yes</option>
|
||||||
<option value="no" selected>No</option>
|
<option value="no" selected>No</option>
|
||||||
@@ -143,18 +137,18 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="input-row">
|
||||||
<div class="mb-3">
|
|
||||||
<label for="localproxy">Local proxy?</label>
|
<label for="localproxy">Local proxy?</label>
|
||||||
|
<div class="input-container">
|
||||||
<select class="custom-select d-block w-100" name="LOCAL_PROXY" id="localproxy">
|
<select class="custom-select d-block w-100" name="LOCAL_PROXY" id="localproxy">
|
||||||
<option value="yes" selected>Yes</option>
|
<option value="yes" selected>Yes</option>
|
||||||
<option value="no">No</option>
|
<option value="no">No</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="input-row">
|
||||||
<div class="mb-3">
|
|
||||||
<label for="cron">Cron?</label>
|
<label for="cron">Cron?</label>
|
||||||
|
<div class="input-container">
|
||||||
<select class="custom-select d-block w-100" name="CRON" id="cron">
|
<select class="custom-select d-block w-100" name="CRON" id="cron">
|
||||||
<option value="yes">Yes</option>
|
<option value="yes">Yes</option>
|
||||||
<option value="no">No</option>
|
<option value="no">No</option>
|
||||||
@@ -162,14 +156,12 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</fieldset>
|
<!-- advanced settings end -->
|
||||||
<br>
|
<button class="save-button" type="submit">Start install</button>
|
||||||
<button class="btn btn-lg btn-primary btn-block" type="submit">Start install</button>
|
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<br>
|
|
||||||
<br>
|
|
||||||
<!-- Optional JavaScript -->
|
<!-- Optional JavaScript -->
|
||||||
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
|
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
|
||||||
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
||||||
|
657
manage.html
657
manage.html
@@ -4,662 +4,9 @@
|
|||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
<title>Safebox</title>
|
<title>Safebox</title>
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Switzer:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap" rel="stylesheet" />
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Switzer:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap"/>
|
||||||
<style>
|
|
||||||
:root {
|
|
||||||
--highlight-color: #F9DB54;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
margin: 0;
|
|
||||||
font-family: 'Switzer', sans-serif;
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 16px;
|
|
||||||
background-color: #000;
|
|
||||||
color: white;
|
|
||||||
display: flex;
|
|
||||||
height: 100vh;
|
|
||||||
}
|
|
||||||
|
|
||||||
h4 {
|
|
||||||
font-size: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
table {border: 1px solid var(--highlight-color); width:100%;}
|
|
||||||
table th {padding-left: 20px; text-align: left; color: var(--highlight-color); width: 25%;}
|
|
||||||
table td {padding-left: 20px; text-align:left; width: 25%;}
|
|
||||||
|
|
||||||
.sidebar {
|
|
||||||
width: 250px;
|
|
||||||
background-color: #101214;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
justify-content: space-between;
|
|
||||||
padding: 20px 0;
|
|
||||||
margin: 20px;
|
|
||||||
border-radius: 20px;
|
|
||||||
transition: width 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.logo {
|
|
||||||
text-align: center;
|
|
||||||
margin-bottom: 40px;
|
|
||||||
font-size: 24px;
|
|
||||||
font-weight: bold;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
gap: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.logo img {
|
|
||||||
height: 30px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.menu {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
gap: 5px;
|
|
||||||
padding: 0 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.vpn-item {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
gap: 10px;
|
|
||||||
padding: 10px 20px;
|
|
||||||
cursor: pointer;
|
|
||||||
color: white;
|
|
||||||
transition: color 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.menu-item {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
gap: 10px;
|
|
||||||
padding: 10px 20px;
|
|
||||||
cursor: pointer;
|
|
||||||
color: white;
|
|
||||||
transition: color 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.menu-item:hover {
|
|
||||||
color: var(--highlight-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
.menu-item i {
|
|
||||||
font-size: 18px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.menu-item span {
|
|
||||||
display: inline;
|
|
||||||
}
|
|
||||||
|
|
||||||
.menu-item img {
|
|
||||||
width: 24px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.menu-item.active {
|
|
||||||
background-color: var(--highlight-color);
|
|
||||||
color: black;
|
|
||||||
border-radius: 10px;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
.menu-item.active:hover {
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
.menu-item span.arrow {
|
|
||||||
margin-left: auto;
|
|
||||||
color: gray;
|
|
||||||
font-size: 20px;
|
|
||||||
transition: transform 0.3s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
.menu-item.open .arrow {
|
|
||||||
transform: rotate(180deg);
|
|
||||||
}
|
|
||||||
|
|
||||||
.submenu {
|
|
||||||
display: none;
|
|
||||||
margin-left: 40px;
|
|
||||||
flex-direction: column;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.submenu-item {
|
|
||||||
padding: 5px 14px;
|
|
||||||
font-size: 14px;
|
|
||||||
color: #ffffff;
|
|
||||||
cursor: pointer;
|
|
||||||
border-radius: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.submenu-item:hover {
|
|
||||||
color: #000000;
|
|
||||||
background-color: var(--highlight-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* Switch container */
|
|
||||||
.switch {
|
|
||||||
position: relative;
|
|
||||||
display: inline-block;
|
|
||||||
width: 60px;
|
|
||||||
height: 26px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Hide native checkbox */
|
|
||||||
.switch input {
|
|
||||||
opacity: 0;
|
|
||||||
width: 0;
|
|
||||||
height: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Slider background */
|
|
||||||
.slider-text {
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
background-color: #ccc;
|
|
||||||
border-radius: 26px;
|
|
||||||
transition: background-color 0.3s;
|
|
||||||
display: flex !important;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: flex-end; /* default: OFF on the right */
|
|
||||||
padding: 0 8px;
|
|
||||||
font-size: 12px;
|
|
||||||
font-weight: bold;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Circle */
|
|
||||||
.slider-text::before {
|
|
||||||
content: "";
|
|
||||||
position: absolute;
|
|
||||||
height: 22px;
|
|
||||||
width: 22px;
|
|
||||||
left: 2px;
|
|
||||||
top: 2px;
|
|
||||||
background-color: white;
|
|
||||||
border-radius: 50%;
|
|
||||||
transition: transform 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Checked: move dot, change background and text alignment */
|
|
||||||
.switch input:checked + .slider-text {
|
|
||||||
background-color: #4CAF50;
|
|
||||||
justify-content: flex-start;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Dot animation */
|
|
||||||
.switch input:checked + .slider-text::before {
|
|
||||||
transform: translateX(34px);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* Status label */
|
|
||||||
.status-label {
|
|
||||||
font-size: 12px;
|
|
||||||
color: #888;
|
|
||||||
min-width: 28px;
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.details {
|
|
||||||
color: white;
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.yellow-row {
|
|
||||||
max-width:250px;
|
|
||||||
display: flex;
|
|
||||||
align-items: flex-start;
|
|
||||||
box-sizing: border-box;
|
|
||||||
margin: 0px;
|
|
||||||
width: 100%;
|
|
||||||
padding: 0 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.yellow-box {
|
|
||||||
background-color: var(--highlight-color);
|
|
||||||
color: black;
|
|
||||||
text-align: left;
|
|
||||||
margin: 0px;
|
|
||||||
padding: 10px 18px;
|
|
||||||
border-radius: 20px 20px 0px 20px;
|
|
||||||
font-weight: bold;
|
|
||||||
font-size: 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.yellow-corner {
|
|
||||||
padding:0px;
|
|
||||||
border: 0px;
|
|
||||||
display: flex;
|
|
||||||
margin: 0px;
|
|
||||||
margin-top: auto;
|
|
||||||
align-items: flex-end;
|
|
||||||
}
|
|
||||||
|
|
||||||
.main {
|
|
||||||
flex: 1;
|
|
||||||
padding: 30px;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
overflow-y: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
#appsContainer {
|
|
||||||
display: flex;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
gap: 16px;
|
|
||||||
padding: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.app {
|
|
||||||
border: 1px solid #41464f;
|
|
||||||
border-radius: 15px;
|
|
||||||
text-align: left;
|
|
||||||
padding: 20px;
|
|
||||||
width: 130px;
|
|
||||||
min-height: 200px;
|
|
||||||
text-align: left;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.app-img {
|
|
||||||
padding: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.app img {
|
|
||||||
border-radius: 15px;
|
|
||||||
background-color: #101214;
|
|
||||||
width: 70px;
|
|
||||||
height: 70px;
|
|
||||||
object-fit: contain;
|
|
||||||
margin-bottom: 20px;
|
|
||||||
padding: 30px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.app-label {
|
|
||||||
font-size: 10px;
|
|
||||||
color: #cccccc;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
align-items: left;
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.app-name {
|
|
||||||
font-size: 16px;
|
|
||||||
font-weight: bold;
|
|
||||||
margin-bottom: 30px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.more-btn {
|
|
||||||
background-color: inherit;
|
|
||||||
color: #cccccc;
|
|
||||||
border: 1px solid #cccccc;
|
|
||||||
border-radius: 15px;
|
|
||||||
padding: 18px;
|
|
||||||
font-size: 16px;
|
|
||||||
font-weight: 400;
|
|
||||||
cursor: pointer;
|
|
||||||
width: 100%;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
.more-btn:hover {
|
|
||||||
color: var(--highlight-color);
|
|
||||||
border: 1px solid var(--highlight-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
.app-details {
|
|
||||||
padding: 0px 50px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.app-fields {
|
|
||||||
border: 1px solid #41464f;
|
|
||||||
border-radius: 15px;
|
|
||||||
text-align: left;
|
|
||||||
padding: 20px;
|
|
||||||
margin: 30px 0px 10px 0px;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.app-fields .row {
|
|
||||||
display: block;
|
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
|
||||||
padding: 5px 20px;
|
|
||||||
border-radius: 10px;
|
|
||||||
gap: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#letsencrypt {
|
|
||||||
padding-top: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header-block {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
align-items: flex-start;
|
|
||||||
padding: 20px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.logo-and-text {
|
|
||||||
display: flex;
|
|
||||||
align-items: flex-start;
|
|
||||||
gap: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.applogo img {
|
|
||||||
border-radius: 15px;
|
|
||||||
background-color: #101214;
|
|
||||||
width: 70px;
|
|
||||||
height: 70px;
|
|
||||||
object-fit: contain;
|
|
||||||
padding: 40px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-content {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.title {
|
|
||||||
font-size: 28px;
|
|
||||||
font-weight: bold;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.subtitle {
|
|
||||||
font-size: 18px;
|
|
||||||
margin: 4px 0;
|
|
||||||
color: #999;
|
|
||||||
}
|
|
||||||
|
|
||||||
.description {
|
|
||||||
font-size: 16px;
|
|
||||||
margin: 20px 0 0;
|
|
||||||
color: #999;
|
|
||||||
line-height: 1.5;
|
|
||||||
}
|
|
||||||
|
|
||||||
.notification-btn {
|
|
||||||
background-color: var(--highlight-color);
|
|
||||||
color: black;
|
|
||||||
border: none;
|
|
||||||
padding: 10px 20px;
|
|
||||||
border-radius: 10px;
|
|
||||||
cursor: pointer;
|
|
||||||
font-weight: bold;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
gap: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.main-header {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
|
||||||
margin-bottom: 30px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.main-header h1 {
|
|
||||||
margin: 0;
|
|
||||||
font-size: 28px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.main-header button {
|
|
||||||
background-color: var(--highlight-color);
|
|
||||||
color: black;
|
|
||||||
border: none;
|
|
||||||
padding: 10px 20px;
|
|
||||||
border-radius: 10px;
|
|
||||||
cursor: pointer;
|
|
||||||
font-weight: bold;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
gap: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.input-row, .input-group {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
|
||||||
border: 1px solid #41464f;
|
|
||||||
padding: 15px 20px;
|
|
||||||
margin-bottom: 15px;
|
|
||||||
border-radius: 10px;
|
|
||||||
gap: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.input-container {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
gap: 5px;
|
|
||||||
flex: 1;
|
|
||||||
justify-content: flex-end;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.input-row input,
|
|
||||||
.input-row select,
|
|
||||||
.row input,
|
|
||||||
.row select {
|
|
||||||
background: transparent;
|
|
||||||
border: 1px solid #41464f;
|
|
||||||
padding: 8px 30px 8px 8px;
|
|
||||||
border-radius: 10px;
|
|
||||||
color: white;
|
|
||||||
transition: color 0.2s;
|
|
||||||
max-width: 40%;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
.row input,
|
|
||||||
.row select {
|
|
||||||
padding: 12px 30px 12px 12px;
|
|
||||||
font-size: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.input-row input:focus,
|
|
||||||
.input-row select:focus,
|
|
||||||
.row input,
|
|
||||||
.row select {
|
|
||||||
outline: none;
|
|
||||||
background-color: black;
|
|
||||||
color: var(--highlight-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
.input-row select,
|
|
||||||
.row select {
|
|
||||||
appearance: none;
|
|
||||||
-webkit-appearance: none;
|
|
||||||
-moz-appearance: none;
|
|
||||||
background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5-5 5 5zM7 14l5 5 5-5z"/></svg>');
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
background-position: right 8px center;
|
|
||||||
background-size: 16px;
|
|
||||||
padding-right: 32px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.info-container {
|
|
||||||
position: relative;
|
|
||||||
left: -18px;
|
|
||||||
top: -22px;
|
|
||||||
display: inline-block;
|
|
||||||
font-family: Arial, sans-serif;
|
|
||||||
margin: 0px;
|
|
||||||
width: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.info-icon {
|
|
||||||
background-color: var(--highlight-color);
|
|
||||||
color: black;
|
|
||||||
border-radius: 50%;
|
|
||||||
padding: 1px 4px;
|
|
||||||
cursor: pointer;
|
|
||||||
font-weight: bold;
|
|
||||||
font-size: 10px;
|
|
||||||
text-align: center;
|
|
||||||
line-height: 1;
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tooltip {
|
|
||||||
visibility: hidden;
|
|
||||||
background-color: #333;
|
|
||||||
border-radius: 5px;
|
|
||||||
padding: 4px 8px;
|
|
||||||
position: absolute;
|
|
||||||
z-index: 1;
|
|
||||||
bottom: 100%; /* above the icon */
|
|
||||||
left: 50%;
|
|
||||||
transform: translateX(-78%);
|
|
||||||
opacity: 0;
|
|
||||||
transition: opacity 0.3s;
|
|
||||||
/*white-space: nowrap;*/
|
|
||||||
text-align: right;
|
|
||||||
width: 300px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tooltip::after {
|
|
||||||
content: "";
|
|
||||||
position: absolute;
|
|
||||||
top: 100%; /* bottom of tooltip */
|
|
||||||
left: 80%;
|
|
||||||
margin-left: -5px;
|
|
||||||
border-width: 5px;
|
|
||||||
border-style: solid;
|
|
||||||
border-color: #333 transparent transparent transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
.info-container:hover .tooltip {
|
|
||||||
visibility: visible;
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.clear-btn {
|
|
||||||
position: absolute;
|
|
||||||
right: 8px;
|
|
||||||
background: transparent;
|
|
||||||
border: none;
|
|
||||||
color: white;
|
|
||||||
cursor: pointer;
|
|
||||||
font-size: 16px;
|
|
||||||
padding: 0;
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
line-height: 20px;
|
|
||||||
text-align: center;
|
|
||||||
user-select: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.save-button {
|
|
||||||
background-color: var(--highlight-color);
|
|
||||||
color: black;
|
|
||||||
border: none;
|
|
||||||
padding: 15px 30px;
|
|
||||||
font-size: 16px;
|
|
||||||
border-radius: 10px;
|
|
||||||
font-weight: bold;
|
|
||||||
cursor: pointer;
|
|
||||||
margin-top: 30px;
|
|
||||||
align-self: flex-start;
|
|
||||||
}
|
|
||||||
|
|
||||||
.save-button:hover {
|
|
||||||
background-color: #f5c300;
|
|
||||||
}
|
|
||||||
|
|
||||||
.buttons .btn {
|
|
||||||
background-color: black;
|
|
||||||
border: 1px solid #999;
|
|
||||||
color: #999;
|
|
||||||
padding: 10px 15px;
|
|
||||||
font-size: 14px;
|
|
||||||
border-radius: 5px;
|
|
||||||
font-weight: bold;
|
|
||||||
cursor: pointer;
|
|
||||||
margin-top: 10px;
|
|
||||||
align-self: flex-start;
|
|
||||||
}
|
|
||||||
|
|
||||||
.buttons .btn:hover {
|
|
||||||
border: 1px solid #f5c300;
|
|
||||||
color: #f5c300;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hidden {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.popup {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.popup-content {
|
|
||||||
width: 100%;
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
#popup .row {
|
|
||||||
display: flex;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 768px) {
|
|
||||||
.sidebar {
|
|
||||||
width: 80px;
|
|
||||||
padding: 20px 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.logo {
|
|
||||||
font-size: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.logo span {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.menu-item {
|
|
||||||
justify-content: center;
|
|
||||||
gap: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.menu-item span {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.yellow-box {
|
|
||||||
font-size: 0;
|
|
||||||
padding: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.input-row {
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: flex-start;
|
|
||||||
}
|
|
||||||
|
|
||||||
.input-container {
|
|
||||||
width: 100%;
|
|
||||||
justify-content: flex-start;
|
|
||||||
}
|
|
||||||
|
|
||||||
.input-row input,
|
|
||||||
.input-row select {
|
|
||||||
max-width: 100%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"/>
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"/>
|
||||||
|
<link rel="stylesheet" href="style.css?t=1" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="sidebar">
|
<div class="sidebar">
|
||||||
|
653
style.css
Normal file
653
style.css
Normal file
@@ -0,0 +1,653 @@
|
|||||||
|
:root {
|
||||||
|
--highlight-color: #F9DB54;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
font-family: 'Switzer', sans-serif;
|
||||||
|
font-weight: 500;
|
||||||
|
font-size: 16px;
|
||||||
|
background-color: #000;
|
||||||
|
color: white;
|
||||||
|
display: flex;
|
||||||
|
height: 100vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
h4 {
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
table {border: 1px solid var(--highlight-color); width:100%;}
|
||||||
|
table th {padding-left: 20px; text-align: left; color: var(--highlight-color); width: 25%;}
|
||||||
|
table td {padding-left: 20px; text-align:left; width: 25%;}
|
||||||
|
|
||||||
|
.sidebar {
|
||||||
|
width: 250px;
|
||||||
|
background-color: #101214;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: space-between;
|
||||||
|
padding: 20px 0;
|
||||||
|
margin: 20px;
|
||||||
|
border-radius: 20px;
|
||||||
|
transition: width 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo {
|
||||||
|
text-align: center;
|
||||||
|
margin-bottom: 40px;
|
||||||
|
font-size: 24px;
|
||||||
|
font-weight: bold;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
gap: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo img {
|
||||||
|
height: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 5px;
|
||||||
|
padding: 0 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vpn-item {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 10px;
|
||||||
|
padding: 10px 20px;
|
||||||
|
cursor: pointer;
|
||||||
|
color: white;
|
||||||
|
transition: color 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu-item {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 10px;
|
||||||
|
padding: 10px 20px;
|
||||||
|
cursor: pointer;
|
||||||
|
color: white;
|
||||||
|
transition: color 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu-item:hover {
|
||||||
|
color: var(--highlight-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu-item i {
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu-item span {
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu-item img {
|
||||||
|
width: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu-item.active {
|
||||||
|
background-color: var(--highlight-color);
|
||||||
|
color: black;
|
||||||
|
border-radius: 10px;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu-item.active:hover {
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu-item span.arrow {
|
||||||
|
margin-left: auto;
|
||||||
|
color: gray;
|
||||||
|
font-size: 20px;
|
||||||
|
transition: transform 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu-item.open .arrow {
|
||||||
|
transform: rotate(180deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.submenu {
|
||||||
|
display: none;
|
||||||
|
margin-left: 40px;
|
||||||
|
flex-direction: column;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.submenu-item {
|
||||||
|
padding: 5px 14px;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #ffffff;
|
||||||
|
cursor: pointer;
|
||||||
|
border-radius: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.submenu-item:hover {
|
||||||
|
color: #000000;
|
||||||
|
background-color: var(--highlight-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Switch container */
|
||||||
|
.switch {
|
||||||
|
position: relative;
|
||||||
|
display: inline-block;
|
||||||
|
width: 60px;
|
||||||
|
height: 26px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Hide native checkbox */
|
||||||
|
.switch input {
|
||||||
|
opacity: 0;
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Slider background */
|
||||||
|
.slider-text {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
background-color: #ccc;
|
||||||
|
border-radius: 26px;
|
||||||
|
transition: background-color 0.3s;
|
||||||
|
display: flex !important;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: flex-end; /* default: OFF on the right */
|
||||||
|
padding: 0 8px;
|
||||||
|
font-size: 12px;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Circle */
|
||||||
|
.slider-text::before {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
height: 22px;
|
||||||
|
width: 22px;
|
||||||
|
left: 2px;
|
||||||
|
top: 2px;
|
||||||
|
background-color: white;
|
||||||
|
border-radius: 50%;
|
||||||
|
transition: transform 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Checked: move dot, change background and text alignment */
|
||||||
|
.switch input:checked + .slider-text {
|
||||||
|
background-color: #4CAF50;
|
||||||
|
justify-content: flex-start;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Dot animation */
|
||||||
|
.switch input:checked + .slider-text::before {
|
||||||
|
transform: translateX(34px);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Status label */
|
||||||
|
.status-label {
|
||||||
|
font-size: 12px;
|
||||||
|
color: #888;
|
||||||
|
min-width: 28px;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.details {
|
||||||
|
color: white;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.yellow-row {
|
||||||
|
max-width:250px;
|
||||||
|
display: flex;
|
||||||
|
align-items: flex-start;
|
||||||
|
box-sizing: border-box;
|
||||||
|
margin: 0px;
|
||||||
|
width: 100%;
|
||||||
|
padding: 0 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.yellow-box {
|
||||||
|
background-color: var(--highlight-color);
|
||||||
|
color: black;
|
||||||
|
text-align: left;
|
||||||
|
margin: 0px;
|
||||||
|
padding: 10px 18px;
|
||||||
|
border-radius: 20px 20px 0px 20px;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.yellow-corner {
|
||||||
|
padding:0px;
|
||||||
|
border: 0px;
|
||||||
|
display: flex;
|
||||||
|
margin: 0px;
|
||||||
|
margin-top: auto;
|
||||||
|
align-items: flex-end;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main {
|
||||||
|
flex: 1;
|
||||||
|
padding: 30px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
#appsContainer {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
gap: 16px;
|
||||||
|
padding: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.app {
|
||||||
|
border: 1px solid #41464f;
|
||||||
|
border-radius: 15px;
|
||||||
|
text-align: left;
|
||||||
|
padding: 20px;
|
||||||
|
width: 130px;
|
||||||
|
min-height: 200px;
|
||||||
|
text-align: left;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.app-img {
|
||||||
|
padding: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.app img {
|
||||||
|
border-radius: 15px;
|
||||||
|
background-color: #101214;
|
||||||
|
width: 70px;
|
||||||
|
height: 70px;
|
||||||
|
object-fit: contain;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
padding: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.app-label {
|
||||||
|
font-size: 10px;
|
||||||
|
color: #cccccc;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
align-items: left;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.app-name {
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: bold;
|
||||||
|
margin-bottom: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.more-btn {
|
||||||
|
background-color: inherit;
|
||||||
|
color: #cccccc;
|
||||||
|
border: 1px solid #cccccc;
|
||||||
|
border-radius: 15px;
|
||||||
|
padding: 18px;
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: 400;
|
||||||
|
cursor: pointer;
|
||||||
|
width: 100%;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.more-btn:hover {
|
||||||
|
color: var(--highlight-color);
|
||||||
|
border: 1px solid var(--highlight-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.app-details {
|
||||||
|
padding: 0px 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.app-fields {
|
||||||
|
border: 1px solid #41464f;
|
||||||
|
border-radius: 15px;
|
||||||
|
text-align: left;
|
||||||
|
padding: 20px;
|
||||||
|
margin: 30px 0px 10px 0px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.app-fields .row {
|
||||||
|
display: block;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
padding: 5px 20px;
|
||||||
|
border-radius: 10px;
|
||||||
|
gap: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#letsencrypt {
|
||||||
|
padding-top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-block {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: flex-start;
|
||||||
|
padding: 20px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo-and-text {
|
||||||
|
display: flex;
|
||||||
|
align-items: flex-start;
|
||||||
|
gap: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.applogo img {
|
||||||
|
border-radius: 15px;
|
||||||
|
background-color: #101214;
|
||||||
|
width: 70px;
|
||||||
|
height: 70px;
|
||||||
|
object-fit: contain;
|
||||||
|
padding: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-content {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
font-size: 28px;
|
||||||
|
font-weight: bold;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.subtitle {
|
||||||
|
font-size: 18px;
|
||||||
|
margin: 4px 0;
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
|
||||||
|
.description {
|
||||||
|
font-size: 16px;
|
||||||
|
margin: 20px 0 0;
|
||||||
|
color: #999;
|
||||||
|
line-height: 1.5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.notification-btn {
|
||||||
|
background-color: var(--highlight-color);
|
||||||
|
color: black;
|
||||||
|
border: none;
|
||||||
|
padding: 10px 20px;
|
||||||
|
border-radius: 10px;
|
||||||
|
cursor: pointer;
|
||||||
|
font-weight: bold;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-header {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
margin-bottom: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-header h1 {
|
||||||
|
margin: 0;
|
||||||
|
font-size: 28px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-header button {
|
||||||
|
background-color: var(--highlight-color);
|
||||||
|
color: black;
|
||||||
|
border: none;
|
||||||
|
padding: 10px 20px;
|
||||||
|
border-radius: 10px;
|
||||||
|
cursor: pointer;
|
||||||
|
font-weight: bold;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.input-row, .input-group {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
border: 1px solid #41464f;
|
||||||
|
padding: 15px 20px;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
border-radius: 10px;
|
||||||
|
gap: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.input-container {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 5px;
|
||||||
|
flex: 1;
|
||||||
|
justify-content: flex-end;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.input-row input,
|
||||||
|
.input-row select,
|
||||||
|
.row input,
|
||||||
|
.row select {
|
||||||
|
background: transparent;
|
||||||
|
border: 1px solid #41464f;
|
||||||
|
padding: 8px 30px 8px 8px;
|
||||||
|
border-radius: 10px;
|
||||||
|
color: white;
|
||||||
|
transition: color 0.2s;
|
||||||
|
max-width: 40%;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.row input,
|
||||||
|
.row select {
|
||||||
|
padding: 12px 30px 12px 12px;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.input-row input:focus,
|
||||||
|
.input-row select:focus,
|
||||||
|
.row input,
|
||||||
|
.row select {
|
||||||
|
outline: none;
|
||||||
|
background-color: black;
|
||||||
|
color: var(--highlight-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.input-row select,
|
||||||
|
.row select {
|
||||||
|
appearance: none;
|
||||||
|
-webkit-appearance: none;
|
||||||
|
-moz-appearance: none;
|
||||||
|
background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5-5 5 5zM7 14l5 5 5-5z"/></svg>');
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-position: right 8px center;
|
||||||
|
background-size: 16px;
|
||||||
|
padding-right: 32px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-container {
|
||||||
|
position: relative;
|
||||||
|
left: -18px;
|
||||||
|
top: -22px;
|
||||||
|
display: inline-block;
|
||||||
|
font-family: Arial, sans-serif;
|
||||||
|
margin: 0px;
|
||||||
|
width: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-icon {
|
||||||
|
background-color: var(--highlight-color);
|
||||||
|
color: black;
|
||||||
|
border-radius: 50%;
|
||||||
|
padding: 1px 4px;
|
||||||
|
cursor: pointer;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 10px;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 1;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltip {
|
||||||
|
visibility: hidden;
|
||||||
|
background-color: #333;
|
||||||
|
border-radius: 5px;
|
||||||
|
padding: 4px 8px;
|
||||||
|
position: absolute;
|
||||||
|
z-index: 1;
|
||||||
|
bottom: 100%; /* above the icon */
|
||||||
|
left: 50%;
|
||||||
|
transform: translateX(-78%);
|
||||||
|
opacity: 0;
|
||||||
|
transition: opacity 0.3s;
|
||||||
|
/*white-space: nowrap;*/
|
||||||
|
text-align: right;
|
||||||
|
width: 300px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tooltip::after {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
top: 100%; /* bottom of tooltip */
|
||||||
|
left: 80%;
|
||||||
|
margin-left: -5px;
|
||||||
|
border-width: 5px;
|
||||||
|
border-style: solid;
|
||||||
|
border-color: #333 transparent transparent transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-container:hover .tooltip {
|
||||||
|
visibility: visible;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.clear-btn {
|
||||||
|
position: absolute;
|
||||||
|
right: 8px;
|
||||||
|
background: transparent;
|
||||||
|
border: none;
|
||||||
|
color: white;
|
||||||
|
cursor: pointer;
|
||||||
|
font-size: 16px;
|
||||||
|
padding: 0;
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
line-height: 20px;
|
||||||
|
text-align: center;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.save-button {
|
||||||
|
background-color: var(--highlight-color);
|
||||||
|
color: black;
|
||||||
|
border: none;
|
||||||
|
padding: 15px 30px;
|
||||||
|
font-size: 16px;
|
||||||
|
border-radius: 10px;
|
||||||
|
font-weight: bold;
|
||||||
|
cursor: pointer;
|
||||||
|
margin-top: 30px;
|
||||||
|
align-self: flex-start;
|
||||||
|
}
|
||||||
|
|
||||||
|
.save-button:hover {
|
||||||
|
background-color: #f5c300;
|
||||||
|
}
|
||||||
|
|
||||||
|
.buttons .btn {
|
||||||
|
background-color: black;
|
||||||
|
border: 1px solid #999;
|
||||||
|
color: #999;
|
||||||
|
padding: 10px 15px;
|
||||||
|
font-size: 14px;
|
||||||
|
border-radius: 5px;
|
||||||
|
font-weight: bold;
|
||||||
|
cursor: pointer;
|
||||||
|
margin-top: 10px;
|
||||||
|
align-self: flex-start;
|
||||||
|
}
|
||||||
|
|
||||||
|
.buttons .btn:hover {
|
||||||
|
border: 1px solid #f5c300;
|
||||||
|
color: #f5c300;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hidden {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.popup {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.popup-content {
|
||||||
|
width: 100%;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
#popup .row {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 768px) {
|
||||||
|
.sidebar {
|
||||||
|
width: 80px;
|
||||||
|
padding: 20px 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo {
|
||||||
|
font-size: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo span {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu-item {
|
||||||
|
justify-content: center;
|
||||||
|
gap: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu-item span {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.yellow-box {
|
||||||
|
font-size: 0;
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.input-row {
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: flex-start;
|
||||||
|
}
|
||||||
|
|
||||||
|
.input-container {
|
||||||
|
width: 100%;
|
||||||
|
justify-content: flex-start;
|
||||||
|
}
|
||||||
|
|
||||||
|
.input-row input,
|
||||||
|
.input-row select {
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Reference in New Issue
Block a user