-
Notifications
You must be signed in to change notification settings - Fork 0
/
styling.css
85 lines (84 loc) · 1.48 KB
/
styling.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
*, *::before, *::after, body{
margin: 0px;
}
body {
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', Arial, sans-serif;
background-color: rgb(118, 118, 118);
font-weight: bold;
color: white;
text-align: center;
}
.wrapper {
display: grid;
justify-content: center;
align-content: center;
width: 100vw;
height: 100vh;
}
.container {
display: grid;
justify-content: center;
align-content: center;
align-items: center;
gap: 1rem;
width: 60vw;
margin: -40px auto 0 auto;
height: 70vh;
background-color: #016f32;
border: 5px solid black;
box-shadow: 0px 0px 30px 1px #111;
}
h1 {
color: goldenrod;
margin-top: 0px;
}
#cards-el, #house-el {
margin: 1rem;
}
.gamedescrip {
width: 100%;
margin: auto;
}
.gamedescrip h1 {
text-align: left;
color: black;
margin-bottom: 5px;
}
.gamedescrip p {
font-style: italic;
text-align: left;
color: black;
margin-top: 0;
}
#message-el {
font-style: italic;
font-size: 22px;
}
button {
color: #016f32;
width: 150px;
background: goldenrod;
padding: 10px 2px;
font-weight: bold;
border: none;
border-radius: 2px;
margin: 2px auto;
cursor: pointer;
}
button:active {
background: rgb(191, 145, 28);
}
button:hover {
background: rgb(202, 154, 30);
}
.sums {
font-style: italic;
}
#bet-input {
display: block;
margin: auto;
}
.card-img {
height: 80px;
margin: 5px;
}