-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenigma.css
132 lines (99 loc) · 1.75 KB
/
enigma.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
#settings {
width: 800px;
margin: 0 auto;
}
#reflector-box {
background-color: rgb(240,240,240);
border: solid 1px black;
height: 100px;
width: 100px;
float: left;
margin: 0 30px 0 30px;
border-radius: 5%;
text-align: center;
}
.rotor-box {
float: left;
width:100px;
margin: 0 30px 0 30px;
text-align: center;
}
.rotor-radio-box {
background-color: rgb(240,240,240);
border: solid 1px black;
height: 100px;
width: 100px;
margin: 0 0 6px 0;
border-radius: 5%;
text-align: center;
}
#rotor3-box {
float: left;
}
#input {
background-color: rgb(200,240,200);
}
#output {
background-color: rgb(200,200,240);
}
#boxes {
width: 800px;
margin: 0 auto;
}
#input-box {
width: 260px;
height: 2em;
}
#text-input {
width: 220px;
height: 60px;
}
#output-box {
width: 240px;
height: 2em;
}
#keys {
width: 900px;
margin: 0 auto;
}
#preamble {
text-align: center;
}
.boxy {
float: left;
height: 140px;
width: 250px;
border-radius: 5%;
margin: 20px 30px 30px 30px;
padding: 10px 10px 30px 10px;
font-size: 1.2em;
border: solid 1px grey;
}
.clear-float {
clear: both;
}
.key {
height: 20px;
width: 20px;
background-color: rgb(230,240,240);
border-radius: 50%;
float: left;
margin: 4px;
padding: 16px;
border: solid 2px black;
text-align: center;
/* https://css-tricks.com/almanac/properties/u/user-select/ */
-webkit-user-select: none; /* Chrome all / Safari all */
-moz-user-select: none; /* Firefox all */
-ms-user-select: none; /* IE 10+ */
user-select: none; /* Likely future */
}
#q {
margin-left: 50px;
}
#a {
margin-left: 70px;
}
#z {
margin-left: 108px;
}