-
-
Notifications
You must be signed in to change notification settings - Fork 363
Expand file tree
/
Copy pathindex.css
More file actions
83 lines (68 loc) · 1.07 KB
/
index.css
File metadata and controls
83 lines (68 loc) · 1.07 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
section {
margin: 20px 0 20px 0;
}
.info-text {
font-size: 1.1em;
}
.full-width {
width: 100%;
}
.card {
margin-bottom: 20px;
}
.multiline-results {
height: 300px;
overflow-x: auto;
border: 1px solid #ced4da;
border-radius: 0.25rem;
padding: 0.375rem 0.75rem;
}
.multiline-results__placeholder {
font-style: italic;
color: gray;
}
/* Logo & Header */
header {
display: flex;
justify-content: center;
align-items: center;
}
#logo-container {
display: inline-flex;
flex-direction: column;
}
#logo-text {
padding-top: 15px;
padding-bottom: 5px;
}
#mm-logo {
width: 100%;
}
/* Encrypt/Decrypt */
#encryptMessageInput {
margin-bottom: 1rem;
}
.error-div {
margin-bottom: 12px;
}
.error-message {
min-height: 32px;
border: 1px solid #e88f97;
color: #24292e;
background: #fcf2f3;
border-radius: 8px;
display: flex;
justify-content: flex-start;
align-items: center;
padding: 8px 10px;
}
.error-message-icon {
margin-right: 8px;
flex: 0 0 auto;
}
.error-message-text {
overflow: auto;
}
.warning-invisible {
display: none;
}