Changed button layout, IRC button removed but not been placed back yet

Redesign of passwordgen page
This commit is contained in:
ndaniel1102 2021-03-09 00:28:22 +01:00
parent 28363c3721
commit ca9be0f3c3
7 changed files with 92 additions and 73 deletions

View file

@ -6,13 +6,26 @@
}
.button {
cursor: pointer;
text-align: center;
background-color: var(--text-color);
background-color: #F2CB05;
border: none;
padding: 10px 30px;
color: white;
width: 200px;
color: black;
padding: 15px 30px;
font-weight: bold;
font-size: 15px;
margin: 8px 2px 2px 2px;
cursor: pointer;
text-shadow: 1px 1px 8px black;
transition: width 0.5s, height 0.5s, ease-in 0.5s;
}
.button:active {
transform: translateY(2.5px);
}
.button:hover {
text-shadow: 2px 2px 8px black;
transition: width 0.5s, height 0.5s, ease-out 0.5s;
background-color: #a38c1a;
}
.text {
@ -22,6 +35,14 @@
padding: 10px;
}
.descrip {
color: #acabab;
font-weight: bold;
padding-top: 4%;
padding-bottom: 4%;
font-size: 20px;
}
.pw {
margin: 10px;
}