forked from supakarn-t/YAHTZEE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
131 lines (107 loc) · 2.37 KB
/
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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
body {
background-color: rgb(42, 42, 42);
font-family: Arial;
}
h1 {
color: rgb(228, 228, 228);
z-index: 999;
background-color: rgb(211, 109, 0);
text-align: center;
font-size: 50px;
padding: 15px 25px;
margin: 10px;
border-radius: 35px;
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.7);
/* overflow: hidden; */
display: block;
position: relative;
}
/*---------------------------------------- Score sheet ----------------------------------------*/
#score-sheet {
/* display: inline; */
/* border: 1px solid black; */
border-radius: 30px;
box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.7);
background-color: rgb(22, 21, 21);
/* float: left; */
padding: 20px;
/* margin: 30px; */
margin: -20px 30px 0px 10px;
}
#score-sheet .th1 {
font-size: 30px;
color: rgb(255, 141, 20);
padding-top: 10px;
padding-bottom: 20px;
}
#score-sheet .th2 {
border: 1px solid black;
width: 200px;
background-color: rgb(255, 141, 20);
font-size: 19px;
padding: 15px;
}
#score-sheet td {
border: 1px solid black;
padding: -20px;
}
button {
cursor: pointer;
}
.score {
width: 50px;
height: 50px;
background-color: black;
color: #e1ae07;
cursor: pointer;
/* font-family: Arial, Helvetica, sans-serif; */
font-size: 16px;
}
.score:disabled {
background-color: rgb(27, 27, 27);
color: #7b703e;
cursor: unset;
}
/*---------------------------------------- Area dice ----------------------------------------*/
#countRound {
display: inline;
color: goldenrod;
font-size: 18px;
/* float: left; */
margin-top: 30px;
margin-left: 30px;
}
#area-dice {
display: flex;
flex-direction: row;
max-width: 600px;
background-color: rgb(59, 25, 0);
border: 1px dashed cornsilk;
border-radius: 5px;
/* float: left; */
margin-top: 15px;
margin-left: 10px;
margin-bottom: 30px;
padding: 10px;
}
#area-dice td {
padding: 25px 15px;
}
.button-dice {
max-width: 80px;
max-height: 80px;
border-radius: 5px;
margin: -10px;
cursor: pointer;
}
.button {
background-color: rgb(255, 214, 138);
width: 150px;
height: 50px;
border-radius: 5px;
font-size: 18px;
}
/*---------------------------------------- Scrollbar ----------------------------------------*/
::-webkit-scrollbar {
width: 0px;
}