-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathshopifield.scss
67 lines (58 loc) · 849 Bytes
/
shopifield.scss
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
html, body {
height: 100%;
margin: 0;
padding: 0;
}
body {
font-family: 'Quando', serif;
color: white;
background: url('blurred-red.jpg') no-repeat;
background-size: cover;
text-align: center;
font-size: 1.1em;
padding: 0 25px;
}
.container {
margin: 130px auto;
max-width: 1200px;
}
p {
margin: 50px 0;
}
img.s2w {
width: 350px;
max-width: 100%;
}
form label {
display: none;
}
button {
padding: 0;
background-color: #bada55;
}
form input, button {
box-sizing: border-box;
height: 45px;
border: none;
padding: 10px;
}
form input {
color: black;
}
@media all and (max-width: 700px) {
form input, button {
display: block;
width: 100%;
}
form input:nth-of-type(1) {
margin-bottom: 10px;
}
form input:nth-of-type(2) {
margin-bottom: 20px;
}
form {
width: 350px;
max-width: 100%;
margin: 0 auto;
}
}