-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
executable file
·93 lines (79 loc) · 1.59 KB
/
Copy pathstyles.css
File metadata and controls
executable file
·93 lines (79 loc) · 1.59 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
.ico_inputField {
background-color: transparent;
color: #909090;
font-size: clamp(16px, 5vw, 24px);
border: none;
outline: none;
padding-left: 1rem;
}
.ico_inputContainer {
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
margin: 10px 0 2px 0;
}
.ico_wrongAlert {
color: rgb(255, 15, 15);
font-size: 14px;
font-weight: 500;
height: 1rem;
minWidth: 20rem;
width: fit-content;
text-align: left;
}
.ico_input {
border: 1px solid #909090;
border-radius: 5px;
padding: 1rem;
minWidth: 20rem;
display: flex;
align-items: center;
}
.icon {
scale: 1.8;
color: #808080;
cursor: pointer;
transition-duration: 0.3s;
}
.icon:hover {
scale: 2.1;
}
input[type=number] {
-moz-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* .ico_inputAlert {
color: red;
font-size: 16px;
height: 2rem;
} */
.ico_button {
padding: 10px 0;
background: linear-gradient(#62cff4, #2c67f2);
width: 7rem;
border: none;
border-radius: 5px;
font-weight: bold;
color: #252525;
font-size: 16px;
box-shadow: 0px 10px 20px 1px rgb(0, 0, 0, 0.5);
transition-duration: 0.2s;
cursor: pointer;
}
.ico_button:hover {
box-shadow: 0 0 0 0px black;
}
.formControl_btn {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
margin-top: 1rem;
width: 23rem;
min-width: 20rem;
}