25 lines
317 B
CSS
25 lines
317 B
CSS
/* to override Bootstrap styles for some things */
|
|
|
|
body {
|
|
background-color: #333;
|
|
color: white;
|
|
}
|
|
|
|
a {
|
|
color: #ffc107;
|
|
}
|
|
|
|
.jumbotron {
|
|
display: flex;
|
|
align-items: center;
|
|
margin: 0;
|
|
height: 100vh;
|
|
color: white;
|
|
background-color: #333;
|
|
}
|
|
|
|
.space-above {
|
|
margin-top: 20px;
|
|
padding-top: 20px;
|
|
}
|