-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
80 lines (64 loc) · 1 KB
/
main.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
@media (prefers-color-scheme: light) {
body {
background-color: #fff;
color: #000;
}
}
@media (prefers-color-scheme: dark) {
body {
background-color: #333;
color: #ddd;
}
}
.container {
display: grid;
grid-template-columns: 26em 1fr;
grid-template-areas: "header outputHeader" "inputContainer result";
}
.container > div {
border: solid;
border-width: thin;
}
.header {
grid-area: header;
}
.outputHeader {
grid-area: outputHeader;
}
.inputContainer {
grid-area: inputContainer;
padding: 0.2em;
}
.result {
grid-area: result;
}
#resultHeader, #hmacKey, #timeTaken {
padding-right: 2em;
}
#header, #resultHeader {
font-size: 1.8em;
font-weight: bold;
}
td {
text-align: center;
}
.inputText {
width: 10em;
}
.positions {
width: 5em;
}
#storedResult {
background-color: lightskyblue;
}
#storedResultMatched {
color: #000;
background-color: lawngreen;
}
#storedResultError {
color: #000;
background-color: red;
}
.shownPassword {
width: 98%;
}