58 lines
792 B
CSS
58 lines
792 B
CSS
/*html {
|
|
font-size: 14px;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
html {
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
|
|
html {
|
|
position: relative;
|
|
min-height: 100%;
|
|
}*/
|
|
|
|
html, body {
|
|
height: 100%;
|
|
margin: 0;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
font-family: 'Arial', sans-serif;
|
|
background-color: #f4f4f9;
|
|
color: #333;
|
|
}
|
|
|
|
.container {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
.footer {
|
|
background-color: #fff;
|
|
padding: 20px 0;
|
|
box-shadow: 0 -2px 4px rgba(0,0,0,.1);
|
|
}
|
|
|
|
.navbar {
|
|
background-color: #ffffff;
|
|
box-shadow: 0 2px 4px rgba(0,0,0,.1);
|
|
justify-content: right;
|
|
}
|
|
|
|
.nav-link {
|
|
color: #505050;
|
|
transition: color 0.3s;
|
|
}
|
|
|
|
.nav-link:hover {
|
|
color: #007bff;
|
|
}
|
|
|
|
</style >
|