31 lines
No EOL
695 B
CSS
31 lines
No EOL
695 B
CSS
.button {
|
|
font-family: "Roboto", serif;
|
|
color: #003366;
|
|
font-weight: 400;
|
|
font-size: 1.5em;
|
|
padding: 0.75em;
|
|
margin: 1em;
|
|
width: auto;
|
|
cursor: pointer;
|
|
background-color: rgba(0,0,0,0);
|
|
display: inline-block;
|
|
border-style: solid;
|
|
border-width: 3px;
|
|
border-color: #003366;
|
|
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.15), 0 6px 20px 0 rgba(0,0,0,0.15);
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
.button:hover {
|
|
box-shadow:none;
|
|
}
|
|
@media only screen and (max-width: 1000px){
|
|
.button {
|
|
font-size: 1.45em;
|
|
padding: 0.3em;
|
|
margin: 0.15em;
|
|
}
|
|
}
|
|
|