mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
17 lines
319 B
CSS
17 lines
319 B
CSS
|
body {
|
||
|
background-color: #f4f4f4;
|
||
|
font-family: 'Open Sans', sans-serif;
|
||
|
font-size: 14px;
|
||
|
line-height: 1.42857143;
|
||
|
color: #333;
|
||
|
margin: 20px;
|
||
|
padding: 20px;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.red {
|
||
|
background-color: rgb(202, 60, 60) !important;
|
||
|
}
|