parent
3bfec8032f
commit
4a9144a183
5 changed files with 72 additions and 0 deletions
@ -0,0 +1,42 @@ |
||||
* { |
||||
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; |
||||
} |
@ -0,0 +1,16 @@ |
||||
<!DOCTYPE html> |
||||
<html lang="en"> |
||||
<head> |
||||
<meta charset="UTF-8" /> |
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
||||
<title>Ship</title> |
||||
</head> |
||||
<body> |
||||
<div class="block-ships"> |
||||
<div class="ships"> |
||||
|
||||
</div> |
||||
</div> |
||||
|
||||
</body> |
||||
</html> |
@ -0,0 +1,9 @@ |
||||
<!-- Copyright © 2023 Entreprise SkamKraft --> |
||||
<div class="my-modal"> |
||||
<div class="infos"> |
||||
|
||||
</div> |
||||
<div> |
||||
<button class="btn btn-val btn-close">Close</button> |
||||
</div> |
||||
</div> |
Loading…
Reference in New Issue