forked from COLTEC-DAW/TP-RESTFul-App
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
122 lines (106 loc) · 2.47 KB
/
style.css
File metadata and controls
122 lines (106 loc) · 2.47 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
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
body{
background-color: lightgray;
}
main{
border: 2px solid #3498db;
padding: 20px;
border-radius: 10px;
text-align: center;
width: 300px;
min-height: 500px;
margin: 0 auto;
}
/* Reset de estilos para o input */
input {
box-sizing: border-box;
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
}
/* Estilo do input text */
input[type="text"] {
width: 100%;
padding: 10px;
border: 1px solid #363636;
border-radius: 5px;
margin-bottom: 10px;
transition: border-color 0.3s ease-in-out;
}
/* Efeito de foco no input text */
input[type="text"]:focus {
border-color: #3498db;
box-shadow: 0 0 5px rgba(52, 152, 219, 0.7);
}
/* Estilo para placeholder do input text */
input[type="text"]::placeholder {
color: black;
}
/* Estilo para texto digitado no input text */
input[type="text"]:-ms-input-placeholder,
input[type="text"]::-ms-input-placeholder,
input[type="text"]:-moz-placeholder,
input[type="text"]::-moz-placeholder,
input[type="text"]::placeholder {
color: black;
}
/* Estilo para ícone dentro do input (opcional) */
.input-icon {
position: relative;
}
.input-icon i {
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
color: #777;
}
/* Estilo do botão */
button {
display: inline-block;
padding: 10px 20px;
font-size: 16px;
text-align: center;
text-decoration: none;
cursor: pointer;
border: none;
border-radius: 5px;
color: #fff;
background-color: #3498db;
transition: background-color 0.3s ease-in-out;
}
/* Efeito de hover no botão */
button:hover:not(.butRes) {
background-color: #2980b9;
}
/* Efeito de foco no botão */
button:focus {
outline: none;
box-shadow: 0 0 5px rgba(52, 152, 219, 0.7);
}
/* Estilo para botão desabilitado */
button:disabled {
background-color: #95a5a6;
cursor: not-allowed;
}
/* Estilo para ícone dentro do botão (opcional) */
.button-icon {
margin-right: 5px;
}
.butRes{
background: none;
border: none;
color: #3498db; /* Cor do link */
text-decoration: underline;
cursor: pointer;
padding: 0;
font-size: inherit;
}
/* Efeito de hover no botão (opcional) */
.butRes:hover {
text-decoration: none;
color: #2980b9; /* Cor do link ao passar o mouse */
}