Portfolio/Mainpage.css
WillowRo 5e67c358fd minor updates to the css
adding some colour whilst I work out the layout,

also changed the amount of columns to 3 instead of 12, not entirely sure why
2020-12-16 22:08:01 +00:00

25 lines
328 B
CSS

*{
box-sizing: border-box;
/*border-color: #ffffff;*/
color: #ffffff;
}
body{
background-color: #221A0F;
}
.TitleText{
font-size: 50;
background-color: #ffa500;
}
[class*="col-"] {
float: left;
padding: 15px;
}
/* columns*/
.col-1 {width: 33.3%;}
.col-2 {width: 66.6%;}
.col-3 {width: 100%}