-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmastermind.css
More file actions
114 lines (112 loc) · 1.46 KB
/
mastermind.css
File metadata and controls
114 lines (112 loc) · 1.46 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
{
font-family: 'Press Start 2P', cursive;
background-color: #000000;
color: #ffffff;
}
#help
{
display: none;
position: absolute;
width: 90%;
height: 90%;
top: 10%;
left: 5%;
z-index: 1;
background-color: #000000;
}
.quest
{
-webkit-text-stroke-color: green;
-webkit-text-stroke-width: 2px;
}
.hide
{
color: #000000;
}
#solutions tr td table tr td:not(.basic)
{
padding: 0px;
height: 0px;
width: 0px;
}
.pzth
{
width: 18%;
min-width: 100px;
}
.basic
{
padding: 0px;
}
#solutions tr td table, .resp
{
border-style: solid;
border-width: 1px;
border-color: #000000;
}
table
{
font-size: 2rem;
background-color: #000000;
}
td, th, tr
{
text-align: center;
vertical-align: middle;
color: #ffffff;
}
.c4
{
background-color: #ff0000;
}
.c2
{
background-color: #00ff00;
}
.c1
{
background-color: #0000ff;
}
.c0
{
background-color: #000000;
}
.c7
{
background-color: #ffffff;
}
.c3
{
background-color: #00ffff;
}
.c5
{
background-color: #ff00ff;
}
.c6
{
background-color: #ffff00;
}
a, a:visited, a:active, a:hover
{
color: #00ff00;
text-decoration: none;
}
#nojs
{
position: fixed;
bottom: 0;
left: 0;
height: auto;
width: 100%;
margin: 0;
z-index: 999999999;
padding-top: 1%;
padding-bottom: 1%;
padding-right: 2%;
padding-left: 2%;
border-top: 3px dashed #006600;
color: #e6ffe6;
background-color: #00cc00;
}