-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
154 lines (129 loc) · 3.51 KB
/
style.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
153
154
body {
background-color: #27313f;
color: #fff;
font-family: Arial, monospace; /* Definindo a fonte Arial */
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
min-height: 100vh; /* Defina a altura mínima como 100% da viewport */
overflow-x: hidden; /* Oculte a rolagem horizontal */}
@media (max-width: 768px) {
.passwords-container {
max-height: 50vh; /* Defina uma altura máxima menor para dispositivos móveis */
}
}
header {
width: 100%;
text-align: center;
padding: 20px 0;
}
.logo-container {
display: inline-block;
}
.logo {
max-width: 200px;
height: auto;
}
.centered-container {
text-align: center;
margin-bottom: 20px;
}
#passwordOptions {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 20px;
}
#passwordOptions label {
margin-bottom: 5px;
}
#passwordOptions input[type="number"] {
width: 50px;
margin-right: 10px;
}
#passwordInput {
width: auto; /* Ajuste para permitir que o campo de entrada redimensione com base no conteúdo */
padding: 8px; /* Adiciona espaço interno ao campo de entrada */
padding-right: 50px; /* Adiciona espaço à esquerda do texto dentro do campo de entrada */
border: 1px solid #ffffff;
border-radius: 5px;
background-image: url('https://img.icons8.com/material/24/FFFFFF/copy--v1.png'); /* Define a imagem de fundo */
background-repeat: no-repeat; /* Evita a repetição da imagem */
background-position: calc(100% - 10px) center; /* Define a posição da imagem no input */
background-size: 20px; /* Define o tamanho da imagem */
background-color: #3e4e64;
color: #fffefe;
margin-bottom: 10px;
text-align: center; /* Centraliza o texto dentro do campo de entrada */
}
input[type="text"] {
font-family: Consolas, monospace; /* Aplicando a fonte Consolas aos inputs */
font-size: large;
}
#generatePasswordButton {
display: block;
margin: 0 auto;
padding: 8px 16px;
background-color: #323e50;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
margin-bottom: 10px;
}
#generatePasswordButton:hover {
background-color: #f3cd00;
color: #020202;
}
#copyPasswordLink {
color: #007bff;
text-decoration: none;
}
#copyPasswordLink:hover {
text-decoration: underline;
}
#lengthOption {
width: 100%;
margin-bottom: 10px;
}
#lengthDisplay {
display: inline-block;
margin-left: 10px;
}
.content-container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: rgba(14, 14, 14, 0.8); /* Opacidade */
padding: 20px;
border-radius: 20px; /* Borda arredondada */
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); /* Sombra */
max-width: 80%; /* Defina a largura máxima para evitar que o conteúdo se estenda demais em telas grandes */
}
.footer {
align-items: center;
text-align: center;
}
.logo-shine {
animation: shine 1s forwards;
}
@keyframes shine {
0% {
filter: brightness(0.8); /* Início mais suave */
}
50% {
filter: brightness(1.5); /* Pico do brilho */
}
100% {
filter: brightness(1); /* Final mais suave */
}
}
.passwords-container {
max-height: 80vh;
overflow-y: auto;
}