55 lines
871 B
CSS
55 lines
871 B
CSS
@charset "UTF-8";
|
|
|
|
.header__container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
|
|
background-color: #234164;
|
|
width: 100%;
|
|
padding: 20px 125px 25px 125px;
|
|
margin-bottom: 50px;
|
|
}
|
|
|
|
.header-title__container > h1 {
|
|
color: white;
|
|
margin: 0px !important;
|
|
font-size: 30px;
|
|
}
|
|
|
|
.p-4 {
|
|
padding: 0px !important;
|
|
}
|
|
|
|
button {
|
|
background-color: #31a3b5 !important;
|
|
border: none !important;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #298897 !important;
|
|
}
|
|
|
|
.progress-bar {
|
|
background-color: #31a3b5 !important;
|
|
}
|
|
|
|
.card {
|
|
margin-top: 40px;
|
|
}
|
|
|
|
|
|
@media screen and (max-width: 768px) {
|
|
.header__container {
|
|
padding-left: 20px;
|
|
padding-right: 20px;
|
|
}
|
|
|
|
.header-title__container > h1{
|
|
font-size: 16px;
|
|
}
|
|
|
|
.header-logo__container > img {
|
|
width: 80px;
|
|
}
|
|
} |