-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
137 lines (123 loc) · 2.02 KB
/
Copy pathmain.css
File metadata and controls
137 lines (123 loc) · 2.02 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
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
* {
box-sizing: border-box;
}
.logo {
display: block;
margin: auto;
max-height: 150px;
}
.hello {
width: 100%;
padding: 30px;
max-width: 800px;
background-color: white;
border-radius: 3px;
margin: auto;
}
body {
padding: 30px;
background-color: #FCF3CF;
font-family: 'Open Sans', sans-serif;
color: #2C3A48;
text-align: center;
font-size: 20px;
}
p {
text-align: left;
margin: 20px auto;
}
@media screen and (max-width: 425px) {
body {
display: block;
height: auto;
text-align: center;
}
.hello, footer {
margin: 15px auto;
}
}
.product-container img {
width: 100%;
}
.upcoming-content {
margin-top: 20px;
}
.product-container.upcoming {
text-align: center;
margin: auto;
position: relative;
}
.product-container.upcoming img {
width: 175px;
display: inline-block;
margin-left: 10px;
margin-right: 10px;
vertical-align: top;
}
.divider {
height: 10px;
width: 100%;
margin: 30px auto;
background-position: 0 100%;
background-size: auto 10px;
background-repeat: repeat-x;
background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/929057/hooray-wave.svg");
}
h2 {
position: relative;
z-index: 1;
display: inline-block;
margin: auto;
margin-bottom: 30px;
font-size: 40px;
}
h2:before {
position: absolute;
content: '';
height: 10px;
width: 100%;
background-color: #EBDEF0;
left: 0;
bottom: 5px;
z-index: -1;
}
a {
text-decoration: none;
}
button {
display: block;
margin: auto;
border: 0;
width: 100%;
max-width: 250px;
background-color: #FDEBD0;
font-weight: bold;
color: #2C3A48;
padding: 20px 30px;
text-transform: uppercase;
cursor: pointer;
font-size: 18px;
}
button:hover {
background-color: #fce1b8;
}
footer {
padding: 10px;
background-color: #e0cce8;
width: 100%;
max-width: 800px;
margin: auto;
}
footer ul {
margin: 0;
padding: 0;
}
footer ul li {
display: inline-block;
margin: 10px;
}
footer ul li a {
text-decoration: none;
color: white;
font-size: 30px;
}