-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
148 lines (135 loc) · 2.77 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
body {
font-family: "Open Sans", sans-serif;
background-size: 100%;
height: 100%;
background-position: relative;
background-image: url(https://res.cloudinary.com/gregdusek/image/upload/v1605670764/Hopper%20Fly%20Fishing/FlyFishing_wallpaper_dirvd6.png);
}
.stats-container {
color: white;
float: right;
font-size: 18px;
line-height: 25px;
border: 3px solid black;
border-radius: 5px;
box-shadow: 4px 4px 15px 1px #000000;
background-image: url(https://images-na.ssl-images-amazon.com/images/I/71Jky0tmueL._AC_SL1000_.jpg);
height: 240px;
width: 180px;
text-align: center;
padding: 5px;
}
h1 {
color: dimgray;
position: relative;
text-align: center;
padding: 0;
font-family: Copperplate, "Copperplate Gothic Light", fantasy;
font-size: 68px;
-webkit-text-stroke: 2px white;
text-shadow: 2px 2px white;
font-style: bold;
font-variant: bold;
}
h2 {
color: bisque}
.general-container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#modal-game-rules {
background-color: steelblue;
padding: 30px;
width: 50vw;
max-width: 500px;
text-align: center;
font-family: Copperplate, "Copperplate Gothic Light", fantasy;
border-radius: 10px;
position: fixed;
top: 45%;
transform: translateY(-45%);
left:0;
right:0;
margin: auto;
display: none;
}
#modal-game-rules.open {
display: block;
}
.carousel {
background-color: steelblue;
padding: 30px;
width: 50vw;
max-width: 500px;
text-align: center;
font-family: Copperplate, "Copperplate Gothic Light", fantasy;
border-radius: 10px;
position: fixed;
top: 45%;
transform: translateY(-45%);
left:0;
right:0;
margin: auto;
display: none;
}
.carousel.open {
display: block;
}
.carousel img {
max-width: 450px;
max-height: 280px;
}
#modal-play-game {
background-color: steelblue;
padding: 30px;
width: 50vw;
max-width: 500px;
text-align: center;
font-family: Copperplate, "Copperplate Gothic Light", fantasy;
border-radius: 10px;
position: fixed;
top: 45%;
transform: translateY(-45%);
left:0;
right:0;
margin: auto;
display: none;
}
#modal-play-game.open {
display: block;
}
#modal-game-board {
background-color: steelblue;
padding: 30px;
width: 50vw;
max-width: 500px;
text-align: center;
font-family: Copperplate, "Copperplate Gothic Light", fantasy;
border-radius: 10px;
position: fixed;
top: 45%;
transform: translateY(-45%);
left:0;
right:0;
margin: auto;
display: none;
}
#modal-game-board.open {
display: block;
}
/* .bottom-panel {
margin: auto;
display: inline-block;
position: absolute;
bottom: 0px;
left: 0px;
background-color: gray;
width: 100%;
height: 100px;
border: 7px solid black;
border-right: 10px;
border-right-style: solid black;
border-radius: 10px;
} */