-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
95 lines (79 loc) · 2.03 KB
/
Copy pathmain.css
File metadata and controls
95 lines (79 loc) · 2.03 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
html, body {
margin: 0px;
padding: 0px;
background: #333;
color: #eee;
}
#wrapper {
width: 760px;
margin: 10px auto;
}
input[type=text], textarea {
width: 100%;
border: none;
border-radius: 5px;
background: #555;
border: 1px solid #555;
margin-bottom: 5px;
margin-top: 3px;
color: #eee;
}
input[type=text]:focus, textarea:focus {
border: 1px solid rgba(255, 255, 255, 0.5);
box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.3);
outline: medium none;
}
textarea {
height: 100px;
}
button {
padding: 5px;
margin-top: -4px;
border: none;
border-radius: 5px;
background: #555;
color: #eee;
}
button:hover {
background: #777;
cursor: pointer;
}
#key_input {
width: 80%;
float: left;
}
#crack_button {
}
#sample_button {
float: right;
}
#list_title {
float: left;
margin-top: 5px;
}
.clearfix {
clear: both;
}
#crack_list {
width: 100%;
padding: 0px;
}
#crack_header {
margin-top: 15px;
}
#list_title {
display: none;
}
#crack_list>li {
border-top: solid 1px #555;
margin: 10px 0;
list-style: none;
word-wrap: break-word;
}
#output {word-wrap:break-word;white-space: normal;border: none; border-radius: 5px; background: #555;color: #eee; padding: 3px; margin: inherit; border: 1px solid black; width: 500px; height: 200px; overflow: inherit}
#plaintext {width: 496px; height: 119px}
#crack_text {height: 100px}
#frequency {position: relative; float: right; top: -48px; width: 80px; height: 390px; border: 1px solid black; font-size: 12px; text-align: center}
#frequency p {display: inline-block; width: 35px; margin: 0px 5px 0 5px; line-height: 100%; height: 15px; float: left; clear: left; padding: 0; text-align: right}
#frequency div {display: inline-block; height: 15px; width: 28px; margin: 0px; padding: 0; text-align: left}
#frequency select {display: inline-block; height: 16px; width: 32px; font-size: 11px; margin: -5px 0 -5px 0; padding: 0; position: relative}