forked from CodeYourFuture/HTML-CSS-Module-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstore-style.css
More file actions
106 lines (85 loc) · 1.5 KB
/
store-style.css
File metadata and controls
106 lines (85 loc) · 1.5 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
:root {
/* color variable */
--orange: #e0633a;
}
* h1 {
font-size: 40px;
color: var(--orange);
margin: 40px 20px;
}
#form {
display: flex;
flex-direction: row;
}
#form-img {
width: 50%;
}
#names,
form>div:nth-child(3) {
display: flex;
}
/* set the form divs display to flex and direction to column */
#names>div:nth-child(1),
form>div:nth-child(2),
#names>div:nth-child(2),
#address-detail>div:nth-child(2) {
display: flex;
flex-direction: column;
}
/* set postcode div width */
#address-detail>div:nth-child(2) {
width: 30%;
}
/* set style for city drop down list */
#address-detail>div:nth-child(1) {
width: 90%;
display: flex;
flex-direction: column;
}
label,
input[type=checkbox],
input[type=radio] {
margin: 20px;
text-align: justify;
}
#terms-condition {
padding: 0px;
color: var(--orange);
text-decoration: underline;
}
#submit {
margin: 40px 20px;
}
input[type=text],
select {
font-size: 20px;
padding: 5px;
color: var(--orange);
margin: 0 20px;
border: 1.5px solid rgb(156, 155, 155);
border-radius: 4px;
}
/* set the size for checkbox and radio */
input[type=checkbox],
input[type=radio] {
transform: scale(1.5);
}
fieldset {
border: none;
margin: 40px 0;
padding: 0;
}
button:hover {
background-color: rgb(255, 85, 0);
color: white;
}
legend {
margin: 20px;
}
#terms-container {
display: flex;
}
section>div:nth-child(1) {
width: 50%;
padding: 7%;
}