-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
136 lines (108 loc) · 2.02 KB
/
styles.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
body {
background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
font-family: 'Poppins', sans-serif;
}
.container{
display: flex;
justify-content: center;
align-items: center;
}
#form {
width:990px;
margin: 7vh;
padding: 20px;
background-color: rgb(245, 245, 245);
border-radius: 34px;
font-size: 18px;
/* Center vertically and horizontally */
}
label{
font-size: 20px;
}
#form h1 {
color: #0f2027;
text-align: center;
}
#form button {
padding: 10px;
margin-top: 10px;
width: 100%;
color: white;
background-color: rgb(41, 57, 194);
border: none;
border-radius: 4px;
}
#form div input{
font-size: 15px;
}
.input-control {
display: flex;
flex-direction: column;
}
.submit-control{
display: flex;
flex-direction: row;
}
.submit-control button{
margin-left: 20px;
width: max-content;
}
.checkbox{
display: flex;
flex-direction: row;
margin-bottom: 10px;
}
.transaction{
margin-bottom: 10px;
}
input.vehicle1{
width: 20px;
height: 20px;
}
.input-control input {
border: 2px solid #f0f0f0;
border-radius: 4px;
display: block;
font-size: 12px;
padding: 10px;
width: 100%;
}
.input-control input:focus {
outline: 2px solid rgb(35, 85, 165);
}
.input-control.success input {
border-color: #09c372;
}
.input-control.error input {
border-color: #ff3860;
}
.input-control .error {
color: #ff3860;
font-size: 9px;
height: 13px;
}
input[type="text"]::-webkit-input-placeholder {
-webkit-transition: opacity 0.3s linear;
color: gray;
}
input[type="text"]:focus::-webkit-input-placeholder {
opacity: 0;
}
input::placeholder{
opacity: 0.3;
font-size: 13px;
}
#cars{
padding: 5px;
border-radius: 5px;
}
.button{
height: 30px;
}
.inRow{
display: flex;
justify-content: space-between;
}
input{
height: 50px;
}