www.techtransthai.org/style.css

25 lines
440 B
CSS
Raw Normal View History

2023-07-25 16:04:31 +00:00
html *
{
font-family: Cantarell, sans-serif;
}
.button {
background-color: #EBEBEB;
color: black;
border: none;
border-radius: 8px;
justify-content: center;
align-items: center;
text-decoration: none;
display: flex;
font-size: 16px;
font-family: Cantarell, sans-serif;
margin: 4px 2px;
cursor: pointer;
width: 100px;
height: 40px;
transition-duration: 0.2s;
}
.button:hover {
background-color: #E0E0E0;
}