30 lines
638 B
CSS
30 lines
638 B
CSS
![]() |
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
|
||
|
|
||
|
.fancyButton {
|
||
|
border: 2px solid green;
|
||
|
background-color: transparent;
|
||
|
padding: 10px 12px;
|
||
|
text-align: center;
|
||
|
border-radius: 55px;
|
||
|
transition-duration: 0.4s;
|
||
|
color: black;
|
||
|
outline: none;
|
||
|
font-family: 'Roboto', sans-serif !important;
|
||
|
font-size: 50px;
|
||
|
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
|
||
|
}
|
||
|
|
||
|
.fancyButton:hover {
|
||
|
background-color: green;
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
button:focus {
|
||
|
outline: none;
|
||
|
}
|
||
|
|
||
|
button {
|
||
|
margin: 50px 50px 50px 50px;
|
||
|
width: 850px;
|
||
|
height: 700px;
|
||
|
}
|