adding some colour whilst I work out the layout, also changed the amount of columns to 3 instead of 12, not entirely sure why
25 lines
328 B
CSS
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%}
|