You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
380 B
CSS
20 lines
380 B
CSS
/**
|
|
* This file styles the footer of the page
|
|
*/
|
|
|
|
.footer {
|
|
text-align:center;
|
|
display:grid;
|
|
grid-template-columns: repeat(3,1fr);
|
|
gap:4px;
|
|
padding:8px;
|
|
font-size:12px;
|
|
color:black;
|
|
align-items: center;
|
|
align-content: center;
|
|
text-transform: capitalize;
|
|
/* background-color: rgba(255,255,255,0.8); */
|
|
|
|
grid-column: 1 /span 2;
|
|
}
|