dip/static/css/main.css

33 lines
532 B
CSS
Raw Normal View History

2020-01-26 16:38:57 +01:00
/* Style buttons */
.buttonload {
background-color: #4CAF50; /* Green background */
border: none; /* Remove borders */
color: white; /* White text */
padding: 12px 16px; /* Some padding */
font-size: 16px /* Set a font size */
}
.btn {
background-color: #ddd;
border: none;
color: black;
padding: 16px 32px;
text-align: center;
font-size: 16px;
margin: 4px 2px;
transition: 0.3s;
}
.btn:hover {
background-color: #3e8e41;
color: white;
}
#dip_main_div {
margin: 10px;
}
.dip_p {
color: grey;
}