23 lines
281 B
CSS
23 lines
281 B
CSS
|
.blue-bg {
|
||
|
background-color: #40a9e3;
|
||
|
}
|
||
|
|
||
|
.black-bg {
|
||
|
background-color: black;
|
||
|
}
|
||
|
|
||
|
.red-bg {
|
||
|
background-color: #d1240c;
|
||
|
}
|
||
|
|
||
|
.green-bg {
|
||
|
background-color: #5cab06;
|
||
|
}
|
||
|
|
||
|
|
||
|
h1.generic-header {
|
||
|
line-height: 6rem;
|
||
|
text-transform: uppercase;
|
||
|
font-size: 7rem;
|
||
|
}
|
||
|
|