-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
95 lines (82 loc) · 1.71 KB
/
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
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
body{
background-image: url(blackjack.jpg);
/* background-repeat:no-repeat; */
background-size:cover;
font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
text-align:center;
}
h1{
font-weight: bold;
font-size:50px;
color: rgb(237, 191, 9);
}
p{
font-size: 20px;
font-weight:520;
color: rgb(255, 255, 255);
}
#message-el{
font-weight: 500;
font-style: italic;
}
#Start{
font-size:22px;
border-radius: 5px;
border:none;
color: rgb(7, 105, 56);
border-color: azure;
font-weight: 700;
background-color: rgb(230, 195, 18);
width:220px;
height:50px;
position: inherit;
left:120px;
cursor: pointer;
transition: transform 0.3s ease;
}
#start:hover{
transform: scale(1.1);
}
#New_Card,#stay{
font-size:22px;
border-radius: 5px;
border:none;
color: rgb(7, 105, 56);
border-color: azure;
/* border-width: 5px; */
font-weight: 700;
background-color: rgb(230, 195, 18);
width:220px;
height:50px;
position:inherit;
left:-105px;
top:60px;
cursor: pointer;
transition: transform 0.3s ease;
}
#New_Card:hover{
transform: scale(1.1);
}
#Stay:hover{
transform: scale(1.1);
}
#dealer-cards img{
height: 175px;
width: 125px;
margin: 1px;
cursor: pointer;
transition: transform 0.3s ease;
}
#dealer-cards img:hover{
transform: scale(1.1);
}
#my-cards img{
height: 175px;
width: 125px;
margin: 1px;
cursor: pointer;
transition: transform 0.3s ease;
}
#my-cards img:hover{
transform: scale(1.1);
}