fcc-challenges/random-quote-machine/src/App.css

28 lines
397 B
CSS
Raw Normal View History

2020-03-25 16:32:12 -07:00
.App {
text-align: center;
}
.App-header {
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
}
2020-04-02 01:21:47 -07:00
.red-background {
background-color: #ff0000;
color: black;
}
.blue-background {
background-color: #0000ff;
color: white;
2020-03-25 16:32:12 -07:00
}
2020-04-02 01:21:47 -07:00
.yellow-background {
background-color: #ffff00;
color: black;
2020-03-25 16:32:12 -07:00
}