177 lines
2.8 KiB
CSS
Executable File
177 lines
2.8 KiB
CSS
Executable File
@import "tailwindcss/base";
|
|
@import "tailwindcss/components";
|
|
@import "tailwindcss/utilities";
|
|
|
|
/* This file is for your main application CSS */
|
|
|
|
body{
|
|
background-color: #eaeaea;
|
|
}
|
|
|
|
.log_in_container{
|
|
display: flex;
|
|
flex-direction: row;
|
|
margin-top: 100px;
|
|
width: 70%;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.log_in_form{
|
|
background-color: #297177;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
margin-right: 100px;
|
|
border-radius: 5px;
|
|
padding: 15px;
|
|
height: max-content;
|
|
}
|
|
|
|
.auth_form{
|
|
background-color: #297177;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
border-radius: 5px;
|
|
padding: 15px;
|
|
height: max-content;
|
|
}
|
|
|
|
.auth_form img{
|
|
margin-top: 10px;
|
|
margin-bottom: 20px;
|
|
width: 200px;
|
|
}
|
|
|
|
.log_in_form img{
|
|
margin-top: 10px;
|
|
margin-bottom: 20px;
|
|
width: 200px;
|
|
}
|
|
|
|
.imput_text{
|
|
margin-top: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.submit_button{
|
|
background-color: #5bc0de;
|
|
color: white;
|
|
padding-top: 10px;
|
|
padding-bottom: 10px;
|
|
width: 205px;
|
|
border-radius: 5px;
|
|
margin-top: 20px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.info_panel{
|
|
background-color: #a0cfd2;
|
|
padding: 30px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.error_msg{
|
|
color: red;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
margin-top: 15px;
|
|
}
|
|
|
|
.pantalla_estudios_header{
|
|
background-color: #297177;
|
|
padding: 10px;
|
|
}
|
|
|
|
.pantalla_estudios_header img{
|
|
width: 150px;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.estudio_patientname{
|
|
margin-left: 20px;
|
|
margin-top: 20px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.estudio_patientname h1{
|
|
font-weight: bold;
|
|
font-size: 22px;
|
|
color: #297177;
|
|
}
|
|
|
|
.estudio_patientname p{
|
|
font-size: 12px;
|
|
}
|
|
|
|
.estudio_container{
|
|
margin-left: 20px;
|
|
margin-right: 20px;
|
|
border-top: dotted black 1px;
|
|
background-color: white;
|
|
font-size: 12px;
|
|
padding: 5px;
|
|
padding-left: 10px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.estudio_details{
|
|
width: 70%;
|
|
}
|
|
|
|
.estudio_icons{
|
|
width: 30%;
|
|
display: flex;
|
|
justify-content: space-evenly;
|
|
}
|
|
|
|
.im_footer{
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
text-align: end;
|
|
padding-top: 40px;
|
|
padding-left: 20px;
|
|
padding-bottom: 20px;
|
|
font-size: 12px;
|
|
line-height: 15px;
|
|
}
|
|
|
|
.im_footer p{
|
|
margin-right: 20px;
|
|
}
|
|
|
|
.im_footer img{
|
|
width: 140px;
|
|
}
|
|
|
|
.login-container{
|
|
display: flex;
|
|
justify-content: space-evenly;
|
|
align-items: center;
|
|
}
|
|
|
|
.welcome_text{
|
|
background-color: #a0cfd2;
|
|
width: 40%;
|
|
padding: 30px;
|
|
max-width: 500px;
|
|
font-size: 18px;
|
|
}
|
|
|
|
@media (min-width: 1250px) {
|
|
.log_in_container{
|
|
width: 50%;
|
|
}
|
|
.estudio_details{
|
|
width: 80%;
|
|
}
|
|
.estudio_icons{
|
|
width: 20%;
|
|
}
|
|
} |