-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
86 lines (73 loc) · 1.47 KB
/
style.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
* {
margin: 0;
padding: 0;
}
.right-side-pic {
display: flex;
height: 100vh;
width:30vw;
background-image: url(https://cdn.statically.io/gh/TheOdinProject/curriculum/5f37d43908ef92499e95a9b90fc3cc291a95014c/html_css/project-sign-up-form/odin-lined.png);
float: left;
}
.about-text {
font-weight: 600;
display: flex;
flex-direction: column;
gap: 20px;
padding:80px 20px 40px 20px;
}
.customer-form {
background-color: #f6f7f8;
border: 1px solid #d6d9dc;
border-radius: 3px;
font-size: x-small;
font-weight: bolder;
width: 50%;
height: 250px;
padding:20px;
margin-left: 400px;
display: flex;
flex-wrap: wrap; /* Allow wrapping */
gap: 14px;
}
.form-row {
display: flex;
justify-content: center;
flex-direction: column;
flex-wrap: wrap;
gap: 14px;
margin-bottom: 0px;
}
.form-row input {
background-color: #FFFFFF;
border: 1px solid #E5E7EB;
border-radius: 3px;
width: 70%;
padding: 2px;
font-size: 14px;
display: flex;
justify-content: center;
margin-right: 100px;
}
.form-row label {
margin:0;
}
input:invalid {
border: 1px solid red;
}
input:valid {
border: 1px solid green;
}
.btn {
background-color: #596D48;
color: white;
padding: 10px;
border: 2px solid #5D6063;
border-radius: 6px;
width: 200px;
margin: 5px 0px 5px 15px;
}
.footer {
display: flex;
margin: 5px 0px 5px 400px;
}