mirror of
https://github.com/BreizhHardware/Jellystat.git
synced 2026-01-18 16:27:20 +01:00
fix: font color
make font color white globally
This commit is contained in:
@@ -1,150 +1,138 @@
|
||||
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
|
||||
@import './variables.module.css';
|
||||
/* *{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-family: 'poppins',sans-serif;
|
||||
} */
|
||||
|
||||
.login-show-password
|
||||
{
|
||||
background-color: transparent !important;
|
||||
border: 0 !important;
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-family: 'poppins', sans-serif;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.login-show-password {
|
||||
background-color: transparent !important;
|
||||
border: 0 !important;
|
||||
}
|
||||
|
||||
section{
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
min-height: 100vh;
|
||||
width: 100%;
|
||||
background-position: center;
|
||||
background-size: cover;
|
||||
section {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
min-height: 100vh;
|
||||
width: 100%;
|
||||
background-position: center;
|
||||
background-size: cover;
|
||||
}
|
||||
.form-box{
|
||||
position: relative;
|
||||
width: 400px;
|
||||
height: 600px;
|
||||
background: var(--secondary-background-color);
|
||||
/* border: 2px solid rgba(255,255,255,0.5); */
|
||||
border-radius: 20px;
|
||||
backdrop-filter: blur(15px);
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
.form-box {
|
||||
position: relative;
|
||||
width: 400px;
|
||||
height: 600px;
|
||||
background: var(--secondary-background-color);
|
||||
/* border: 2px solid rgba(255,255,255,0.5); */
|
||||
border-radius: 20px;
|
||||
backdrop-filter: blur(15px);
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
h2{
|
||||
font-size: 2em;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
h2 {
|
||||
font-size: 2em;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
}
|
||||
.inputbox{
|
||||
position: relative;
|
||||
margin: 30px 0;
|
||||
width: 310px;
|
||||
border-bottom: 2px solid #fff;
|
||||
.inputbox {
|
||||
position: relative;
|
||||
margin: 30px 0;
|
||||
width: 310px;
|
||||
border-bottom: 2px solid #fff;
|
||||
}
|
||||
.inputbox .form-label{
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
color: #fff !important;
|
||||
font-size: 1em;
|
||||
pointer-events: none;
|
||||
transition: .2s;
|
||||
.inputbox .form-label {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
color: #fff !important;
|
||||
font-size: 1em;
|
||||
pointer-events: none;
|
||||
transition: 0.2s;
|
||||
}
|
||||
.inputbox input:focus ~ .form-label,
|
||||
.inputbox input:not(:placeholder-shown) ~ .form-label
|
||||
{
|
||||
top: -10px;
|
||||
.inputbox input:not(:placeholder-shown) ~ .form-label {
|
||||
top: -10px;
|
||||
}
|
||||
|
||||
|
||||
.inputbox input:hover {
|
||||
|
||||
background: transparent !important;
|
||||
box-shadow: none !important;
|
||||
|
||||
background: transparent !important;
|
||||
box-shadow: none !important;
|
||||
}
|
||||
.inputbox input:focus {
|
||||
|
||||
background: transparent !important;
|
||||
box-shadow: none !important;
|
||||
color: #fff;
|
||||
|
||||
background: transparent !important;
|
||||
box-shadow: none !important;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
|
||||
.inputbox input {
|
||||
height: 50px;
|
||||
background: transparent;
|
||||
border: none;
|
||||
outline: none;
|
||||
|
||||
height: 50px;
|
||||
background: transparent;
|
||||
border: none;
|
||||
outline: none;
|
||||
|
||||
color: #fff;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.forget{
|
||||
margin: -15px 0 15px ;
|
||||
font-size: .9em;
|
||||
color: #fff;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
.forget {
|
||||
margin: -15px 0 15px;
|
||||
font-size: 0.9em;
|
||||
color: #fff;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.forget label input{
|
||||
margin-right: 3px;
|
||||
|
||||
.forget label input {
|
||||
margin-right: 3px;
|
||||
}
|
||||
.forget label a{
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
.forget label a {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
}
|
||||
.forget label a:hover{
|
||||
text-decoration: underline;
|
||||
.forget label a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
.setup-button{
|
||||
color: white !important;
|
||||
width: 100%;
|
||||
height: 40px;
|
||||
border-radius: 40px !important;
|
||||
background: var(--primary-color) !important;
|
||||
border: none !important;
|
||||
outline: none !important;
|
||||
font-size: 1em !important;
|
||||
font-weight: 600 !important;
|
||||
.setup-button {
|
||||
color: white !important;
|
||||
width: 100%;
|
||||
height: 40px;
|
||||
border-radius: 40px !important;
|
||||
background: var(--primary-color) !important;
|
||||
border: none !important;
|
||||
outline: none !important;
|
||||
font-size: 1em !important;
|
||||
font-weight: 600 !important;
|
||||
}
|
||||
|
||||
.setup-button:hover{
|
||||
color: black !important;
|
||||
width: 100%;
|
||||
height: 40px;
|
||||
border-radius: 40px !important;
|
||||
background: var(--secondary-color) !important;
|
||||
border: none !important;
|
||||
outline: none !important;
|
||||
font-size: 1em !important;
|
||||
font-weight: 600 !important;
|
||||
.setup-button:hover {
|
||||
color: black !important;
|
||||
width: 100%;
|
||||
height: 40px;
|
||||
border-radius: 40px !important;
|
||||
background: var(--secondary-color) !important;
|
||||
border: none !important;
|
||||
outline: none !important;
|
||||
font-size: 1em !important;
|
||||
font-weight: 600 !important;
|
||||
}
|
||||
.register{
|
||||
font-size: .9em;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
margin: 25px 0 10px;
|
||||
.register {
|
||||
font-size: 0.9em;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
margin: 25px 0 10px;
|
||||
}
|
||||
.register p a{
|
||||
text-decoration: none;
|
||||
color: #fff;
|
||||
font-weight: 600;
|
||||
.register p a {
|
||||
text-decoration: none;
|
||||
color: #fff;
|
||||
font-weight: 600;
|
||||
}
|
||||
.register p a:hover{
|
||||
text-decoration: underline;
|
||||
.register p a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.fts-text
|
||||
{
|
||||
color: var(--secondary-color);
|
||||
}
|
||||
.fts-text {
|
||||
color: var(--secondary-color);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user