Reconfigure Project deleting old configuration of React that was not working
This commit is contained in:
@@ -0,0 +1,135 @@
|
||||
:root {
|
||||
--color-background-Light: #f5f8fa;
|
||||
--color-background-Dark: #202124;
|
||||
|
||||
--color-Primary-Light: #ffffff;
|
||||
--color-Primary-Dark: #41444a;
|
||||
|
||||
--color-Accent: #00bf63;
|
||||
--color-Accent-darker: #07a65a;
|
||||
}
|
||||
|
||||
.Destacado {
|
||||
color: var(--color-Accent);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 80%;
|
||||
align-items: center;
|
||||
margin: 0 auto;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.margintop {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.gap {
|
||||
gap: rem;
|
||||
}
|
||||
|
||||
.marginbottom {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.alignitems {
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.texto {
|
||||
width: 350px;
|
||||
max-width: 100%;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
font-family: "Outfit", sans-serif;
|
||||
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: var(--color-background-Light);
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
#Dashboard_img {
|
||||
display: block;
|
||||
|
||||
max-width: 100%;
|
||||
|
||||
border-radius: 12px;
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
#logo_icon {
|
||||
display: block;
|
||||
margin: 0 auto 0 auto;
|
||||
max-height: 75%;
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
.login_area {
|
||||
margin-top: 100px;
|
||||
margin-bottom: 100px;
|
||||
justify-content: center;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
background-color: var(--color-Primary-Light);
|
||||
border-radius: 28px;
|
||||
padding: 20px 50px;
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
|
||||
max-width: 1000px;
|
||||
|
||||
width: 80%;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.register_inputs {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.Inputbox {
|
||||
outline: none;
|
||||
|
||||
height: 50px;
|
||||
max-width: 550px;
|
||||
width: 80%;
|
||||
border-radius: 8px;
|
||||
padding-left: 10px;
|
||||
box-sizing: 1px;
|
||||
margin-top: 40px;
|
||||
|
||||
border: 1px solid var(--color-Accent);
|
||||
background-color: var(--color-background-Light);
|
||||
}
|
||||
|
||||
.Button {
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
border: none;
|
||||
|
||||
line-height: 35px;
|
||||
padding: 5px 20%;
|
||||
border-radius: 28px;
|
||||
cursor: pointer;
|
||||
|
||||
color: #333;
|
||||
background-color: var(--color-Accent);
|
||||
transition: background-color 0.3s ease;
|
||||
}
|
||||
|
||||
.Button:hover {
|
||||
background-color: var(--color-Accent-darker);
|
||||
}
|
||||
Reference in New Issue
Block a user