-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcodeStyle.css
More file actions
114 lines (114 loc) · 2.06 KB
/
codeStyle.css
File metadata and controls
114 lines (114 loc) · 2.06 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
107
108
109
110
111
112
113
114
body {
margin: 0;
font-family: Helvetica Neue, Helvetica, Arial;
background-color: #eeeeee;
font-size: 1.1em;
}
#btn {
font-family: Helvetica;
font-size: 150%;
background-color: grey;
color: white;
border: 2px solid white;
border-radius: 5px;
padding: 3px;
margin: 3px;
}
#btn:hover {
background-color: white;
color: grey;
border: 2px solid grey;
border-radius: 5px;
cursor: pointer;
}
.symbols {
width: 15%;
font-size: 1px;
padding-top: 15%;
border-radius: 100%;
background-color: #67E06F;
margin: 3px;
display: inline-block;
color: #67E06F;
}
.clue {
width: 7%;
padding-top: 7%;
display: inline-block;
border: thin solid grey;
border-radius: 100%;
margin: 0px;
}
.gameSpace {
max-width: 100%;
width: 600px;
max-width: 95%;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.blocker {
width: 100%;
height: 300%;
z-index: 1;
position: absolute;
top: -100px;
background-color: rgba(0, 0, 0, 0.2);
}
.modal {
display: none;
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0, 0, 0);
background-color: rgba(0, 0, 0, 0.4);
}
.modal-content {
background-color: #fefefe;
margin: 15% auto;
padding: 20px;
border: 1px solid #888;
width: 600px;
max-width: 85%;
}
#restartBtn {
font-family: Helvetica;
font-size: 150%;
background-color: green;
color: white;
border: 2px solid white;
border-radius: 5px;
padding: 3px;
margin: 3px;
}
#restartBtn:hover {
background-color: white;
color: green;
border: 2px solid green;
border-radius: 5px;
cursor: pointer;
}
#codeBtn {
font-family: Helvetica;
font-size: 150%;
background-color: red;
color: white;
border: 2px solid white;
border-radius: 5px;
padding: 3px;
margin: 3px;
}
#codeBtn:hover {
background-color: white;
color: red;
border: 2px solid red;
border-radius: 5px;
cursor: pointer;
}