-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
100 lines (84 loc) · 1.61 KB
/
styles.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
96
97
98
99
100
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
box-sizing: border-box;
}
body * {
box-sizing: inherit;
}
.message-box {
width: 900px;
max-width: calc(100% - 20px);
margin: 0 auto 10px;
height: 1em;
font-size: 18px;
color: rgb(22, 77, 8);
}
.message-box.error {
color: rgb(122, 0, 0)
}
.table {
width: 900px;
max-width: calc(100% - 20px);
border: 8px solid rgb(10, 43, 2);
border-radius: 20px;
background: rgb(22, 77, 8);
margin: 0 auto;
color: white;
padding: 30px;
}
.player {
margin: 20px;
}
.player-name {
display: block;
font-size: 16px;
margin-bottom: 8px;
}
.points {
font-style: italic;
}
.hand {
height: 120px;
background: rgba(10, 43, 2, 0.5);
border-radius: 5px;
}
.hand img {
height: 100%;
width: auto;
padding: 10px 0 10px 10px;
}
.buttons {
display: flex;
justify-content: center;
}
button {
margin: 10px;
font-size: 18px;
border: 0;
padding: 10px 16px;
border-radius: 10px;
color: rgb(189, 229, 255);
background: rgb(0, 98, 163);
}
button:hover {
cursor: pointer;
background: rgb(35, 133, 199);
box-shadow: 0px 0px 10px 5px rgba(35, 133, 199, 0.55);
}
button[disabled] {
color: rgb(160, 160, 160);
background: rgb(71, 71, 71);
}
button[disabled]:hover {
cursor: not-allowed;
background: rgb(71, 71, 71);
box-shadow: none;
}
button[type="reset"] {
color: rgb(255, 184, 184);
background: rgb(133, 8, 8);
}
button[type="reset"]:hover {
background: rgb(150, 7, 7);
box-shadow: 0px 0px 10px 5px rgba(150, 7, 7, 0.63);
}