-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path13_styles.css
More file actions
120 lines (97 loc) · 1.37 KB
/
13_styles.css
File metadata and controls
120 lines (97 loc) · 1.37 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
* {
box-sizing: border-box;
}
body {
margin: 0;
min-width: 992px;
font-family: "Helvetica";
}
a{
text-decoration: none;
color: black;
}
/* navbar */
.navbar {
position: fixed;
width: 100%;
height: 60px;
background-color: white;
display: flex;
align-items: center;
}
.navbar #logo{
height: 20px;
padding-left: 30px;
}
.navbar ul {
padding-right: 30px;
padding-left: 0;
margin-left: auto;
}
.navbar .list{
float: left;
list-style: none;
margin-left: 30px;
font-size: 13px;
font-weight: bold;
}
/* hero header */
#banner {
width: 100%;
margin-top: 60px;
}
/* products */
#main h1 {
font-size: 24px;
color: #545454;
font-weight: bold;
margin-top: 60px;
margin-bottom: 60px;
text-align: center;
}
#grid {
width: 735px;
margin-left: auto;
margin-right: auto;
}
#products {
display: inline-block;
}
.item {
background-color: white;
float: left;
margin-left: 10px;
margin-right: 10px;
margin-bottom: 80px;
}
.item .first {
margin-top: 20px;
margin-bottom: 4px;
}
.item p {
font-size: 16px;
text-align: center;
margin: 0;
}
.item img{
width: 225px;
height: 225px;
}
.row {
clear: left;
}
.clearfix {
clear:left;
}
/* footer */
#sns {
margin-top: 40px;
margin-bottom: 80px;
text-align: center;
}
#sns img {
width: 25px;
height: 25px;
margin-left: 10px;
margin-right: 10px;
}