-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (60 loc) · 904 Bytes
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
* {
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
"Lucida Sans", Arial, sans-serif;
font-weight: bold;
margin: 0;
padding: 0;
}
body {
color: white;
}
section {
background: url(./assets/BlackJack.jpg);
background-size: cover;
}
h1 {
font-size: 4em;
font-weight: bold;
color: goldenrod;
text-align: center;
}
p {
margin-top: 50px;
}
#message-el {
font-weight: bold;
text-align: center;
}
.btn {
margin: 5px;
font-size: 20px;
}
.center {
align-items: center;
display: flex;
justify-content: center;
}
.gameOver {
margin-top: 1em;
color: #fcba5d;
}
.sectionPlay {
height: 100vh;
text-align: center;
}
.bet {
display: flex;
justify-content: center;
}
#bet {
padding: 3px;
border-radius: 50px;
width: 45%;
text-align: center;
}
.btnReset {
margin-top: 1em;
padding: 5px;
background-color: goldenrod;
color: black;
}