-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
34 lines (31 loc) · 739 Bytes
/
index.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
body {
background-image: url(./images/Blackjack-bg.png);
background-repeat: no-repeat;
background-size: cover;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
text-align: center;
font-weight: bold;
font-size: 4rem;
color: whitesmoke;
}
h1 {
color: goldenrod;
font-size: 8rem;
}
button {
font-weight: bold;
color: #016f32;
width: 9.5rem;
border-radius: 0.5rem;
background-color: goldenrod;
border: none;
padding: 0.5rem 0.5rem;
-webkit-border-radius: 0.5rem;
-moz-border-radius: 0.5rem;
-ms-border-radius: 0.5rem;
-o-border-radius: 0.5rem;
z-index: 1;
}
#message-el {
font-style: italic;
}