-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
159 lines (131 loc) · 2.03 KB
/
main.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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
header,
section h2,
section h3,
form button {
font-family: "Bungee", sans-serif;
}
body,
input,
textarea,
footer {
font-family: "Roboto", sans-serif;;
}
header {
padding: 16px 0;
background-color: darkblue;
color: white;
}
header h1,
section h2,
section h3 {
font-weight: normal;
}
header nav li {
display: inline;
margin-left: 16px;
font-size: 18px;
}
header nav li a {
color: white;
text-decoration: none;
}
.container {
max-width: 1200px;
width: 100%;
margin: 0 auto;
}
header .container,
section .container {
display: flex;
align-items: center;
justify-content: space-between;
font-size: 18px;
}
.brands-list img,
.social-links img {
height: 48px;
}
.brands-list li {
display: inline;
margin-right: 8px;
}
section .container {
align-items: flex-start;
}
section {
padding: 24px 0;
}
section h2 {
margin-bottom: 16px;
color: darkblue;
}
section p {
margin-bottom: 8px;
}
section .store-front {
margin-right: 32px;
}
#contact .container {
display: block;
}
.contact-type {
display: flex;
justify-content: space-between;
}
form input,
form textarea {
display: block;
width: 320px;
margin-bottom: 8px;
padding: 8px;
}
form button {
display: inline;
background-color: darkblue;
color: white;
border: none;
height: 32px;
width: 100px;
}
form button:hover {
background-color: cyan;
color: gray;
cursor: pointer;
}
form textarea {
resize: none;
height: 100px;
}
.social-links,
.brands-list {
display: flex;
justify-content: space-between;
}
.social-links li {
display: inline;
}
.social-links li a {
text-decoration: none;
}
section h3,
.social-links li {
margin-bottom: 16px;
}
form input:focus,
form textarea:focus {
outline-color: blue;
}
footer {
background-color: darkblue;
color: white;
padding: 16px 0;
}
footer p {
display: flex;
justify-content: center;
}