50 lines
763 B
CSS
50 lines
763 B
CSS
.btn-style {
|
|
background: #009f90 !important;
|
|
color: rgb(229, 236, 246) !important;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.btn-style:hover {
|
|
background-color: #007f72 !important;
|
|
}
|
|
|
|
#imgInt {
|
|
float: left;
|
|
}
|
|
|
|
#header {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
#imgLogo {
|
|
width: 100px;
|
|
height: 80px;
|
|
margin-right: 10px;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
#extDivStyle {
|
|
background-color: #c9cdb1;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
#intDivStyle {
|
|
padding-top: 10px;
|
|
padding-right: 10px;
|
|
padding-bottom: 10px;
|
|
padding-left: 10px;
|
|
}
|
|
|
|
.custom-standout {
|
|
background-color: #7f8389 !important;
|
|
color: rgb(0, 0, 0) !important;
|
|
}
|
|
|
|
#tabHeader {
|
|
color: #009f90;
|
|
}
|
|
|
|
*{
|
|
font-family: 'Roboto', 'Lato', sans-serif;
|
|
} |