You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
46 lines
818 B
46 lines
818 B
* { |
|
box-sizing: border-box; |
|
} |
|
@font-face { |
|
font-family: M42; |
|
src: url("/assets/fonts/m42.TTF"); |
|
} |
|
.block-ships{ |
|
display:flex; |
|
justify-content: center; |
|
align-items: center; |
|
color: white; |
|
font-size:large; |
|
} |
|
.ships{ |
|
display: flex; |
|
flex-direction: column; |
|
flex-wrap: wrap; |
|
text-align: center; |
|
} |
|
button{ |
|
color: white; |
|
font-family: 'M42'; |
|
background-color: black; |
|
font-size:x-small; |
|
box-shadow: 3px 2px white; |
|
border: 4px solid white; |
|
border-radius: 10px; |
|
padding: 10px; |
|
padding-left: 15px; |
|
padding-right: 15px; |
|
} |
|
button:hover{ |
|
background-color:aqua ; |
|
transition: 1s; |
|
} |
|
.ships>*{ |
|
flex: 100px; |
|
} |
|
.my-modal{ |
|
font-size:small; |
|
} |
|
body{ |
|
background-image: url("/assets/spaceships/hangar.png"); |
|
background-size: cover; |
|
} |