Move frontend
This commit is contained in:
parent
7d51206deb
commit
7ea082fecb
37 changed files with 2993 additions and 3 deletions
31
frontend/css/button.css
Normal file
31
frontend/css/button.css
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
.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;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue