-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
77 lines (74 loc) · 1.82 KB
/
styles.css
File metadata and controls
77 lines (74 loc) · 1.82 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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #343a40; /* Dark background color */
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
}
#logo {
width: 150px; /* Ajusta o tamanho da imagem conforme necessário */
height: auto; /* Mantém a proporção */
margin-bottom: 20px; /* Espaço abaixo da imagem */
}
#file-input {
padding: 15px 30px;
font-size: 18px;
border: none;
background-color: #6c757d; /* Medium dark gray */
color: #ffffff; /* White */
cursor: pointer;
outline: none;
transition: background-color 0.3s ease;
text-align: center;
margin-bottom: 20px; /* Espaço abaixo do input */
}
#file-input:hover {
background-color: #495057; /* Darker gray on hover */
}
#file-input:active {
background-color: #343a40; /* Background color on click */
}
h1 {
margin: 0;
color: #ffffff; /* Header text color */
text-align: center;
margin-bottom: 20px; /* Espaço abaixo do título */
}
.sql-link {
display: block;
margin-top: 20px;
text-decoration: none;
color: #ffffff; /* Link text color */
font-weight: bold;
}
.sql-link:hover {
color: #ced4da; /* Lighter text color on hover */
}
#clear-button {
margin-top: 20px;
padding: 10px 20px;
background-color: #dc3545; /* Red */
border: none;
color: #ffffff; /* White */
cursor: pointer;
outline: none;
border-radius: 5px;
}
#clear-button:hover {
background-color: #c82333; /* Darker red on hover */
}
.processing {
animation: pulse 1s infinite alternate;
}
@keyframes pulse {
0% { opacity: 1; }
100% { opacity: 0.5; }
}
.error {
color: red;
font-weight: bold;
}