-
Notifications
You must be signed in to change notification settings - Fork 359
/
style.css
88 lines (73 loc) · 1.36 KB
/
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
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
body {
width: -webkit-fill-available;
height: 100%;
display: flex;
flex-direction: column;
-webkit-flex-direction: column;
-moz-flex-direction: column;
-o-flex-direction: column;
}
header {
text-align: center;
flex-grow: 0;
}
#head {
background-image: linear-gradient(to top, #537895 0%, #09203f 100%);
}
#nav .item {
display: inline-block;
width: -webkit-fill-available;
}
h1 {
display: inline-block;
}
#title {
padding: 5rem 0;
}
#menubtn {
margin-top: 3rem;
}
main {
flex-basis: auto;
flex-grow: 1;
padding: 2rem 0;
background-image: radial-gradient(73% 147%, #EADFDF 59%, #ECE2DF 100%), radial-gradient(91% 146%, rgba(255,255,255,0.50) 47%, rgba(0,0,0,0.50) 100%);
background-blend-mode: screen;
}
main .container{
height: 100%;
display: flex !important;
flex-direction: column;
-webkit-flex-direction: column;
-moz-flex-direction: column;
-o-flex-direction: column;
}
main .segment {
flex-grow: 1;
margin: 0 !important;
}
.segment h4{
padding-bottom: .5rem !important;
}
footer {
flex-grow: 0
}
.footer {
padding: 1rem 0;
text-align: center;
background-color: #ddd;
}
.card {
padding: .5rem;
}
#seller .list {
padding: 0 5rem;
}
@media screen and (max-width: 479px) {
p {
width: -webkit-fill-available;
text-align: center;
line-height: 1.5rem;
word-wrap: break-word;
}
}