blackjack logic written in vue
https://luna-development.net/blackjack/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
880 B
72 lines
880 B
body { |
|
background-color: #0f0f0f; |
|
background-image: url('../img/background.jpg'); |
|
} |
|
|
|
.container { |
|
padding-top: 3em; |
|
} |
|
|
|
.playing-card { |
|
max-width: 75px; |
|
margin: 0.2em; |
|
} |
|
|
|
#status { |
|
color: darkred; |
|
text-align: center; |
|
} |
|
|
|
.navbar { |
|
background-color: #349940; |
|
} |
|
|
|
.navbar * { |
|
color: white; |
|
} |
|
|
|
.navbar-brand img { |
|
width: 35px; |
|
} |
|
|
|
.hand { |
|
margin-bottom: 2em; |
|
} |
|
|
|
#bankModal * { |
|
color: black; |
|
} |
|
|
|
.bet-input { |
|
display: inline; |
|
} |
|
|
|
#actions .card-body { |
|
padding: 20px 5px 5px 5px; |
|
} |
|
|
|
#actions button { |
|
width: 100%; |
|
margin-bottom: 5px; |
|
} |
|
|
|
#card-space { |
|
color: white; |
|
} |
|
|
|
#placeholder { |
|
text-align: center; |
|
color: white; |
|
padding-top: 25px; |
|
} |
|
|
|
.navbar-toggler { |
|
border: 1px solid green; |
|
background-color: lightgreen; |
|
} |
|
|
|
.fa-ellipsis-v { |
|
font-size: 1.4em; |
|
color: green; |
|
margin: 3px 6px 3px 6px; |
|
}
|
|
|