-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathstep-3.css
More file actions
executable file
·134 lines (93 loc) · 1.62 KB
/
step-3.css
File metadata and controls
executable file
·134 lines (93 loc) · 1.62 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
.main-top-section {
width: 100%;
height: 530px;
position: relative;
background: url("../img/Background.png") no-repeat;
background-size: cover;
}
.top-header {
width: 100%;
padding-top: 10px;
height: 70px;
text-align: center;
}
.menu {
width: 100px;
height: 40px;
display: inline-block;
position: absolute;
left: 10px;
top: 20px;
}
.menu-icon {
width: 60%;
}
.logo {
width: 300px;
height: 40px;
display: inline-block;
margin-top: 10px;
}
.logo-icon {
width: 75%;
}
.sign-in {
width: 100px;
height: 40px;
display: inline-block;
position: absolute;
right: 10px;
top: 30px;
}
.sign-in-icon {
width: 60%;
}
.bottom-container {
width: 100%;
height: 60px;
position: absolute;
text-align: center;
bottom: -30px;
}
.shop-icon {
width: 350px;
}
.main-bottom-section {
margin-top: 65px;
text-align: center;
}
.item {
display: inline-block;
width: 40%;
background: #D6CFC9;
margin-bottom: 20px;
padding-top: 20px;
cursor: pointer;
}
.item-image {
width: 100%;
display: block;
}
.full-width-item {
width: 80%;
margin:0 auto 20px;
cursor: pointer;
}
.large-item {
width: 80%;
margin:0 auto 20px;
cursor: pointer;
}
/* Set a min-width of 900px inside this media query */
@media(/* ADD SOME CODE HERE*/) {
/* add a different width to these classes to make them look better on larger screens */
.item {
/*Add width*/
}
.full-width-item {
/*Add width*/
}
.large-item {
/*Add width*/
}
}