-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss__forms.css
More file actions
98 lines (86 loc) · 1.8 KB
/
css__forms.css
File metadata and controls
98 lines (86 loc) · 1.8 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
input[type="text"],
input[type="number"],
.box select {
background: #71a154;
color: #050d01;
border: none;
padding: 5px 5px;
font-size: 13px;
letter-spacing: 2px;
border: none;
border-radius: 10px;
outline: none;
}
input[type="text"] {
width: 200px;
}
input[type="number"] {
width: 100px;
}
.box {
position: absolute;
top: 130px;
left: 200px;
transform: translate(-50%, -50%);
}
.box select {
width: 150px;
box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
-webkit-appearance: button;
appearance: button;
}
.box::before {
position: absolute;
top: 0;
right: 0;
width: 20%;
height: 100%;
text-align: center;
line-height: 45px;
color: #ffffff80;
background-color: #ffffff1a;
pointer-events: none;
}
.box:hover::before {
color: #ffffff99;
background-color: #ffffff33;
}
.box select option {
padding: 3px;
}
.vboton {
position: absolute;
top: 250px;
left: 170px;
border-color: #405b2f;
color: #fff;
background: #71a154;
height: 30px;
font-size: 12px;
border-radius: 5px;
width: 160px;
background-image: -webkit-linear-gradient(45deg, #07850d 50%, transparent 50%);
background-image: linear-gradient(45deg, #083c0f 50%, transparent 50%);
background-position: 100%;
background-size: 400%;
-webkit-transition: background 300ms ease-in-out;
transition: background 300ms ease-in-out;
letter-spacing: 1px;
}
.vboton:hover {
background-position: 0;
}
.botonesDown {
position: relative;
left: 20px;
top: 25px;
width: 100%;
}
.ErrorMenor0 {
color: var(--color-rojo);
width: 300px;
}
.BtndownCompra,
.BtndownVenta {
width: 170px;
}