-
Notifications
You must be signed in to change notification settings - Fork 3
/
common.css
104 lines (98 loc) · 1.59 KB
/
common.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
*{
font-family: sans-serif;
}
#container{
display:grid;
grid-template-columns: 20% 79%;
grid-template-rows: auto;
}
#sidebar{
height:500px;
padding:30px;
line-height: 25px;
}
#sidebar a {
text-decoration: none;
color: gray;
font-size: 15px;
}
#sidebar a:hover {
color: rgb(39, 39, 44);
}
/* #container>div:nth-of-type(2) {
flex-grow: 3;
} */
#contents>div {
width: 100%;
height: 360px;
padding-top:30px;
}
#shop_category {
display: grid;
grid-template-columns: repeat(4,1fr);
grid-template-rows: repeat(1,1fr);
gap:30px;
margin: auto;
}
#shop_category>div {
height: auto;
}
#shop_category>div>img{
width:100%;
}
#shop_category button {
border: 3px solid #333333;
background-color: white;
color: #333333;
margin-left: 60px;
height: 40px;
width: 160px;
padding:10px 10px 10px 10px;
font-family: "Trade Gothic W01 Bold_2",Arial,sans-serif;
font-size: 12px;
font-size: 0.75rem;
}
#shop_category button:hover{
color:white;
background-color: #333333;
cursor: pointer;
}
#image_2{
height:200px;
width:100%;
}
#title {
font-size: 25px;
color: gray;
}
P span {
background: #fff;
padding: 0 10px;
}
#p {
width: 100%;
text-align: center;
border-bottom: 1px solid #000;
line-height: 0.1em;
margin: 10px 0 20px;
}
#text_container{
height:40%;
margin-bottom: 600px;
}
#text_container>h2{
font-family: Trade Gothic W01 Light,Arial,sans-serif;
color: #333;
font-weight: 400;
width: 80%;
margin: 5%;
line-height: 25px;
}
#text_container>p{
width: 80%;
margin: 5%;
color: #666;
font-family: Trade Gothic W01 Light,Arial,sans-serif;
font-weight: 400;
line-height: 25px;
}