195 lines
3.0 KiB
CSS
Executable File
195 lines
3.0 KiB
CSS
Executable File
|
|
body {
|
|
background-color:#2d2e44;
|
|
height:100%; width:100%;
|
|
color:white;
|
|
}
|
|
|
|
input {
|
|
opacity:0.9;
|
|
}
|
|
#logo {
|
|
display:inline;
|
|
}
|
|
|
|
#logo img{
|
|
display:inline;
|
|
width:250px;
|
|
height:170px;
|
|
margin-right:4%;
|
|
}
|
|
|
|
#menu {
|
|
display:block;
|
|
padding-bottom:10pt;
|
|
}
|
|
|
|
#menu div {
|
|
display:inline;
|
|
margin-right:2%;
|
|
font-size:x-large;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.title {
|
|
font-size:xx-large;
|
|
font-weight:bold;
|
|
margin-bottom:20pt;
|
|
}
|
|
|
|
#admin {
|
|
padding : 15px;
|
|
margin : 15px;
|
|
border-radius: 25px;
|
|
border-style:solid;
|
|
border-width:5px;
|
|
border-color:grey;
|
|
display:none;
|
|
}
|
|
|
|
#admin form {
|
|
text-align : center;
|
|
}
|
|
|
|
#admin input {
|
|
margin-right:10px;
|
|
}
|
|
|
|
#user {
|
|
padding : 15px;
|
|
margin : 15px;
|
|
text-align:center;
|
|
}
|
|
|
|
#user input {
|
|
margin-left : 15px;
|
|
margin-right : 30px;
|
|
margin-top : 10px;
|
|
margin-bottom : 10px;
|
|
}
|
|
|
|
#select_user {
|
|
text-align : center;
|
|
}
|
|
|
|
#selected_user {
|
|
margin-left:10px;
|
|
margin-right:10px;
|
|
}
|
|
|
|
#passwords {
|
|
padding : 15px;
|
|
margin : 15px;
|
|
}
|
|
|
|
#addon_address {
|
|
padding:10px;
|
|
text-align:center;
|
|
font-size:xx-large;
|
|
color:#de0036;
|
|
}
|
|
|
|
#add_new_password {
|
|
border-radius: 25px;
|
|
border-style:solid;
|
|
border-width:5px;
|
|
border-color:grey;
|
|
padding : 15px;
|
|
margin : 15px;
|
|
display:none;
|
|
}
|
|
|
|
#update_masterkey {
|
|
padding : 15px;
|
|
margin : 15px;
|
|
border-radius: 25px;
|
|
border-style:solid;
|
|
border-width:5px;
|
|
border-color:grey;
|
|
display:none;
|
|
}
|
|
|
|
#export_database {
|
|
padding : 15px;
|
|
margin : 15px;
|
|
border-radius: 25px;
|
|
border-style:solid;
|
|
border-width:5px;
|
|
border-color:grey;
|
|
display:none;
|
|
}
|
|
|
|
#export_link {
|
|
display:none;
|
|
visibility:hidden;
|
|
}
|
|
|
|
.error {
|
|
text-align:center;
|
|
color:red;
|
|
font-weight:bold;
|
|
font-size:xx-large;
|
|
}
|
|
|
|
#scorebarBorder {
|
|
background: #333;
|
|
border: 1px #000 solid;
|
|
height: 16px;
|
|
margin-bottom: 2px;
|
|
margin-left:auto;
|
|
margin-right:auto;
|
|
width: 100px;
|
|
}
|
|
|
|
#score {
|
|
color: rgb(0, 0, 0);
|
|
font-size: 85%;
|
|
position: absolute;
|
|
text-align: center;
|
|
width: 100px;
|
|
z-index: 10;
|
|
font-weight:bold;
|
|
}
|
|
|
|
#scorebar {
|
|
background-image: url(/resources/bg_strength_gradient.jpg);
|
|
background-repeat: no-repeat;
|
|
background-position: 0 0;
|
|
position:absolute;
|
|
width: 100px;
|
|
z-index: 0;
|
|
}
|
|
|
|
/* From http://www.trucsweb.com/tutoriels/javascript/retour-haut/ */
|
|
a#buttonTop{
|
|
border-radius:3px;
|
|
padding:0 10px 10px 10px;
|
|
font-size:3em;
|
|
text-align:center;
|
|
color:#fff;
|
|
background:rgba(0, 0, 0, 0.25);
|
|
position:fixed;
|
|
right:3%;
|
|
opacity:1;
|
|
z-index:99999;
|
|
transition:all ease-in 0.2s;
|
|
backface-visibility: hidden;
|
|
-webkit-backface-visibility: hidden;
|
|
text-decoration: none;
|
|
}
|
|
a#buttonTop:before{ content: "\25b2"; }
|
|
a#buttonTop:hover{
|
|
background:rgba(0, 0, 0, 1);
|
|
transition:all ease-in 0.2s;
|
|
}
|
|
a#buttonTop.cInvisible{
|
|
bottom:-35px;
|
|
opacity:0;
|
|
transition:all ease-in 0.5s;
|
|
}
|
|
|
|
a#buttonTop.cVisible{
|
|
bottom:20px;
|
|
opacity:1;
|
|
}
|