-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
63 lines (53 loc) · 977 Bytes
/
style.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
body, html{
max-width: 100%;
max-height: 100%;
}
body, h1, h2, h3, h4, h5, h6{
font-weight: 700;
font-family: "Lato","Helvetica Neue",Arial, Helvetica, sans-serif;
}
#content{
min-height: 600px;
}
#banner{
background: url(img/bg.jpg) no-repeat center;
background-size: cover;
padding-top: 70px;
padding-bottom: 50px;
text-align: center;
color: #f8f8f8;
}
#banner_content{
padding-bottom: 6%;
padding-top: 6%;
margin-top: 12%;
margin-bottom: 12%;
background-color: rgba(0,0,0,0.7);
max-width: 660px;
}
#item_list{
padding-top: 50px;
}
footer{
text-align: center;
color: blanchedalmond;
background-color: #0f0f0f;
font-weight: normal;
padding: 10px 0;
bottom: 0;
width: 100%;
}
.red{
color: red;
}
@media(max-width:768px) {
#banner_content {
padding-bottom: 15%;
}
footer{
text-align:left;
}
}
.remove-item-link{
color:#0000ff;
}