-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
106 lines (91 loc) · 1.69 KB
/
Copy pathstyle.css
File metadata and controls
106 lines (91 loc) · 1.69 KB
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
body {
background-image: url('./bg.jpg');
background-size: contain;
width:100vw;
overflow-x:hidden;
}
.btn {
background: #ffffff;
border-radius: 5px;
padding: 8px 20px;
color: #ff0000;
display: inline-block;
font: normal bold 24px/1 "Calibri", sans-serif;
text-align: center;
text-shadow: 1px 1px #ffffff;
margin-top: 20px;
margin-left: 20px;
}
.tile {
width: 200px;
display: inline-block;
cursor: not-allowed;
text-align: center;
background-color: bisque;
border:black 1px solid;
margin-top: 10px;
}
.tiled {
border: green 5px solid;
width: 200px;
display: inline-block;
cursor: pointer;
text-align: center;
background-color: bisque;
margin-top: 10px;
}
.dices {
margin-top:100px;
}
#boardContainer {
width:100%;
}
#dice1 {
height: 250px;
width: 550px;
}
#test {
height: 150px;
width: 150px;
}
#instructionalLabel {
color: white;
font-size: 35px;
margin-left:20px;
}
#infoicon {
height: 45px;
width: 45px;
margin-left:50px;
margin-top:15px;
cursor: pointer;
}
.dice-container {
height: 100px;
width: 100px;
margin-right: 50px;
}
.dice-1{
background-image: url(./dice-1.png);
background-size: contain;
}
.dice-2{
background-image: url(./dice-2.png);
background-size: contain;
}
.dice-3{
background-image: url(./dice-3.png);
background-size: contain;
}
.dice-4 {
background-image: url(./dice-4.png);
background-size: contain;
}
@media only screen and (max-width: 688px) {
.tile{
margin-left: 20%;
}
.tiled {
margin-left:20%;
}
}