mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-30 11:00:11 +08:00
32 lines
400 B
CSS
32 lines
400 B
CSS
.leftcolumn {
|
|
width: 75%;
|
|
}
|
|
|
|
.leftcolumn img{
|
|
width: 80%;
|
|
}
|
|
|
|
p a{
|
|
color: #ed9013;
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* Add a card effect for articles */
|
|
body{
|
|
background-color: #F5F5F5;
|
|
}
|
|
.card {
|
|
background-color: white;
|
|
padding: 10px 20px 20px 20px;
|
|
margin-top: 20px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
/* Clear floats after the columns */
|
|
.row:after {
|
|
content: "";
|
|
display: table;
|
|
clear: both;
|
|
}
|
|
|