-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
78 lines (64 loc) · 957 Bytes
/
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
* {
box-sizing: border-box;
}
body {
margin: 0;
position: relative;
}
/* Layout*/
#game-div, #game-div-overlay, #button, #info {
position: absolute;
left: 50%;
top: 50%;
}
#game-div, #game-div-overlay {
height: 480px;
width: 640px;
margin: -240px 0 0 -320px;
}
#button {
height: 50px;
width: 200px;
margin: -300px 0 0 -100px;
}
#info {
height: 50px;
width: 640px;
margin: 250px 0 0 -320px;
}
#game-div {
z-index: 1;
}
#game-div-overlay {
z-index: 2;
display: flex;
justify-content: center;
align-items: center;
}
/* Styling */
#info {
text-align: center;
}
#game-div {
background-image: url("/images/bk..gif");
}
#game-div-overlay {
color: white;
background-color: rgba(0,0,0,0.8);
}
.hidden {
display: none;
}
#clipboard {
line-height: 20px;
}
#clipboard input {
padding: 7px 8px;
height: 34px;
width: 350px;
}
#clipboard button {
height: 34px;
width: 34px;
padding: 7px 8px;
}