-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
152 lines (125 loc) · 3.36 KB
/
styles.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/*
Copyright 2024 Carlos Henrique <ch.carlosh.enr.ique2.112@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Additional Rules:
1. You must retain the original copyright notice and license information when distributing the software or any modifications created from it.
2. This software is provided "as is," without any warranties or conditions of any kind, either express or implied, including but not limited to the implied warranties or conditions of merchantability, fitness for a particular purpose, or non-infringement.
3. In no event shall the authors or copyright holders be held liable for any claims, damages, or other liabilities arising out of the use or inability to use the software.
4. You are not allowed to use the name of the copyright holder for any endorsement or promotional purposes without prior written permission.
5. Contributions to the software are welcome, but by submitting a contribution, you agree to license the contribution under the same license terms as the original software.
Please refer to the full Apache License, Version 2.0 for the complete set of terms and conditions.
*/
/* Visual idea by recoil999 */
body {
background-color: #222;
font-family: Arial, Helvetica, sans-serif;
color: white;
display: flex;
}
.container {
flex-grow: 1;
display: flex;
justify-content: space-between;
}
.sidebar {
width: 200px;
background-color: #101010;
padding: 20px;
border-radius: 15px;
}
.main {
flex-grow: 1;
padding: 15px;
background-color: #101010;
border-radius: 15px;
margin-left: 10px;
}
.popup-container {
position: fixed;
top: 0;
right: 0;
bottom: 0;
width: 300px;
background-color: #101010;
padding: 20px;
display: flex;
flex-direction: column;
justify-content: center;
}
.popup {
display: none;
margin-bottom: 20px;
padding: 20px;
background-color: #101010;
border-radius: 5px;
}
.generate-popup {
display: block !important;
}
.encrypt-popup {
display: block !important;
}
.decrypt-popup {
display: block !important;
}
.verify-popup {
display: block !important;
}
button {
background-color: #333;
color: white;
border: none;
border-radius: 10px;
padding: 15px;
margin: 5px;
transition: background-color 200ms ease-in-out;
width: 100%;
cursor: pointer;
}
button:hover {
background-color: #444;
}
form {
margin-bottom: 20px;
}
textarea,
input {
color: white;
resize: none;
background-color: #444;
border: none;
border-radius: 5px;
margin-top: 15px;
margin-bottom: 15px;
width: 100%;
}
input {
padding-top: 15px;
padding-bottom: 15px;
}
.h2 {
text-align: center;
margin-bottom: 10px;
}
#output {
margin-top: 20px;
}
.divider {
width: 1px;
background-color: white;
margin: 20px 0;
}
.center {
text-align: center;
}
p {
color: #666;
}