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.
23 lines
481 B
CSS
23 lines
481 B
CSS
/**
|
|
* This file styles the footer of the page
|
|
*/
|
|
|
|
|
|
|
|
/* .main .footer { grid-column: 1 / span 2; font-size:13px; font-weight: lighter; padding:8px;} */
|
|
.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;
|
|
}
|