This commit is contained in:
sparkyx 2021-04-09 23:57:32 +02:00
parent af061c62b5
commit eb281c1ff9
5 changed files with 32 additions and 42 deletions

View file

@ -3,57 +3,42 @@
* LOGO
*************************************/
#logo_id {
width:90px;
display:block;
position:absolute;
top : 0px;
left:0px;
width:40px;
height:auto;
margin-left:0px;
}
/** small **/
@media (min-width : 576px) {
#logo_id {
z-index:-1;
width: 150px;
left: 5px;
top: 22px;
height: 90px;
left:0px;
display:block;
top : 10px;
left:10px;
width: 60px;
margin-left:35px;
}
}
/** medium**/
@media (min-width : 768px) {
#logo_id {
z-index:-1;
width: 150px;
left: 5px;
top: 22px;
height: 90px;
display:block;
}
}
/** large**/
@media (min-width : 992px) {
#logo_id {
z-index:-1;
width: 150px;
left: 5px;
top: 22px;
height:90px;
display:block;
}
}
/** XL **/
@media (min-width : 1200px) {
#logo_id {
z-index: -1;
width: 150px;
left: 5px;
top: 22px;
height:90px;
display:block;
}
}
@ -98,7 +83,6 @@
}
#recover_box {
display: none;
position: absolute;
top: 15%;
@ -107,4 +91,4 @@
margin-left: 1%;
background-color: whitesmoke;
padding : 15px;
}
}

View file

@ -1659,7 +1659,8 @@ ul.tabs {
display:block;
padding-left: 2px;
list-style: none;
margin-left:2px;
margin: 0px 3px 0px 3px;
}
ul.tabs a {
display:inline;
@ -1677,7 +1678,7 @@ li.tabs_selected {
color:whitesmoke;
margin-left: 2px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
border:1px #879ed4 solid;
font-weight: bold;
float:left;
@ -1694,7 +1695,8 @@ li.tabs {
border:1px #879ed4 solid;
float:left;
background: whitesmoke;
margin-top:2px;
margin: 2px 3px 3px 3px;
}
li.tabs:hover {
@ -1703,7 +1705,7 @@ li.tabs:hover {
color:wheat;margin-left: 2px;
padding: 5px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
border:1px #879ed4 solid;
white-space: nowrap;
@ -1714,7 +1716,7 @@ li.tabs:hover {
background-color: inherit;
padding: 15px 7px 0px 10px;
padding: 15px 7px 10px 10px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
border:1px #879ed4 solid;
@ -2848,3 +2850,7 @@ span.tagcell {
}
/**========*/
.smallicon {
padding: 2px;
margin: 0px 1px 0px 1px;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 65 KiB

After

Width:  |  Height:  |  Size: 32 KiB

Before After
Before After

View file

@ -215,11 +215,11 @@ if (isset($_REQUEST['reconnect'])&&isset($_REQUEST['backurl']))
<div >
<div class="d-sm-block">
<IMG SRC="image/logo9000.png" id="logo_id" alt="NOALYSS">
</div>
<div class="container">
<div class="mx-auto" id="login_div">
<div class="mx-auto" id="login_div">
<h1 style="text-align: center;color:darkblue;font-weight: 800">NOALYSS</h1>
<form id="login_frm" action="login.php" method="post" name="loginform" class="p-sm-3" >
<?php echo $goto; ?>
@ -258,7 +258,7 @@ if (isset($_REQUEST['reconnect'])&&isset($_REQUEST['backurl']))
<div id="recover_box">
<span style="display:block;font-size:120%;background-color: white;margin:0px">Recouvrement identifiant
<span style="cursor: pointer;float: right;position:relative;right:0px" id="close">
<a ref="#" id="close_link"><?php echo SMALLX ?></a></span>
<a ref="#" id="close_link">&times;</a></span>
</span>
Indiquez votre login ou votre email
<form method="POST" style="padding:20px">

View file

@ -246,7 +246,7 @@ class Icon_Action
*/
static function trash($p_id,$p_javascript)
{
$r='<span id="'.$p_id.'" onclick="'.$p_javascript.'" class="icon">&#xe80f;</span>';
$r='<span id="'.$p_id.'" onclick="'.$p_javascript.'" class="smallicon icon">&#xe80f;</span>';
return $r;
}
/**