You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
208 B
15 lines
208 B
3 months ago
|
/* using margins to create a centralised
|
||
|
layout
|
||
|
*/
|
||
|
|
||
|
/* colour palette
|
||
|
#59F8E8; Turquoise Blue
|
||
|
#03191E; Rich Black
|
||
|
*/
|
||
|
|
||
|
section {
|
||
|
background: #03191E;
|
||
|
color: #59F8E8;
|
||
|
width: 800px;
|
||
|
margin: 0 auto;
|
||
|
}
|