Emoji picker, Search and Themes updates
This commit is contained in:
@ -43,6 +43,8 @@ if (isset($_POST['user']) || isset($_GET['instance'])){
|
||||
}
|
||||
|
||||
$bg = scandir("./bg/");
|
||||
$bgfile = $bg[mt_rand(2,count($bg)-1)];
|
||||
@$exif = exif_read_data("./bg/".$bgfile, 'COMMENT')['COMMENT'][0];
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
@ -62,17 +64,31 @@ $bg = scandir("./bg/");
|
||||
}
|
||||
|
||||
html {
|
||||
background: url(bg/<?php echo $bg[mt_rand(2,count($bg)-1)]?>) no-repeat center center fixed;
|
||||
background: url(bg/<?php echo $bgfile; ?>) no-repeat center center fixed;
|
||||
-webkit-background-size: cover;
|
||||
-moz-background-size: cover;
|
||||
-o-background-size: cover;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.bginfo {
|
||||
text-align:left;
|
||||
color:white;
|
||||
font-family:sans-serif;
|
||||
font-size:10px;
|
||||
}
|
||||
|
||||
.bginfo a {
|
||||
color:white;
|
||||
font-weight:bold;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body >
|
||||
<div style='width:100vw; height:100%; display:inline-block; vertical-align:middle; text-align:center;'>
|
||||
<div style='width:300px; height:200px; margin-top:20%; background-color:rgba(0, 0, 0, 0.5); display:inline-block; padding:30px; border-radius:3px;'>
|
||||
<div class="bginfo"><?php echo $exif; ?></div>
|
||||
|
||||
<div style='width:300px; height:200px; margin-top:10%; background-color:rgba(0, 0, 0, 0.5); display:inline-block; padding:30px; border-radius:3px;'>
|
||||
<span style="font-family: 'Patua One', serif; font-weight:bold; color:white; font-size:45px; text-shadow: 2px 2px #000; ">Dashboard FE</span>
|
||||
|
||||
<?php echo $message; ?>
|
||||
|
||||
Reference in New Issue
Block a user