-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstyles.css
88 lines (85 loc) · 1.72 KB
/
styles.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
.main-body{
background-color: #fafafa;
display: flex;
align-items: center;
justify-content: center;
}
.container{
text-align: center;
font-size: 1.5em;
font-family: sans-serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 50px;
border-radius: 10px;
box-shadow: 0 15px 35px rgba(50,50,93,.1), 0 5px 15px rgba(0,0,0,.07);
}
.container > * {
margin: 10px;
}
.main-body{
background-color: #fafafa;
}
.p-container{
height: 100%;
width: 100%;
text-align: center;
font-size: 1.5em;
font-family: sans-serif;
display: flex;
flex-direction: column;
/* display: flex;
flex-direction: column;
justify-content: center; */
/* align-items: center; */
box-shadow: 0 15px 35px rgba(50,50,93,.1), 0 5px 15px rgba(0,0,0,.07);
}
.product-container{
display: flex;
}
.product-item{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 50px;
margin: 5px;
height: auto;
border-radius: 10px;
box-shadow: 0 15px 35px rgba(50,50,93,.1), 0 5px 15px rgba(0,0,0,.07);
}
.product-item .description{
font-size: 0.8em;
}
.p-container > * {
margin: 10px;
width: 100%;
}
.top-part{
height: 30%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.bottom-part{
min-height: 50%;
display: flex;
justify-content: center;
}
.logo{
height: 200px;
width: 200px;
border-radius: 50%;
background-color: #2a2a2a;
}
.link{
color: #fafafa;
background-color: #2a2a2a;
text-decoration: none;
padding: 5px;
border-radius: 10px;
margin-top: 5px;
}