This commit is contained in:
Andras Schmelczer 2026-06-06 19:37:55 +01:00
parent 52eb07a993
commit 0fde080ab8
8 changed files with 555 additions and 376 deletions

View file

@ -1,31 +1,32 @@
.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 {
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;
.button:hover {
box-shadow: none;
}
@media only screen and (max-width: 1000px){
.button {
font-size: 1.45em;
padding: 0.3em;
margin: 0.15em;
}
@media only screen and (max-width: 1000px) {
.button {
font-size: 1.45em;
padding: 0.3em;
margin: 0.15em;
}
}